Skip to content

failed to load track without elevation  #127

@philippe-queinnec

Description

@philippe-queinnec

If a track has no elevation ( tag), or if the first point of a track has no elevation, loading fails.
The culprit is line 488 in _parse_segment. The line
ll.meta.ele = last.meta.ele;
should be
if (last != null) { ll.meta.ele = last.meta.ele; }

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions