Skip to content

Commit be82b9c

Browse files
committed
Made tests happy-ish
1 parent 17ea530 commit be82b9c

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
### Fixed
2020

21-
[Unreleased]: <https://github.com/stac-extensions/template/compare/v1.0.0...HEAD>
21+
[Unreleased]: <https://github.com/stac-extensions/processing/compare/v1.0.0...HEAD>

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@
77
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal
88
- **Owner**: @emmanuelmathot
99

10-
Processing metadata is considered to be data that indicate from which processing chain a data originates and how the data itself has been produced. Overall, it helps to increase traceability and search among processing levels and multiple algorithm versions.
10+
Processing metadata is considered to be data that indicate from which processing chain a data originates and how the data itself has been produced. \
11+
Overall, it helps to increase traceability and search among processing levels and multiple algorithm versions.
1112

12-
Often, data items are the result of one or more waterfall processing pipeline. Tracing information such as the processing facility, the algorithm version or the processing date helps in the data version management.
13+
Often, data items are the result of one or more waterfall processing pipeline. Tracing information such as the processing facility, \
14+
the algorithm version or the processing date helps in the data version management.
1315

14-
This extension applies to STAC Items and STAC Collections. As these processing information are often closely bound to the Collection level and therefore are shared across all items, it is recommended adding the fields to the corresponding STAC Collection.
16+
This extension applies to STAC Items and STAC Collections. As these processing information are often closely bound to the Collection level \
17+
and therefore are shared across all items, it is recommended adding the fields to the corresponding STAC Collection.
1518

1619
- Examples:
1720
- [Item example](examples/item.json): Shows the basic usage of the extension in a STAC Item
@@ -21,8 +24,9 @@ This extension applies to STAC Items and STAC Collections. As these processing i
2124

2225
## Item Properties and Collection Fields
2326

24-
* For Items, the fields are placed in the properties. Additionally, STAC allows all Item properties to be used in the Asset Object.
25-
* For Collections, the fields are placed in the [Provider Objects](https://github.com/radiantearth/stac-spec/blob/master/collection-spec/collection-spec.md#provider-object) for the `providers` that have the role `producer` or `processor` assigned.
27+
- For Items, the fields are placed in the properties. Additionally, STAC allows all Item properties to be used in the Asset Object.
28+
- For Collections, the fields are placed in the [Provider Objects](https://github.com/radiantearth/stac-spec/blob/master/collection-spec/collection-spec.md#provider-object) \
29+
for the `providers` that have the role `producer` or `processor` assigned.
2630

2731
| Field Name | Type | Description |
2832
| ----------------------- | ------------------- | ----------- |
@@ -43,9 +47,11 @@ In Items that declare this `processing` extension, it is recommended to add one
4347

4448
### Suggested Processing Levels
4549

46-
The `processing:level` is the name that is commonly used to refer to that processing level properties. The table below shows some processing level used by the industry for some data product.
50+
The `processing:level` is the name that is commonly used to refer to that processing level properties. \
51+
The table below shows some processing level used by the industry for some data product.
4752

48-
Each level represents a step in the abstraction process by which data relevant to physical information (raw, level 0, level 1) are turned into data relevant to geo physical information (level 2, level 3), and finally turned into data relevant to thematic information (level4)
53+
Each level represents a step in the abstraction process by which data relevant to physical information (raw, level 0, level 1) \
54+
are turned into data relevant to geo physical information (level 2, level 3), and finally turned into data relevant to thematic information (level4)
4955

5056
This list is not exhaustive and can be extended with the processing level specific to a data product.
5157

@@ -62,8 +68,7 @@ This list is not exhaustive and can be extended with the processing level specif
6268

6369
The [extensions page](https://stac-extensions.github.io/) gives an overview about related extensions. Of particular relevance to processing levels:
6470

65-
* the [Sat Extension Specification](https://github.com/stac-extensions/sat/blob/main/README.md) to describe data collected from a satellite.
66-
71+
- the [Sat Extension Specification](https://github.com/stac-extensions/sat/blob/main/README.md) to describe data collected from a satellite.
6772

6873
## Relation types
6974

@@ -72,5 +77,4 @@ The following types should be used as applicable `rel` types in the
7277

7378
| Type | Description |
7479
| ------------------- | ----------- |
75-
| derived_from | URL to a STAC Item that was used as input data in the creation of this Item.
76-
|
80+
| derived_from | URL to a STAC Item that was used as input data in the creation of this Item. |

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"scripts": {
55
"test": "npm run check-markdown && npm run check-examples",
66
"check-markdown": "remark . -f -r .github/remark.yaml",
7-
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/template/v1.0.0/schema.json=./json-schema/schema.json",
8-
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/template/v1.0.0/schema.json=./json-schema/schema.json"
7+
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/processing/v1.0.0/schema.json=./json-schema/schema.json",
8+
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/processing/v1.0.0/schema.json=./json-schema/schema.json"
99
},
1010
"dependencies": {
1111
"remark-cli": "^8.0.0",

0 commit comments

Comments
 (0)