WMS — Web Map Service
OGC-compliant Web Map Service (WMS 1.3.0) serving orthophoto raster images. Each site appears as a named layer; individual captures are sub-layers. Compatible with QGIS, ArcGIS, Global Mapper, GDAL, and any WMS-capable client.
URL
https://app.raad.com/wms
Setup in QGIS
- Go to Layer → Add Layer → Add WMS/WMTS Layer
- Click New, name the connection Raad WMS, and set the URL to
https://app.raad.com/wms - Open the Authentication tab → click the green + → choose HTTP Header auth
- Set header name
Authorization, valueBearer YOUR_MAP_ACCESS_TOKEN, and save - Click OK → Connect — the layer tree loads all your sites and captures
- Expand a site, select the capture you want, and click Add
- Right-click the new layer → Zoom to Layer to navigate to it
Note: Extents in QGIS may display in EPSG:3857 (large numbers like -9112286…). This is normal reprojection from WGS84 into your project CRS — the underlying data is correctly positioned.
Setup in ArcGIS Pro
- On the Insert tab → Connections → New WMS Server
- Set the URL to
https://app.raad.com/wms - Expand Custom request headers, add
Authorization→Bearer YOUR_MAP_ACCESS_TOKEN - Click OK — in the Catalog pane, expand the connection and drag a layer onto the map
Validate with a Direct GetMap Request
To confirm a layer is rendering, use curl (substitute your token, layer UUID, and bounding box):
curl -H "Authorization: Bearer YOUR_MAP_ACCESS_TOKEN" \
"https://app.raad.com/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap\
&LAYERS=RUN_UUID_HERE&SRS=EPSG:4326\
&BBOX=-81.89,33.50,-81.85,33.54&WIDTH=512&HEIGHT=512&FORMAT=image/png" \
--output preview.png
Using WMS 1.1.1 with SRS=EPSG:4326 avoids the axis-flip behaviour of 1.3.0.