Divide IGRA coordinates by 10 before ingest

This commit is contained in:
XANTRONIX 2025-02-25 18:50:23 -05:00
parent 9927a2eebc
commit 4083e7bf16

View file

@ -137,7 +137,7 @@ class IGRAReader():
sounding.timestamp_released = timestamp_release
sounding.data_source_pressure = match['p_src']
sounding.data_source_other = match['np_src']
sounding.location = shapely.Point(lon, lat)
sounding.location = shapely.Point(lon / 10.0, lat / 10.0)
sounding.samples = list()
count = int(match['numlev'])