mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-18 06:56:59 +03:00
1.3 KiB
1.3 KiB
ImageServer Imagery Reference
Raleigh publishes aerial photography, land-cover, temperature, and elevation products through a public ArcGIS ImageServer directory.
Base Directory
https://maps.raleighnc.gov/images/rest/services?f=pjson
The CLI recursively discovers services in folders such as Ortho, Temperature, Heat, LandCover, and Elevation.
Service Metadata
https://maps.raleighnc.gov/images/rest/services/{ServiceName}/ImageServer?f=pjson
Inspect capabilities to determine supported operations. Common capabilities include Catalog, Image, and Metadata.
Operations
Export Image
{serviceUrl}/exportImage?bbox={xmin},{ymin},{xmax},{ymax}&bboxSR=4326&imageSR=4326&size={width},{height}&format=jpgpng&f=image
Identify
{serviceUrl}/identify?geometry={pointJson}&geometryType=esriGeometryPoint&inSR=4326&outSR=4326&f=json
Statistics
{serviceUrl}/computeStatisticsHistograms?geometry={envelopeJson}&geometryType=esriGeometryEnvelope&inSR=4326&outSR=4326&f=json
Notes
- Do not append
/0to an ImageServer root. - Large exports require explicit bounds; the CLI does not attempt full-service downloads by default.
- Image exports return raw bytes; the file extension should match the requested format.