avaframe/AvaFrame

View on GitHub
avaframe/out3Plot/outAB.py

Summary

Maintainability
B
5 hrs
Test Coverage
F
34%

Function plotProfile has 37 lines of code (exceeds 30 allowed). Consider refactoring.
Open

def plotProfile(avaProfile, eqParams, saveOutPath):
    """ Plot and or save profile results depending on plotting options"""
    s = avaProfile['s']
    z = avaProfile['z']
    indBetaPoint = avaProfile['indBetaPoint']
Severity: Minor
Found in avaframe/out3Plot/outAB.py - About 1 hr to fix

    Function writeABtoSHP has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Wontfix

    def writeABtoSHP(pathDict, resAB):
        """ Write com2AB results to shapefile
    
        Parameters
        ----------
    Severity: Minor
    Found in avaframe/out3Plot/outAB.py - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function addLine2Report has 8 arguments (exceeds 6 allowed). Consider refactoring.
    Open

    def addLine2Report(ind, reportAB, x, y, z, s, label, angle):
    Severity: Major
    Found in avaframe/out3Plot/outAB.py - About 45 mins to fix

      Function writeABpostOut has 7 arguments (exceeds 6 allowed). Consider refactoring.
      Open

      def writeABpostOut(pathDict, dem, splitPoint, eqParams, resAB, cfgMain, reportDictList):
      Severity: Major
      Found in avaframe/out3Plot/outAB.py - About 35 mins to fix

        Function writeLine has 7 arguments (exceeds 6 allowed). Consider refactoring.
        Open

        def writeLine(ind, outfile, x, y, z, s, angle):
        Severity: Major
        Found in avaframe/out3Plot/outAB.py - About 35 mins to fix

          Similar blocks of code found in 3 locations. Consider refactoring.
          Invalid

                  if cuProf['indAlphaM2SD'] is not None:
                      pointName = profileName + '_AlphaMinus2SD'
                      w.point(cuProf['x'][cuProf['indAlphaM2SD']], cuProf['y'][cuProf['indAlphaM2SD']])
                      w.record(i, pointName, cuProf['alphaSD'][2])
          Severity: Major
          Found in avaframe/out3Plot/outAB.py and 2 other locations - About 5 hrs to fix
          avaframe/out3Plot/outAB.py on lines 67..70
          avaframe/out3Plot/outAB.py on lines 72..75

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 96.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 3 locations. Consider refactoring.
          Invalid

                  if cuProf['indAlphaM1SD'] is not None:
                      pointName = profileName + '_AlphaMinus1SD'
                      w.point(cuProf['x'][cuProf['indAlphaM1SD']], cuProf['y'][cuProf['indAlphaM1SD']])
                      w.record(i, pointName, cuProf['alphaSD'][1])
          Severity: Major
          Found in avaframe/out3Plot/outAB.py and 2 other locations - About 5 hrs to fix
          avaframe/out3Plot/outAB.py on lines 67..70
          avaframe/out3Plot/outAB.py on lines 77..80

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 96.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 3 locations. Consider refactoring.
          Invalid

                  if cuProf['indAlphaP1SD'] is not None:
                      pointName = profileName + '_AlphaPlus1SD'
                      w.point(cuProf['x'][cuProf['indAlphaP1SD']], cuProf['y'][cuProf['indAlphaP1SD']])
                      w.record(i, pointName, cuProf['alphaSD'][0])
          Severity: Major
          Found in avaframe/out3Plot/outAB.py and 2 other locations - About 5 hrs to fix
          avaframe/out3Plot/outAB.py on lines 72..75
          avaframe/out3Plot/outAB.py on lines 77..80

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 96.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

              if indAlphaM2SD:
                  plt.plot(s[indAlphaM2SD], z[indAlphaM2SD], 'x', markersize=8,
          Severity: Major
          Found in avaframe/out3Plot/outAB.py and 2 other locations - About 40 mins to fix
          avaframe/out3Plot/outAB.py on lines 190..191
          avaframe/out3Plot/outAB.py on lines 196..197

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 34.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

              if indAlphaP1SD:
                  plt.plot(s[indAlphaP1SD], z[indAlphaP1SD], 'x', markersize=8,
          Severity: Major
          Found in avaframe/out3Plot/outAB.py and 2 other locations - About 40 mins to fix
          avaframe/out3Plot/outAB.py on lines 190..191
          avaframe/out3Plot/outAB.py on lines 193..194

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 34.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

              if indAlphaM1SD:
                  plt.plot(s[indAlphaM1SD], z[indAlphaM1SD], 'x', markersize=8,
          Severity: Major
          Found in avaframe/out3Plot/outAB.py and 2 other locations - About 40 mins to fix
          avaframe/out3Plot/outAB.py on lines 193..194
          avaframe/out3Plot/outAB.py on lines 196..197

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 34.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 4 locations. Consider refactoring.
          Open

              fig = plt.figure(figsize=(1.5*pU.figW, 1*pU.figH))
          Severity: Major
          Found in avaframe/out3Plot/outAB.py and 3 other locations - About 30 mins to fix
          avaframe/out3Plot/outAna1Plots.py on lines 66..66
          avaframe/out3Plot/outCom3Plots.py on lines 18..18
          avaframe/out3Plot/outCom3Plots.py on lines 57..57

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 32.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          There are no issues that match your filters.

          Category
          Status