ESRI MapServerData directory
Layers
Wildlife collision density on Oregon state highways from carcass report data
Service facts
- Endpoint
- https://gis.odot.state.or.us/arcgis1006/rest/services/data_layers/wildlife_collision_density/MapServer
- Type
- ESRI MapServer
- Layers
- 1
- Formats
- PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP
- CRS
- EPSG:102100
- CORS
- Enabled
- Response time
- 927 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features | |||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Wildlife Collision Density12 fields
| line |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New Name: Layers URL: https://gis.odot.state.or.us/arcgis1006/rest/services/data_layers/wildlife_collision_density/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server Server URL: https://gis.odot.state.or.us/arcgis1006/rest/services/data_layers/wildlife_collision_density/MapServer
Leaflet
fetch('https://gis.odot.state.or.us/arcgis1006/rest/services/data_layers/wildlife_collision_density/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://gis.odot.state.or.us/arcgis1006/rest/services/data_layers/wildlife_collision_density/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)