Skip to content

Commit

Permalink
Merge pull request #37 from opengeospatial/hotfix/removeduplicate
Browse files Browse the repository at this point in the history
remove duplicate text
  • Loading branch information
doublebyte1 authored Dec 11, 2023
2 parents 83a2a13 + b3c010a commit 5805179
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 41 deletions.
19 changes: 1 addition & 18 deletions workshop/content/docs/api-deep-dive/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -677,9 +677,7 @@ through the request

### Client usage

Various clients/softwares supports OGC API - Features, You can checkout latest list [here](https://github.com/opengeospatial/ogcapi-features/blob/master/implementations/clients/README.md)

In this workshop we'll check a client example ( Leaflet and OpenLayers ), Software example (QGIS), Native API example (GDAL) and also server example ( pygeoapi )
In this workshop we'll check a client example ( Leaflet and OpenLayers ), Software example (QGIS), Native API example (GDAL)

#### Leaflet

Expand Down Expand Up @@ -776,21 +774,6 @@ INFO: Open of `OAPIF:https://demo.ldproxy.net/zoomstack'
21: woodland (title: Woodland) (Polygon)
```

#### pygeoapi

[pygeoapi](https://pygeoapi.io) allows users to create data publishing various vector formats (ESRI Shapefile, GeoJSON, GeoPackage, CSV, etc.) and also data connections (PostGIS, Elasticsearch, etc.) and expose them via OGC API - Features, which then can be used via URLs such as follows:

```bash
# get all collection information
https://demo.pygeoapi.io/master/collections?f=json
# get all features in `Lakes` data
https://demo.pygeoapi.io/master/collections/lakes/items?f=json
# get single feature in `Lakes`
https://demo.pygeoapi.io/master/collections/lakes/items/1?f=json
```

## Summary

OGC API - Features provides functionality for working with vector data on the Web. This deep dive
Expand Down
23 changes: 0 additions & 23 deletions workshop/content/docs/api-deep-dive/tiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -568,8 +568,6 @@ You can see [here](https://maps.gnosis.earth/ogcapi/collections/blueMarble/map/t

### Client usage

Various software supports the OGC API - Tiles standard (see <https://github.com/opengeospatial/ogcapi-tiles/blob/master/implementations.adoc#clients> for a list of supporting implementations).

In this section we will demonstrate examples using OpenLayers, QGIS, and pygeoap.

#### OpenLayers
Expand Down Expand Up @@ -616,27 +614,6 @@ Recent Verion of QGIS supports adding OGC API - Tiles under adding `new raster d

![qgis_tiles](../assets/images/qgis_tiles.png){width="100.0%"}

#### pygeoapi

This code block shows how to configure pygeoapi to read Mapbox vector tiles, from disk or a URL.

```yaml
providers:
- type: tile
name: MVT
data: tests/data/tiles/ne_110m_lakes # local directory tree
# data: http://localhost:9000/ne_110m_lakes/{z}/{x}/{y}.pbf # tiles stored on a MinIO bucket
options:
metadata_format: default # default | tilejson
zoom:
min: 0
max: 5
schemes:
- WorldCRS84Quad
format:
name: pbf
mimetype: application/vnd.mapbox-vector-tile
```

## Summary

Expand Down

0 comments on commit 5805179

Please sign in to comment.