Skip to content

Commit 2262696

Browse files
authored
minor doc sweep (geopython#1864)
1 parent 0cf470a commit 2262696

File tree

7 files changed

+16
-18
lines changed

7 files changed

+16
-18
lines changed

docs/source/configuration.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ The ``metadata`` section provides settings for overall service metadata and desc
131131
- api
132132
keywords_type: theme # keyword type as per the ISO 19115 MD_KeywordTypeCode codelist. Accepted values are discipline, temporal, place, theme, stratum
133133
terms_of_service: https://creativecommons.org/licenses/by/4.0/ # terms of service
134-
url: http://example.org # informative URL about the service
134+
url: https://example.org # informative URL about the service
135135
license: # licensing details
136136
name: CC-BY 4.0 license
137137
url: https://creativecommons.org/licenses/by/4.0/
@@ -648,5 +648,5 @@ At this point, you have the configuration ready to administer the server.
648648
.. _`JSON-LD`: https://json-ld.org
649649
.. _`Google Structured Data Testing Tool`: https://search.google.com/structured-data/testing-tool#url=https%3A%2F%2Fdemo.pygeoapi.io%2Fmaster
650650
.. _`Google Dataset Search`: https://developers.google.com/search/docs/appearance/structured-data/dataset
651-
.. _RotatingFileHandler: http://docs.python.org/3/library/logging.handlers.html#rotatingfilehandler
652-
.. _TimedRotatingFileHandler: http://docs.python.org/3/library/logging.handlers.html#timedrotatingfilehandler
651+
.. _RotatingFileHandler: https://docs.python.org/3/library/logging.handlers.html#rotatingfilehandler
652+
.. _TimedRotatingFileHandler: https://docs.python.org/3/library/logging.handlers.html#timedrotatingfilehandler

docs/source/data-publishing/ogcapi-coverages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Data access examples
148148
``.../coverage`` queries which return an alternative representation to CoverageJSON (which prompt a download)
149149
will have the response filename matching the collection name and appropriate file extension (e.g. ``my-dataset.nc``)
150150

151-
.. _`OGC API - Coverages`: https://github.com/opengeospatial/ogcapi-coverages
151+
.. _`OGC API - Coverages`: https://ogcapi.ogc.org/coverages
152152
.. _`Rasterio`: https://rasterio.readthedocs.io
153153
.. _`Xarray`: https://docs.xarray.dev/en/stable
154154
.. _`NetCDF`: https://en.wikipedia.org/wiki/NetCDF

docs/source/data-publishing/ogcapi-edr.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,4 @@ Data access examples
114114
.. _`NetCDF`: https://en.wikipedia.org/wiki/NetCDF
115115
.. _`Zarr`: https://zarr.readthedocs.io/en/stable
116116
.. _`pyproj.CRS.from_user_input`: https://pyproj4.github.io/pyproj/stable/api/crs/coordinate_system.html#pyproj.crs.CoordinateSystem.from_user_input
117-
118-
119-
.. _`OGC Environmental Data Retrieval (EDR) (API)`: https://github.com/opengeospatial/ogcapi-coverages
117+
.. _`OGC Environmental Data Retrieval (EDR) (API)`: https://ogcapi.ogc.org/edr

docs/source/data-publishing/ogcapi-features.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ Data access examples
813813
.. _`Feature Service`: https://enterprise.arcgis.com/en/server/latest/publish-services/windows/what-is-a-feature-service-.htm
814814
.. _`Map Service`: https://enterprise.arcgis.com/en/server/latest/publish-services/windows/what-is-a-map-service.htm
815815
.. _`Google Cloud SQL`: https://cloud.google.com/sql
816-
.. _`OGC API - Features`: https://www.ogc.org/standards/ogcapi-features
816+
.. _`OGC API - Features`: https://ogcapi.ogc.org/features
817817
.. _`Socrata Open Data API (SODA)`: https://dev.socrata.com
818818
.. _`sodapy`: https://github.com/xmunoz/sodapy
819819
.. _`Tabledap`: https://coastwatch.pfeg.noaa.gov/erddap/tabledap/documentation.html

docs/source/data-publishing/ogcapi-tiles.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ Following code block shows how to configure pygeoapi to read Mapbox vector tiles
120120
- type: tile
121121
name: MVT-proxy
122122
data: http://localhost:3000/ne_50m_admin_0_countries/{z}/{x}/{y}
123-
options:
124-
zoom:
125-
min: 0
126-
max: 15
127-
schemes:
123+
options:
124+
zoom:
125+
min: 0
126+
max: 15
127+
schemes:
128128
- WebMercatorQuad
129129
format:
130130
name: pbf
@@ -183,7 +183,7 @@ Data access examples
183183

184184

185185

186-
.. _`OGC API - Tiles`: https://github.com/opengeospatial/ogcapi-tiles
186+
.. _`OGC API - Tiles`: https://ogcapi.ogc.org/tiles
187187
.. _`tippecanoe`: https://github.com/mapbox/tippecanoe
188188
.. _`Elasticsearch`: https://www.elastic.co/
189189
.. _`Mapbox Vector Tiles`: https://docs.mapbox.com/data/tilesets/guides/vector-tiles-introduction/

docs/source/data-publishing/stac.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ The example below shows the content of a file named *arcticdem-frontiere-0.json*
334334
],
335335
"assets": {
336336
"image": {
337-
"href": "http://absolute/path/to/the/ressource/arcticdem-frontiere-0.tif",
337+
"href": "https://example.com/path/to/resource/arcticdem-frontiere-0.tif",
338338
"type": "image/tiff; application=geotiff; profile=cloud-optimized",
339339
"roles": []
340340
}

docs/source/language.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ End user guide
1515
There are 2 ways to affect the language of the results returned by pygeoapi, both for the HTML and JSON(-LD) formats:
1616

1717
1. After the requested pygeoapi URL, append a ``lang=<code>`` query parameter, where ``<code>`` should be replaced by a well-known language code.
18-
This can be an ISO 639-1 code (e.g. `de` for German), optionally accompanied by an ISO 3166-1 alpha-2 country code (e.g. `de-CH` for Swiss-German).
19-
Please refer to this `W3C article <https://www.w3.org/International/articles/language-tags/>`_ for more information or
20-
this `list of language codes <http://www.lingoes.net/en/translator/langcode.htm>`_ for more examples.
18+
This can be an `ISO 639-1 code <https://www.loc.gov/standards/iso639-2/php/code_list.php>`_ (e.g. `de` for German), optionally accompanied by an `ISO 3166-1 alpha-2 country code <https://www.iso.org/obp/ui/#search>`_ (e.g. `de-CH` for Swiss-German).
19+
20+
Please refer to this `W3C article <https://www.w3.org/International/articles/language-tags/>`_ for more information.
2121
Another option is to send a complex definition with quality weights (e.g. `de-CH, de;q=0.9, en;q=0.8, fr;q=0.7, \*;q=0.5`).
2222
pygeoapi will then figure out the best match for the requested language.
2323

0 commit comments

Comments
 (0)