I ask for a good reason, as I would like to do some example plots using this in Julia. Yes, I should Google before I ask. However there is sually a great deal of knowledge on this forum!
I am wanting to display wind speeds and wave heights on plots of the ocean, on web based displays. If anyone is doing work like this please drop me a message and give me a street in the correct direction. Nautical pun slightly intended.
Thank you for your time and response. Fyi, searching in the NASA site blog, found this post that indicates that last year they had released 30 m resolution to the public?
The Google Earth images seem to have higher resolution than that and might be accessed throught the EarthEngine.jl package (never tried it).
Funny, also found that thread and implemented a (semi) WMS in GMT based on GDAL. I’m saying semi because apparently GDAL does not read all WMS services (and I also have quite limited knowledge on the matter).
using GMT
wms = wmsinfo("http://tiles.maps.eox.at/wms?");
img = wmsread(wms, layer=3, region=(-10,-5,37,44), pixelsize=1500); # one can go up to pixelsize=10 meters)
imshow(img)
Thank you for sharing the tutorial ! I have also been working on a STAC client here: essentially it helps with the JSON parsing and with searching. The idea is that catalog behaves like a julia “dictionary” of subcatalogs.
using STAC
catalog = STAC.Catalog("https://cmr.earthdata.nasa.gov/stac/")
# LPCLOUD is here the id of the sub-catalog
@show catalog["LPCLOUD"]
Thanks, I’ll look at it in a future revision of that tutorial. I find it to cryptic but that’s how it was in Python and mostly wanted to be able to reproduce it in Julia.