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
Raises a warning log message if the output area size are not a whole number. This is fine, but the message uses the word meters even in cases where the input resolution is given in degrees.
WARNING:root:shape found from radius and resolution does not contain only integers: (4333.333333333334, 12000.0)
Rounding shape to (4334, 12000) and resolution from (0.03, 0.03) meters to (0.03, 0.029995385325334564) meters
But the resolution passed to create_area_def is in degrees...
The text was updated successfully, but these errors were encountered:
Problem description
The code here:
https://github.com/pytroll/pyresample/blob/main/pyresample/area_config.py#L724
Raises a warning log message if the output area size are not a whole number. This is fine, but the message uses the word
meters
even in cases where the input resolution is given in degrees.Example
Gives this message:
But the resolution passed to
create_area_def
is in degrees...The text was updated successfully, but these errors were encountered: