Don't use COORD_SYSTEM as shapely.Point() 3rd arg

This commit is contained in:
XANTRONIX 2025-02-25 09:38:34 -05:00
parent e4cb2bba24
commit 25a229c979

View file

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