Availability of Map Tiles (XYZ/Slippy Map Format) #832
Replies: 3 comments 4 replies
-
So, I've went ahead and made my own "proxy server" of sorts which converts the more complex NCEP/WMS API into a slippy map/XYZ format. Here's the code: https://github.com/blockarchitech/wmsproxy It includes a Dockerfile, so it should be simple to get set up. It appears everything works great n my testing 🙂 While it would be awesome if this functionality was supported by NOAA itself, I think this serves as a good stopgap for now. |
Beta Was this translation helpful? Give feedback.
-
I am not aware of that format. radar.weather.gov uses the opengeo.ncep.noaa.gov tiles. |
Beta Was this translation helpful? Give feedback.
-
@blockarchitech an XYZ layer provides pre-rendered tiles, and the Geoserver provides dynamically generated tiles or WMS, both are used on "slippy" maps. Here is a basic example of a WMS layer from the geoserver you linked to above using the OpenLayers library:
Happy to help provide more examples as helpful. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
This may be the wrong place to post this - but I'm not sure where else this would go 😄
Let me know if there's a more well-suited place to post or send this to.
I'm hoping to find an official NWS endpoint for radar map tiles in a standard XYZ / "slippy map" format.
I vaguely recall a previous NWS service that offered this, using a URL structure similar to this:
http://ridgewms.srh.noaa.gov/tc/tc.py/1.0.0/N0Q_0/{z}/{x}/{y}.png
However, this service appears to be deprecated, and I haven't been able to find a direct replacement. I've also looked into the NCEP OpenGeo Geoserver, but for a simple application like my own, it seems far more complex than what I'm hoping to find.
For context, my goal is to implement a TileProvider for a mapping library (like the Google Maps Android SDK). The Iowa State University IEM project provides exactly the kind of endpoint I'm looking for:
https://mesonet.agron.iastate.edu/cache/tile.py/1.0.0/nexrad-n0q-900913/{z}/{x}/{y}.png
This URL format integrates perfectly into a standard tile provider implementation:
While the Iowa State service works great, my preference would be to source this data directly from NOAA/NWS.
With the launch of radar.weather.gov, is a similar XYZ tile service for radar imagery available or planned for the future?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions