mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
48 lines
1 KiB
Ruby
48 lines
1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Gpx::TrackParser
|
|
attr_reader :import, :json, :user_id
|
|
|
|
def initialize(import, user_id)
|
|
@import = import
|
|
@json = import.raw_data
|
|
@user_id = user_id
|
|
end
|
|
|
|
def call
|
|
segments = json['gpx']['trk']['trkseg']
|
|
|
|
if segments.is_a?(Array)
|
|
segments.each do |segment|
|
|
segment['trkpt'].each { create_point(_1) }
|
|
end
|
|
else
|
|
segments['trkpt'].each { create_point(_1) }
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def create_point(point)
|
|
return if point['lat'].blank? || point['lon'].blank? || point['time'].blank?
|
|
return if point_exists?(point)
|
|
|
|
Point.create(
|
|
latitude: point['lat'].to_d,
|
|
longitude: point['lon'].to_d,
|
|
altitude: point['ele'].to_i,
|
|
timestamp: Time.parse(point['time']).to_i,
|
|
import_id: import.id,
|
|
user_id:
|
|
)
|
|
end
|
|
|
|
def point_exists?(point)
|
|
Point.exists?(
|
|
latitude: point['lat'].to_d,
|
|
longitude: point['lon'].to_d,
|
|
timestamp: Time.parse(point['time']).to_i,
|
|
user_id:
|
|
)
|
|
end
|
|
end
|