From 25a229c9793f2889b7c6bace329349711e791ecd Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Tue, 25 Feb 2025 09:38:34 -0500 Subject: [PATCH] Don't use COORD_SYSTEM as shapely.Point() 3rd arg --- lib/xmet/igra.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmet/igra.py b/lib/xmet/igra.py index d6c93d8..6a54be0 100644 --- a/lib/xmet/igra.py +++ b/lib/xmet/igra.py @@ -133,7 +133,7 @@ class IGRAReader(): sounding.timestamp_released = timestamp_release sounding.data_source_pressure = match['p_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() count = int(match['numlev'])