From 4083e7bf167738354a68aa2018d42c40c1beea67 Mon Sep 17 00:00:00 2001
From: XANTRONIX Industrial <xan@xantronix.com>
Date: Tue, 25 Feb 2025 18:50:23 -0500
Subject: [PATCH] Divide IGRA coordinates by 10 before ingest

---
 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 9c1372c..b875086 100644
--- a/lib/xmet/igra.py
+++ b/lib/xmet/igra.py
@@ -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'])