Skip to content

Commit

Permalink
Improved GeoJSON output
Browse files Browse the repository at this point in the history
  • Loading branch information
fboes committed May 8, 2024
1 parent 48b5c99 commit f803ff1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/Export/GeoJson.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class GeoJson {
coordinates: [mission.origin_lon_lat.lon, mission.origin_lon_lat.lat],
},
properties: {
title: mission.origin_icao,
title: mission.aircraft_icao + " ORIGIN",
type: "plane",
altitude: undefined,
direction: mission.origin_dir,
Expand All @@ -102,7 +102,7 @@ export class GeoJson {
coordinates: [mission.destination_lon_lat.lon, mission.destination_lon_lat.lat],
},
properties: {
title: mission.destination_icao,
title: mission.aircraft_icao + " DESTINATION",
type: "plane",
altitude: undefined,
direction: mission.destination_dir,
Expand Down
4 changes: 2 additions & 2 deletions src/Export/GeoJson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class GeoJson implements GeoJSON.FeatureCollection {
coordinates: [mission.origin_lon_lat.lon, mission.origin_lon_lat.lat],
},
properties: {
title: mission.origin_icao,
title: mission.aircraft_icao + " ORIGIN",
type: "plane",
altitude: undefined,
direction: mission.origin_dir,
Expand All @@ -131,7 +131,7 @@ export class GeoJson implements GeoJSON.FeatureCollection {
coordinates: [mission.destination_lon_lat.lon, mission.destination_lon_lat.lat],
},
properties: {
title: mission.destination_icao,
title: mission.aircraft_icao + " DESTINATION",
type: "plane",
altitude: undefined,
direction: mission.destination_dir,
Expand Down

0 comments on commit f803ff1

Please sign in to comment.