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
Is your feature request related to a problem? Please describe.
Some computations in satpy require the actual satellite position (lat, lon, alt), which can be provided via attributes orbital_parameters or satellite_longitude/latitude/altitude (deprecated). The helper method satpy.utils.get_satpos tries to extract the best match from the available dataset attributes. If none of the above attributes are present, the method fails with a KeyError('satellte_longitude'), see #1494 .
Describe the solution you'd like
The method to provide a more informative error message. Suggestion:
KeyError("Unable to determine actual satellite position. Either the reader doesn't provide that information or geolocation datasets are not available").
Describe any changes to existing user workflow
None
Additional context
None
The text was updated successfully, but these errors were encountered:
Feature Request
Is your feature request related to a problem? Please describe.
Some computations in satpy require the actual satellite position (lat, lon, alt), which can be provided via attributes
orbital_parameters
orsatellite_longitude/latitude/altitude
(deprecated). The helper methodsatpy.utils.get_satpos
tries to extract the best match from the available dataset attributes. If none of the above attributes are present, the method fails with aKeyError('satellte_longitude')
, see #1494 .Describe the solution you'd like
The method to provide a more informative error message. Suggestion:
Describe any changes to existing user workflow
None
Additional context
None
The text was updated successfully, but these errors were encountered: