ESRI MapServerData directory
Layers
Published by tiles.arcgis.com
Riparian shade coverage from vegetation and topography for freshwater ecology planning
Service facts
- Endpoint
- https://tiles.arcgis.com/tiles/Bb8lfThdhugyc4G3/arcgis/rest/services/KRCrasterwgs84stretched15/MapServer
- Type
- ESRI MapServer
- Layers
- 1
- Formats
- PNG
- CRS
- EPSG:102100
- CORS
- Enabled
- Response time
- 484 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|---|---|---|
| 0 | Riparian Shade |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New Name: Layers URL: https://tiles.arcgis.com/tiles/Bb8lfThdhugyc4G3/arcgis/rest/services/KRCrasterwgs84stretched15/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server Server URL: https://tiles.arcgis.com/tiles/Bb8lfThdhugyc4G3/arcgis/rest/services/KRCrasterwgs84stretched15/MapServer
Leaflet
fetch('https://tiles.arcgis.com/tiles/Bb8lfThdhugyc4G3/arcgis/rest/services/KRCrasterwgs84stretched15/MapServer/0/query?where=1%3D1&outFields=*&f=geojson')
.then((r) => r.json())
.then((geojson) => L.geoJSON(geojson).addTo(map));Python
import geopandas as gpd
gdf = gpd.read_file(
'https://tiles.arcgis.com/tiles/Bb8lfThdhugyc4G3/arcgis/rest/services/KRCrasterwgs84stretched15/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)