Replies: 2 comments
-
|
It is possible to add any products to the table that aren't already there in the hardcoded list. Example below for your case. import goes2go
goes2go.NEW.product_table.loc["ABI-L2-LST2KMF"] = {"description": "Land Surface Temperature 2km FD"}
G = goes2go.NEW.GOES(satellite=16, product="ABI-L2-LST2KM", domain="F")
ds = G.latest()
print(ds)
import matplotlib.pyplot as plt
plt.imshow(ds.LST)
plt.colorbar()
plt.show() |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Thanks @coliveir-aer. My time is a bit limited now. If you would like to open a PR @mcuahutle that would be much appreciated. Glad you like the package. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, this is an excellent tool.
Are there plans to add new products? Like the 2km ABI-L2-LST2KMF. Currently, the 10km ABI-L2-LSTF product is supported in goes2go
Beta Was this translation helpful? Give feedback.
All reactions