Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix indentation for example product #1384

Merged
merged 2 commits into from Jan 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/about/whats_new.rst
Expand Up @@ -23,7 +23,7 @@ v1.8.next
- Fix deprecation message due to distutils Version classes (:pull: `1375`)
- Postgresql drivers cleanup - consolidate split_uri into utils and removed unused constants (:pull: `1378`)
- Postgresql drivers cleanup - Handle NaNs in search fields and allow caching in sanitise_extent (:pull: `1379`)

- Fix example product yaml documentation (:pull: `1384`)

v1.8.9 (17 November 2022)
=========================
Expand Down
15 changes: 9 additions & 6 deletions docs/installation/product-definitions.rst
Expand Up @@ -16,11 +16,11 @@ and some very basic information about the product
metadata_type: eo3

metadata:
product:
product:
name: dem_srtm

measurements:
- name: elevation
- name: elevation
dtype: int16
nodata: -32768.0
units: "metre"
Expand All @@ -39,17 +39,20 @@ known when loading data.
license: CC-BY-4.0

metadata:
product:
product:
name: dem_srtm

storage:
crs: EPSG:4326
tile_size:
x: 100000.0
y: 100000.0
resolution:
longitude: 0.000277777777780
latitude: -0.000277777777780
longitude: 0.000277777777780
latitude: -0.000277777777780

measurements:
- name: elevation
- name: elevation
dtype: int16
nodata: -32768.0
units: "metre"
Expand Down