Reprojecting Satellite Image #2616
-
Beta Was this translation helpful? Give feedback.
Answered by
dopplershift
Aug 16, 2022
Replies: 1 comment
-
No MetPy issue here, since it's only involved in the parsing of the netCDF metadata into the cartopy CRS. Your problem is this call: map_proj = ccrs.Mercator() That's not specifying a map_proj = ccrs.Mercator(central_longitude=-130) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dopplershift
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No MetPy issue here, since it's only involved in the parsing of the netCDF metadata into the cartopy CRS.
Your problem is this call:
That's not specifying a
central_longitude
, so it uses the default of 0. My guess is using a projection so far from the region of interest/valid range of data causes some weird "seam-crossing" issue. If I instead use:I get the expected image: