diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-07-01 06:34:36 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-07-01 06:34:36 +0000 |
| commit | 565fe28b20079d83cd0691ff9febe549f5728ab3 (patch) | |
| tree | 0e056e3a2ce9f45f12fc80711b39232b6ebfb2c5 | |
| parent | 3e9f88f0ba7c416dcd67034be4340ce0279ca62d (diff) | |
feat(layers): bundled Pacific TSS GeoJSON asset (placeholder coordinates)
| -rw-r--r-- | android-app/app/src/main/res/raw/pacific_tss.geojson | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/android-app/app/src/main/res/raw/pacific_tss.geojson b/android-app/app/src/main/res/raw/pacific_tss.geojson new file mode 100644 index 0000000..f8535a0 --- /dev/null +++ b/android-app/app/src/main/res/raw/pacific_tss.geojson @@ -0,0 +1,38 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { "name": "Honolulu Approach Inbound", "type": "lane_inbound" }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-158.10, 21.15], [-157.95, 21.20], [-157.90, 21.28], + [-157.95, 21.32], [-158.10, 21.25], [-158.10, 21.15] + ]] + } + }, + { + "type": "Feature", + "properties": { "name": "Honolulu Approach Outbound", "type": "lane_outbound" }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-158.10, 21.05], [-157.95, 21.10], [-157.90, 21.18], + [-157.95, 21.22], [-158.10, 21.14], [-158.10, 21.05] + ]] + } + }, + { + "type": "Feature", + "properties": { "name": "Honolulu Separation Zone", "type": "separation_zone" }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-158.10, 21.14], [-157.95, 21.19], [-157.90, 21.23], + [-157.95, 21.26], [-158.10, 21.20], [-158.10, 21.14] + ]] + } + } + ] +} |
