Identifying PACE Rrs Wavelengths
Posted: Mon Jul 08, 2024 3:05 pm America/New_York
Hello,
I have been following Ocean Color's Jupyter notebook tutorial on file structure at L2 processing levels for OCI "PACE_OCI_L2_AOP_NRT"https://oceancolor.gsfc.nasa.gov/resources/docs/tutorials/notebooks/oci-file-structure/
I am able to successfully plot different rrs bands with the code:
However, nowhere in this code am I able to figure out what the wavelength of these bands are. The bands are labeled by their index (wavelength_3d), ranging from 0-184. How can I figure out what the wavelength of these bands are? It is not described in the tutorial.
----
I have been following Ocean Color's Jupyter notebook tutorial on file structure at L2 processing levels for OCI "PACE_OCI_L2_AOP_NRT"https://oceancolor.gsfc.nasa.gov/resources/docs/tutorials/notebooks/oci-file-structure/
I am able to successfully plot different rrs bands with the code:
Code: Select all
rrs = dataset["Rrs"].sel({"wavelength_3d": 100})
plot = rrs.plot(x="longitude", y="latitude", cmap="viridis", vmin=0)
----