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
pyresample's load_cf_area() forwards a UserWarning from pyproj: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format.
Severity:
Low. It is annoying to get the warning, but we know where it comes from.
Where does it come from:
The warning is triggered because we call pyproj's CRS.to_dict():
What's the problem:
pyresample's
load_cf_area()
forwards aUserWarning
from pyproj:UserWarning: You will likely lose important projection information when converting to a PROJ string from another format.
Severity:
Low. It is annoying to get the warning, but we know where it comes from.
Where does it come from:
The warning is triggered because we call pyproj's
CRS.to_dict()
:pyresample/pyresample/utils/cf.py
Line 66 in c0025ed
We use CRS.to_dict() to test the type of the projection, not to do any math / transformation with it.
Solutions:
Two solutions:
The text was updated successfully, but these errors were encountered: