Skip to content

Commit

Permalink
lon no longer -180
Browse files Browse the repository at this point in the history
  • Loading branch information
forman committed Jul 28, 2016
1 parent c9a82b7 commit 1897d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dedop/ui/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(self, file_path, interactive):
self.attributes = {name: dataset.getncattr(name) for name in dataset.ncattrs()}

self.lat = dataset['lat_%s_echo_sar_ku' % product_type][:]
self.lon = dataset['lon_%s_echo_sar_ku' % product_type][:] - 180.0
self.lon = dataset['lon_%s_echo_sar_ku' % product_type][:]

self.lat_0 = self.lat.mean()
self.lon_0 = self.lon.mean()
Expand Down

0 comments on commit 1897d5f

Please sign in to comment.