You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When ozone metadata cannot be found from Nasa, for example when Sentinel3 products are processed as soon as they are published, the code returns the following error:
TypeError: object of type 'NoneType' has no len()
This is because the find function in ancillary.py returns None when it cannot find metadata and sets res to None, this causes the error above when on line 330 the len(res) is evaluated.
If the desired behavior is for Polymer to exit when there is no metadata available, maybe it would be better to raise the error in the find function and warn the user that metadata is required for processing.
Thanks
The text was updated successfully, but these errors were encountered:
When ozone metadata cannot be found from Nasa, for example when Sentinel3 products are processed as soon as they are published, the code returns the following error:
TypeError: object of type 'NoneType' has no len()
This is because the find function in ancillary.py returns None when it cannot find metadata and sets res to None, this causes the error above when on line 330 the len(res) is evaluated.
If the desired behavior is for Polymer to exit when there is no metadata available, maybe it would be better to raise the error in the find function and warn the user that metadata is required for processing.
Thanks
The text was updated successfully, but these errors were encountered: