You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: services/apis.qmd
+29-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,6 @@ Most of the VEDA APIs are hosted out of a single project ([veda-backend](https:/
11
11
While some of our services are already very mature, VEDA is currently in the build-up phase. Therefore, we do not yet have a production environment for users.
12
12
Maintenance on the staging environment will be announced internally and selected known stakeholders will be informed of any larger changes.
13
13
14
-
15
14
### Production (stable): Coming soon
16
15
17
16
### Staging (maintenance will be announced):
@@ -29,3 +28,32 @@ Maintenance on the staging environment will be announced internally and selected
29
28
* List collections: [https://dev.openveda.cloud/api/stac/collections](https://dev.openveda.cloud/api/stac/collections)
30
29
* Raster API (tiling): [https://dev.openveda.cloud/api/raster/docs](https://dev.openveda.cloud/api/raster/docs)
As you can see from our API docs referenced above, our raster API provides [WMTS](https://www.ogc.org/standard/wmts/) and XYZ tiles for public consumption.
38
+
39
+
For any layer you are seeing in the VEDA dataset Explorer, you can retrieve the tile URL:
40
+
41
+

42
+
43
+
And paste that into any client that loads these tiles, like QGIS, ArcGIS, Leaflet, even online tools such as [geojson.io](https://geojson.io) or [felt.com](https://felt.com).
44
+
45
+
### STAC for layer timeseries
46
+
47
+
If you want to integrate tile layer time series into your application, you will need to fetch the information about
48
+
which time steps exist and what the layer URLs are from our Spatio Tempoeral Asset Catalog (STAC) API (see above).
49
+
50
+
That is because, unfortunately, neither XYZ nor WMTS have time series capabilities (unlike good old [WMS](https://www.ogc.org/standard/wms/), which our services do not provide, though).
51
+
52
+
You can see how to retrieve time steps and tile layer URLs from these tutorial Python notebooks (mostly REST API calls):
53
+
54
+
1.[Using /stac/tilejson.json with STAC collection and item IDs](../notebooks/datasets/ocean-npp-timeseries-analysis.qmd#visualizing-the-raster-imagery)
55
+
2.[Creating layers from filters and mosaics (advanced)](../notebooks/quickstarts/hls-visualization.qmd)
56
+
57
+
It comes down to querying for STAC items (timesteps) and then asking the Raster API for `tilejson.json` specifications for the items you are interested in.
58
+
59
+
Once you retrieved the WMTS or XYZ layer URLs this way, you can use them seamlessly with all mapping clients.
0 commit comments