Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reading tropomi l2 swath no2 data #83

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions melodies_monet/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,11 @@ def open_sat_obs(self):
print('Reading MODIS L2')
self.obj = modis_l2.read_mfdataset(
self.file, self.variable_dict, debug=self.debug)
elif self.label == 'tropomi_l2_no2':
from monetio import tropomi_l2_no2
print('Reading TROPOMI L2 NO2')
self.obj = tropomi_l2_no2.read_trpdataset(
self.file, self.variable_dict, debug=self.debug)
else: print('file reader not implemented for {} observation'.format(self.label))
except ValueError:
print('something happened opening file')
Expand Down
Loading