We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b9d21d commit 719709cCopy full SHA for 719709c
README.md
@@ -13,7 +13,21 @@ given WCS endpoint.
13
14
# Examples
15
16
+```python
17
+from wcs.service import WebCoverageService
18
19
+wcs_endpoint = "https://ows.rasdaman.org/rasdaman/ows"
20
+service = WebCoverageService(wcs_endpoint)
21
+
22
+# get a list of all coverages, with basic information such
23
+# as a WGS 84 bounding box and a native bounding box
24
+coverages = service.list_coverages()
25
+avg_land_temp = coverages['AvgLandTemp']
26
27
+# get full information for a particular coverage by
28
+# parsing its DescribeCoverage document from the WCS server
29
+full_avg_land_temp = service.list_full_info('AvgLandTemp')
30
+```
31
32
# Contributing
33
0 commit comments