Skip to content

Add sat:acquisition_station field and update dependencies #13

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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/remark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ plugins:
- space
# Tables
- remark-lint-table-pipes
- remark-lint-no-literal-urls
- remark-lint-no-literal-urls
26 changes: 17 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,16 @@ It will often be combined with other extensions that describe the actual data, s

## Item Properties

| Field Name | Type | Description |
| ------------------------------------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| sat:platform_international_designator | string | The International Designator, also known as COSPAR ID, and NSSDCA ID |
| sat:orbit_state | string | The state of the orbit. Either `ascending` or `descending` for polar orbiting satellites, or `geostationary` for geosynchronous satellites |
| sat:absolute_orbit | integer | The absolute orbit number at the time of acquisition. |
| sat:relative_orbit | integer | The relative orbit number at the time of acquisition. |
| sat:orbit_cycle | integer | The number of repeat cycle done by the satellite at the time of the acquisition. [Repeat cycle](https://ltb.itc.utwente.nl/page/498/concept/81577) is the time between two successive identical orbits. |
| sat:orbit_state_vectors | Map<string, \[number]> | The state vectors of the satellite at the time of acquisition. |
| sat:anx_datetime | string | The [Ascending Node](https://en.wikipedia.org/wiki/Orbital_node) Crossing (ANX) time, in UTC. It is formatted according to [RFC 3339, section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6). |
| Field Name | Type | Description |
| ------------------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| sat:platform_international_designator | string | The International Designator, also known as COSPAR ID, and NSSDCA ID |
| sat:orbit_state | string | The state of the orbit. Either `ascending` or `descending` for polar orbiting satellites, or `geostationary` for geosynchronous satellites |
| sat:absolute_orbit | integer | The absolute orbit number at the time of acquisition. |
| sat:relative_orbit | integer | The relative orbit number at the time of acquisition. |
| sat:orbit_cycle | integer | The number of repeat cycle done by the satellite at the time of the acquisition. [Repeat cycle](https://ltb.itc.utwente.nl/page/498/concept/81577) is the time between two successive identical orbits. |
| sat:orbit_state_vectors | Map<string, \[number]> | The state vectors of the satellite at the time of acquisition. |
| sat:anx_datetime | string | The [Ascending Node](https://en.wikipedia.org/wiki/Orbital_node) Crossing (ANX) time, in UTC. It is formatted according to [RFC 3339, section 5.6](https://tools.ietf.org/html/rfc3339#section-5.6). |
| sat:acquisition_station | string | The acquisition station (ground station) where the satellite data was downlinked. Equivalent to `eop:acquisition_station` in OGC 10-157r4 and OGC 17-003r2. |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this (for L0 data?) the same as processing:facility?


*At least one of the fields must be specified.*

Expand Down Expand Up @@ -120,6 +121,13 @@ Example:
It is recommended that the state vectors are provided in a separate file and referenced as a link with relationship type `sat:osv`.
The file should correspond to the example above.

#### sat:acquisition_station

The ground station where the satellite data was downlinked. This information is crucial for data lineage and provenance tracking,
as it identifies the first point of data reception on Earth. In the context of Earth Observation missions, this corresponds to the
`eop:acquisitionStation` in OGC standards (10-157r4 and 17-003r2). This field can be used for filtering datasets based on the
ground station used for downlinking, which can be relevant for certain processing workflows or quality assessments.

## Relation types

The following types should be used as applicable `rel` types in the
Expand Down
1 change: 1 addition & 0 deletions examples/example-landsat8.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
],
"constellation": "landsat",
"sat:orbit_state": "ascending",
"sat:acquisition_station": "LGS",
"view:off_nadir": 0
},
"assets": {
Expand Down
1 change: 1 addition & 0 deletions examples/example-sentinel1.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
-5604.210861145829
]
},
"sat:acquisition_station": "PDGS Matera",
"sar:instrument_mode": "IW",
"sar:polarizations": [
"VV",
Expand Down
8 changes: 8 additions & 0 deletions json-schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@
"required": [
"sat:orbit_state_vectors"
]
},
{
"required": [
"sat:acquisition_station"
]
}
]
},
Expand Down Expand Up @@ -153,6 +158,9 @@
}
},
"additionalProperties": false
},
"sat:acquisition_station": {
"type": "string"
}
},
"patternProperties": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"remark-validate-links": "^13.0.0",
"stac-node-validator": "^1.3.0"
}
}
}