Divide IGRA coordinates by 10 before ingest
This commit is contained in:
parent
9927a2eebc
commit
4083e7bf16
1 changed files with 1 additions and 1 deletions
|
@ -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'])
|
||||
|
|
Loading…
Add table
Reference in a new issue