ESRI MapServerData directory
Capas
Published by tiles-eu1.arcgis.com
Soil surface accumulation index data layer for 50-100 centimeter depth class.
Service facts
- Endpoint
- https://tiles-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/ESVC_RAS_50_100_cm_/MapServer
- Type
- ESRI MapServer
- Layers
- 1
- Formats
- MIXED
- CRS
- EPSG:102100
- CORS
- Enabled
- Response time
- 1090 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|---|---|---|
| 0 | ESVC_RAS_50_100_cm |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New Name: Capas URL: https://tiles-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/ESVC_RAS_50_100_cm_/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server Server URL: https://tiles-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/ESVC_RAS_50_100_cm_/MapServer
Leaflet
fetch('https://tiles-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/ESVC_RAS_50_100_cm_/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-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/ESVC_RAS_50_100_cm_/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)