Replies: 1 comment
-
Hi @dheera By design, only the If you want to get and plot just channel six you can try any of these: Level 1 Radiance data, GOES-16from goes2go import GOES
import matplotlib.pyplot as plt
G = GOES(satellite=16, product="ABI-L1b-Rad", domain="C", channel=6)
df = G.latest()
plt.imshow(df.Rad)
plt.title(f"{df.title}\nBand:{df.band_id.item()}", loc="left")
plt.title(df.t.dt.strftime("%H:%M UTC %d %b %Y").item(), loc="right") Level 2 Cloud Moisture Imagry Product; GOES-18G = GOES(satellite=18, product="ABI-L2-CMIP", domain="C", channel=6)
df = G.latest()
plt.imshow(df.CMI)
plt.title(f"{df.title}\nBand:{df.band_id.item()}", loc="left")
plt.title(df.t.dt.strftime("%H:%M UTC %d %b %Y").item(), loc="right") Level 2 Multi-channel Cloud Moisture Imagery; GOES-16Remember, this file has all 16 channels, so the variables name is slightly different. G = GOES(satellite=16, product="ABI-L2-MCMIP", domain="C")
df = G.latest()
plt.imshow(df.CMI_C06)
plt.title(f"{df.title}\nBand:{df.band_id_C06.item()}", loc="left")
plt.title(df.t.dt.strftime("%H:%M UTC %d %b %Y").item(), loc="right") |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm having trouble accessing data for
ABI-L1b
. It says thergb
accessor isn't available, and there isn't an "ir" accessor. Is there documentation for how to access, say, Band 6 and plot it?Beta Was this translation helpful? Give feedback.
All reactions