Plotting Channels on Cartopy Map #129
-
|
I did reference #60, but it didn't seem to answer my question. This is my code: ` G = goes_nearesttime(datetime(2025, 1, 21, 18), satellite='goes19', product='ABI', bands=10, return_as='xarray') ax = plt.subplot(projection=G.rgb.crs) I tried using bands as in the discussion I referenced, but it errored... any methods? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The issue appears to be the combination of both the bands (which should probably be a list) and the rgb recipe, which will only work when the necessary bands are present. The bands argument is a list of spectral bands by index e.g. [1, 2, 3, 14, 15] as opposed to the number of bands to include. |
Beta Was this translation helpful? Give feedback.
The issue appears to be the combination of both the bands (which should probably be a list) and the rgb recipe, which will only work when the necessary bands are present. The bands argument is a list of spectral bands by index e.g. [1, 2, 3, 14, 15] as opposed to the number of bands to include.