Skip to content
Snippets Groups Projects
Commit 5b8fbb9e authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Bug fix: change names of coordinates

Names of NetCDF variables in AVISO files are changed: lon to
longitude, lat to latitude. As in commit b456b50e.
parent 3924a388
No related branches found
No related tags found
No related merge requests found
...@@ -8,8 +8,8 @@ import sys ...@@ -8,8 +8,8 @@ import sys
with netCDF4.Dataset(sys.argv[1]) as f: with netCDF4.Dataset(sys.argv[1]) as f:
ssh = f.variables["adt"][:].squeeze() ssh = f.variables["adt"][:].squeeze()
longitude = f.variables["lon"][:] longitude = f.variables["longitude"][:]
latitude = f.variables["lat"][:] latitude = f.variables["latitude"][:]
lon_center = float(input("longitude of center (same unit as input file) = ? ")) lon_center = float(input("longitude of center (same unit as input file) = ? "))
lat_center = float(input("latitude of center (same unit as input file) = ? ")) lat_center = float(input("latitude of center (same unit as input file) = ? "))
......
...@@ -11,8 +11,8 @@ if len(sys.argv) != 2: sys.exit("Required argument: ADT file") ...@@ -11,8 +11,8 @@ if len(sys.argv) != 2: sys.exit("Required argument: ADT file")
f= netCDF4.Dataset(sys.argv[1]) f= netCDF4.Dataset(sys.argv[1])
longitude = f.variables["lon"][:] longitude = f.variables["longitude"][:]
latitude = f.variables["lat"][:] latitude = f.variables["latitude"][:]
ssh = f.variables["adt"][:].squeeze() ssh = f.variables["adt"][:].squeeze()
# No extremum on borders: # No extremum on borders:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment