andrewhao/gpx

View on GitHub

Showing 15 of 23 total issues

Method generate_xml_doc has a Cognitive Complexity of 87 (exceeds 5 allowed). Consider refactoring.
Open

    def generate_xml_doc
      @version ||= '1.1'
      version_dir = version.gsub('.','/')

      gpx_header = attributes_and_nsdefs_as_gpx_attributes
Severity: Minor
Found in lib/gpx/gpx_file.rb - About 1 day 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

Method initialize has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
Open

    def initialize(opts = {})
      @duration = 0
      @attributes = {}
      @namespace_defs = []
      if(opts[:gpx_file] or opts[:gpx_data])
Severity: Minor
Found in lib/gpx/gpx_file.rb - About 3 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

Method generate_xml_doc has 69 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def generate_xml_doc
      @version ||= '1.1'
      version_dir = version.gsub('.','/')

      gpx_header = attributes_and_nsdefs_as_gpx_attributes
Severity: Major
Found in lib/gpx/gpx_file.rb - About 2 hrs to fix

    Method append_point has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

        def append_point(pt)
          last_pt = @points[-1]
          unless pt.time.nil?
            @earliest_point = pt if(@earliest_point.nil? or pt.time < @earliest_point.time)
            @latest_point   = pt if(@latest_point.nil? or pt.time > @latest_point.time)
    Severity: Minor
    Found in lib/gpx/segment.rb - 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

    Method add has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

        def add(item)
          if(item.respond_to?(:lat) and item.respond_to?(:lon))
            @min_lat = item.lat if item.lat < @min_lat
            @min_lon = item.lon if item.lon < @min_lon
            @max_lat = item.lat if item.lat > @max_lat
    Severity: Minor
    Found in lib/gpx/bounds.rb - 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

    Method initialize has 50 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def initialize(opts = {})
          @duration = 0
          @attributes = {}
          @namespace_defs = []
          if(opts[:gpx_file] or opts[:gpx_data])
    Severity: Minor
    Found in lib/gpx/gpx_file.rb - About 2 hrs to fix

      Method update_meta_data has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          def update_meta_data(pt, last_pt)
            unless pt.time.nil?
              @earliest_point = pt if(@earliest_point.nil? or pt.time < @earliest_point.time)
              @latest_point   = pt if(@latest_point.nil? or pt.time > @latest_point.time)
            end
      Severity: Minor
      Found in lib/gpx/segment.rb - About 1 hr 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

      Method initialize has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def initialize(opts = {:lat => 0.0, :lon => 0.0, :elevation => 0.0, :time => Time.now } )
            @gpx_file = opts[:gpx_file]
            if (opts[:element])
              elem = opts[:element]
              @lat, @lon = elem["lat"].to_f, elem["lon"].to_f
      Severity: Minor
      Found in lib/gpx/point.rb - About 1 hr 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

      Method smooth_location_by_average has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def smooth_location_by_average(opts={})
            seconds_either_side = opts[:averaging_window] || 20
      
            #calculate the first and last points to which the smoothing should be applied
            earliest = (find_point_by_time_or_offset(opts[:start]) || @earliest_point).time
      Severity: Minor
      Found in lib/gpx/segment.rb - About 1 hr to fix

        Method convert_to_gpx has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              def convert_to_gpx(magellan_filename, gpx_filename)
        
                segment = Segment.new
        
                CSV.open(magellan_filename, "r").each do |row|
        Severity: Minor
        Found in lib/gpx/magellan_track_log.rb - About 1 hr to fix

          Method find_closest has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              def find_closest(pts, time)
                return pts.first if pts.size == 1
                midpoint = pts.size/2
                if pts.size == 2
                  diff_1 = pts[0].time - time
          Severity: Minor
          Found in lib/gpx/segment.rb - About 1 hr 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

          Method convert_to_gpx has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

                def convert_to_gpx(magellan_filename, gpx_filename)
          
                  segment = Segment.new
          
                  CSV.open(magellan_filename, "r").each do |row|
          Severity: Minor
          Found in lib/gpx/magellan_track_log.rb - About 1 hr 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

          Method update_meta_data has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              def update_meta_data(trk, get_bounds = true)
                @lowest_point   = trk.lowest_point if(@lowest_point.nil? or (!trk.lowest_point.nil? and trk.lowest_point.elevation < @lowest_point.elevation))
                @highest_point  = trk.highest_point if(@highest_point.nil? or (!trk.highest_point.nil? and trk.highest_point.elevation > @highest_point.elevation))
                @bounds.add(trk.bounds) if get_bounds
                @distance += trk.distance
          Severity: Minor
          Found in lib/gpx/gpx_file.rb - About 35 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

          Avoid too many return statements within this method.
          Open

                  return find_closest(pts[(midpoint+1)..-1], time)
          Severity: Major
          Found in lib/gpx/segment.rb - About 30 mins to fix

            Method initialize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                def initialize(opts = {})
                  if(opts[:element] and opts[:gpx_file])
                    wpt_elem = opts[:element]
                    @gpx_file = opts[:gpx_file]
                    super(:element => wpt_elem, :gpx_file => @gpx_file)
            Severity: Minor
            Found in lib/gpx/waypoint.rb - About 25 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

            Severity
            Category
            Status
            Source
            Language