PowerPan/leaflet-ais-tracksymbol

View on GitHub
src/aisTrackSymbolMarker.js

Summary

Maintainability
F
3 wks
Test Coverage

AISTrackSymbolMarker has 102 functions (exceeds 20 allowed). Consider refactoring.
Open

L.AISTrackSymbolMarker = L.Marker.extend({

    /**
     *
     * @param options
Severity: Major
Found in src/aisTrackSymbolMarker.js - About 1 day to fix

    File aisTrackSymbolMarker.js has 702 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /**
     * Created by Johannes Rudolph <johannes.rudolph@gmx.de> on 14.11.2017.
     */
    
    /**
    Severity: Major
    Found in src/aisTrackSymbolMarker.js - About 1 day to fix

      Function addData has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
      Open

          addData: function(aisData){
              this.setMmsi(aisData.mmsi);
              this.setMsgId(aisData.aisMsgId);
              if(aisData.navigationStatus) this.setNavigationStatus(aisData.navigationStatus);
      
      
      Severity: Minor
      Found in src/aisTrackSymbolMarker.js - About 5 hrs 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 getTypeOfShipText has 140 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          getTypeOfShipText: function(){
              switch (this.getTypeOfShipAndCargo()){
                  case 0:
                      return "NOT AVAILABLE OR NO SHIP";
                  case 1:
      Severity: Major
      Found in src/aisTrackSymbolMarker.js - About 5 hrs to fix

        Function getTypeOfAtoNText has 66 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            getTypeOfAtoNText: function(){
                //this._setColorByTypeOfAtoN();
                switch (this.getTypeOfAtoN()){
                    case 0:
                        return "Default, Type of AtoN not specified";
        Severity: Major
        Found in src/aisTrackSymbolMarker.js - About 2 hrs to fix

          Function getPopupContent has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
          Open

              getPopupContent: function() {
          
                  var content = L.DomUtil.create('div');
          
                  var headerText = this.getName().length !== 0  ? this.getName() : "MSSI: " + this.getMmsi();
          Severity: Minor
          Found in src/aisTrackSymbolMarker.js - About 2 hrs 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 addData has 43 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              addData: function(aisData){
                  this.setMmsi(aisData.mmsi);
                  this.setMsgId(aisData.aisMsgId);
                  if(aisData.navigationStatus) this.setNavigationStatus(aisData.navigationStatus);
          
          
          Severity: Minor
          Found in src/aisTrackSymbolMarker.js - About 1 hr to fix

            Function getNavigationStatusText has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                getNavigationStatusText: function(){
                    switch (this.getNavigationStatus()){
                        case 0:
                            return "under way using engine";
                        case 1:
            Severity: Minor
            Found in src/aisTrackSymbolMarker.js - About 1 hr to fix

              Function getPopupContent has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  getPopupContent: function() {
              
                      var content = L.DomUtil.create('div');
              
                      var headerText = this.getName().length !== 0  ? this.getName() : "MSSI: " + this.getMmsi();
              Severity: Minor
              Found in src/aisTrackSymbolMarker.js - About 1 hr to fix

                Function getTypeOfDeviceText has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    getTypeOfDeviceText: function(){
                        //this._setColorByTypeOfDevice();
                        switch (this.getTypeOfDevice()){
                            case 0:
                                return "undefined (default)";
                Severity: Minor
                Found in src/aisTrackSymbolMarker.js - About 1 hr to fix

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      addData: function(aisData){
                          this.setMmsi(aisData.mmsi);
                          this.setMsgId(aisData.aisMsgId);
                          if(aisData.navigationStatus) this.setNavigationStatus(aisData.navigationStatus);
                  
                  
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 5 days to fix
                  src/aisTrackSymbolPath.js on lines 40..87

                  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 986.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      getPopupContent: function() {
                  
                          var content = L.DomUtil.create('div');
                  
                          var headerText = this.getName().length !== 0  ? this.getName() : "MSSI: " + this.getMmsi();
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 5 days to fix
                  src/aisTrackSymbolPath.js on lines 105..149

                  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 920.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      getTypeOfShipText: function(){
                          switch (this.getTypeOfShipAndCargo()){
                              case 0:
                                  return "NOT AVAILABLE OR NO SHIP";
                              case 1:
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 3 days to fix
                  src/aisTrackSymbolPath.js on lines 1296..1437

                  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 536.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      getTypeOfAtoNText: function(){
                          //this._setColorByTypeOfAtoN();
                          switch (this.getTypeOfAtoN()){
                              case 0:
                                  return "Default, Type of AtoN not specified";
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 1 day to fix
                  src/aisTrackSymbolPath.js on lines 551..619

                  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 249.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      getNavigationStatusText: function(){
                          switch (this.getNavigationStatus()){
                              case 0:
                                  return "under way using engine";
                              case 1:
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 4 hrs to fix
                  src/aisTrackSymbolPath.js on lines 954..987

                  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 131.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      getTypeOfDeviceText: function(){
                          //this._setColorByTypeOfDevice();
                          switch (this.getTypeOfDevice()){
                              case 0:
                                  return "undefined (default)";
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 4 hrs to fix
                  src/aisTrackSymbolPath.js on lines 836..866

                  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 119.

                  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 2 locations. Consider refactoring.
                  Open

                      getReferencePositions: function(){
                          return (this.getReferencePositionA() && this.getReferencePositionB() && this.getReferencePositionC() && this.getReferencePositionD()) ? [this.getReferencePositionA(),this.getReferencePositionB() ,this.getReferencePositionC() , this.getReferencePositionD()] : false;
                      },
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 2 hrs to fix
                  src/aisTrackSymbolPath.js on lines 1212..1214

                  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 94.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      getUTCTime: function(){
                          if (typeof this.getUTCYear() === 'undefined')
                              return null;
                          return new Date(Date.UTC(this.getUTCYear(),this.getUTCMonth(),this.getUTCDay(),this.getUTCHour(),this.getUTCMinute(),this.getUTCSecond()));
                      },
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 2 hrs to fix
                  src/aisTrackSymbolPath.js on lines 818..822

                  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 94.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      labelAndPopupUpdate: function (){
                          this.setTooltipContent(this.getMmsi() + " " + this.getName());
                          if(this.getPopup()){
                              this.getPopup().setContent(this.getPopupContent());
                          }
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 2 hrs to fix
                  src/aisTrackSymbolPath.js on lines 93..98

                  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 84.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      getTableRow: function(title,content,unit){
                          if(!unit)
                              unit = "";
                          if(content)
                              return  "<tr>" +
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 1 hr to fix
                  src/aisTrackSymbolPath.js on lines 170..179

                  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 70.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      setNameByMMSITable: function(){
                          if (typeof MMSI !== 'undefined')
                              if(MMSI[this.getMmsi()])
                                  this.setName(MMSI[this.getMmsi()]);
                      },
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 1 hr to fix
                  src/aisTrackSymbolPath.js on lines 203..207

                  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 59.

                  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

                  Identical blocks of code found in 2 locations. Consider refactoring.
                  Open

                      openMarineTraffic: function () {
                          var win = window.open("http://www.marinetraffic.com/en/ais/details/ships/mmsi:"+this.getMmsi(), '_blank');
                          win.focus();
                      },
                  Severity: Minor
                  Found in src/aisTrackSymbolMarker.js and 1 other location - About 40 mins to fix
                  src/aisTrackSymbolPath.js on lines 158..161

                  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 49.

                  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 10 locations. Consider refactoring.
                  Open

                      setUTCMinute: function(utcMinute){
                          if (utcMinute >= 10)
                              this._utcMinute = utcMinute;
                          else
                              this._utcMinute = "0" + utcMinute;
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 9 other locations - About 40 mins to fix
                  src/aisTrackSymbolMarker.js on lines 483..488
                  src/aisTrackSymbolMarker.js on lines 502..507
                  src/aisTrackSymbolMarker.js on lines 521..526
                  src/aisTrackSymbolMarker.js on lines 559..564
                  src/aisTrackSymbolPath.js on lines 723..728
                  src/aisTrackSymbolPath.js on lines 742..747
                  src/aisTrackSymbolPath.js on lines 761..766
                  src/aisTrackSymbolPath.js on lines 780..785
                  src/aisTrackSymbolPath.js on lines 799..804

                  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 48.

                  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 10 locations. Consider refactoring.
                  Open

                      setUTCSecond: function(utcSecond){
                          if (utcSecond >= 10)
                              this._utcSecond = utcSecond;
                          else
                              this._utcSecond = "0" + utcSecond;
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 9 other locations - About 40 mins to fix
                  src/aisTrackSymbolMarker.js on lines 483..488
                  src/aisTrackSymbolMarker.js on lines 502..507
                  src/aisTrackSymbolMarker.js on lines 521..526
                  src/aisTrackSymbolMarker.js on lines 540..545
                  src/aisTrackSymbolPath.js on lines 723..728
                  src/aisTrackSymbolPath.js on lines 742..747
                  src/aisTrackSymbolPath.js on lines 761..766
                  src/aisTrackSymbolPath.js on lines 780..785
                  src/aisTrackSymbolPath.js on lines 799..804

                  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 48.

                  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 10 locations. Consider refactoring.
                  Open

                      setUTCMonth: function(utcMonth){
                          if (utcMonth >= 10)
                              this._utcMonth = utcMonth;
                          else
                              this._utcMonth = "0" + utcMonth;
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 9 other locations - About 40 mins to fix
                  src/aisTrackSymbolMarker.js on lines 502..507
                  src/aisTrackSymbolMarker.js on lines 521..526
                  src/aisTrackSymbolMarker.js on lines 540..545
                  src/aisTrackSymbolMarker.js on lines 559..564
                  src/aisTrackSymbolPath.js on lines 723..728
                  src/aisTrackSymbolPath.js on lines 742..747
                  src/aisTrackSymbolPath.js on lines 761..766
                  src/aisTrackSymbolPath.js on lines 780..785
                  src/aisTrackSymbolPath.js on lines 799..804

                  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 48.

                  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 10 locations. Consider refactoring.
                  Open

                      setUTCDay: function(utcDay){
                          if (utcDay >= 10)
                              this._utcDay = utcDay;
                          else
                              this._utcDay = "0" + utcDay;
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 9 other locations - About 40 mins to fix
                  src/aisTrackSymbolMarker.js on lines 483..488
                  src/aisTrackSymbolMarker.js on lines 521..526
                  src/aisTrackSymbolMarker.js on lines 540..545
                  src/aisTrackSymbolMarker.js on lines 559..564
                  src/aisTrackSymbolPath.js on lines 723..728
                  src/aisTrackSymbolPath.js on lines 742..747
                  src/aisTrackSymbolPath.js on lines 761..766
                  src/aisTrackSymbolPath.js on lines 780..785
                  src/aisTrackSymbolPath.js on lines 799..804

                  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 48.

                  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 10 locations. Consider refactoring.
                  Open

                      setUTCHour: function(utcHour){
                          if (utcHour >= 10)
                              this._utcHour = utcHour; 
                          else
                              this._utcHour = "0" + utcHour;               
                  Severity: Major
                  Found in src/aisTrackSymbolMarker.js and 9 other locations - About 40 mins to fix
                  src/aisTrackSymbolMarker.js on lines 483..488
                  src/aisTrackSymbolMarker.js on lines 502..507
                  src/aisTrackSymbolMarker.js on lines 540..545
                  src/aisTrackSymbolMarker.js on lines 559..564
                  src/aisTrackSymbolPath.js on lines 723..728
                  src/aisTrackSymbolPath.js on lines 742..747
                  src/aisTrackSymbolPath.js on lines 761..766
                  src/aisTrackSymbolPath.js on lines 780..785
                  src/aisTrackSymbolPath.js on lines 799..804

                  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 48.

                  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