fix: Correct Hemisphere Signs for Pacific Territories Airports (airports.csv) #729
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR corrects in
airports.csvthe coordinate signs for eight airports in US Pacific territories that were incorrectly placed in opposite hemispheres. The errors were discovered while preparing metadata updates forairports.csvin #728 and were cross-checked with FAA data and visualized on Google Maps for confirmation. The errors do not appear to have been added intentionally when the dataset was introduced into this repo 10 years ago. No impact expected on Vega/VL/Altair gallery examples. Only known use ofairports.csvdata in galleries are flight map charts, and these eight airports do not appear in the flight schedule data.Problem
These airports had incorrect hemisphere signs, causing them to appear thousands of miles from their actual locations. No other major discrepancies founds in
airports.csvwhen compared against official FAA coordinates.Changes
### American Samoa airports - Latitude sign corrected from positive to negative (Northern → Southern Hemisphere) | Expand to see Google Maps links
14.21577583, -169.423905814.216°N, 169.424°W
View on map
-14.21577583, -169.423905814.216°S, 169.424°W
View on map
14.33102278, -170.710525814.331°N, 170.711°W
View on map
-14.33102278, -170.710525814.331°S, 170.711°W
View on map
14.18435056, -169.670023614.184°N, 169.670°W
View on map
-14.18435056, -169.670023614.184°S, 169.670°W
View on map
### Mariana Islands/Guam airports - Longitude sign corrected from negative to positive (Western → Eastern Hemisphere) | Expand to see Google Maps links
14.1743075, -145.242535314.174°N, 145.243°W
View on map
14.1743075, 145.242535314.174°N, 145.243°E
View on map
15.11900139, -145.729356115.119°N, 145.729°W
View on map
15.11900139, 145.729356115.119°N, 145.729°E
View on map
14.99685028, -145.618038314.997°N, 145.618°W
View on map
14.99685028, 145.618038314.997°N, 145.618°E
View on map
18.12444444, -145.768611118.124°N, 145.769°W
View on map
18.12444444, 145.768611118.124°N, 145.769°E
View on map
13.48345, -144.795982513.483°N, 144.796°W
View on map
13.48345, 144.795982513.483°N, 144.796°E
View on map
Verification
Coordinates verified against FAA National Airspace System Resource (NASR) data (30 Oct 2025 release). This change only flips the hemisphere signs; the original coordinate precision is preserved.
Impact
Flight Data Impact
None of these 8 airports appear in any of the flights datasets in this repository (
flights-airport.csv,flights-2k.json,flights-5k.json,flights-10k.json,flights-20k.json,flights-200k.json,flights-3m.parquet,flights-200k.arrow). These are small regional airports in remote Pacific territories that don't have commercial flights in the main US flight tracking datasets. This fix will only impact direct usage ofairports.csvfor mapping or geographic analysis.Replication code for data table comparison with FAA and map visualiation with Leafmap