ESRI MapServerData directory
Mapa
Published by tiles-eu1.arcgis.com
Average annual maximum temperature data for Valles Calchaquies oasis.
Service facts
- Endpoint
- https://tiles-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/CVC___Temperatura_m%C3%A1xima_promedio_anual/MapServer
- Type
- ESRI MapServer
- Layers
- 2
- Formats
- Mixed
- CRS
- EPSG:102100
- CORS
- Enabled
- Response time
- 897 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|---|---|---|
| 0 | Valles Calchaquíes | ||
| 1 | CVC - Temperatura máxima promedio anual (°C) |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New Name: Mapa URL: https://tiles-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/CVC___Temperatura_m%C3%A1xima_promedio_anual/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server Server URL: https://tiles-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/CVC___Temperatura_m%C3%A1xima_promedio_anual/MapServer
Leaflet
fetch('https://tiles-eu1.arcgis.com/5I7gLEk2dR6ptFuu/arcgis/rest/services/CVC___Temperatura_m%C3%A1xima_promedio_anual/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/CVC___Temperatura_m%C3%A1xima_promedio_anual/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)