GeoServer Endpoints¶
Endpoints for accessing spatial data served through GeoServer.
Point Data¶
Get GeoServer point data¶
GET /geoserver/point-data?location_id=<id>&measure=<measure>&variable=<variable>&date_from=<date>&date_to=<date>&scenario=<scenario>
Retrieves point-based spatial data for a specific location and variable.
Raster Data¶
Get GeoServer raster¶
GET /geoserver/raster?store=<store>&workspace=<workspace>&variable=<variable>&date=<date>&bbox=<bbox>&crs=<crs>&width=<width>&height=<height>
Retrieves raster (coverage) data from GeoServer for visualization.
| Parameter | Type | Description |
|---|---|---|
| store | string | GeoServer store name |
| workspace | string | GeoServer workspace name |
| variable | string | Climate variable name |
| date | date | Date for the raster layer |
| bbox | string | Bounding box (minx,miny,maxx,maxy) |
| crs | string | Coordinate reference system, e.g. EPSG:4326 |
| width | integer | Output image width |
| height | integer | Output image height |