Skip to content

Commit 53d33d5

Browse files
Merge branch 'main' into acq_station
2 parents 2e6d73d + 8bd80ce commit 53d33d5

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
### Added
1010

11+
- Added `crossing` value to `sat:orbit_state` for acquisitions spanning a polar crossing ([#1](https://github.com/stac-extensions/sat/issues/1))
12+
1113
### Changed
1214

1315
### Deprecated

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ It will often be combined with other extensions that describe the actual data, s
2424
| Field Name | Type | Description |
2525
| ------------------------------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
2626
| sat:platform_international_designator | string | The International Designator, also known as COSPAR ID, and NSSDCA ID |
27-
| sat:orbit_state | string | The state of the orbit. Either `ascending` or `descending` for polar orbiting satellites, or `geostationary` for geosynchronous satellites |
27+
| sat:orbit_state | string | The state of the orbit. Either `ascending` or `descending` for polar orbiting satellites, `geostationary` for geosynchronous satellites, or `crossing` when the acquisition spans a polar crossing. |
2828
| sat:absolute_orbit | integer | The absolute orbit number at the start of acquisition. |
2929
| sat:relative_orbit | integer | The relative orbit number at the start of acquisition. |
3030
| 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. |
@@ -43,9 +43,11 @@ and is an international identifier assigned to artificial objects in space.
4343

4444
#### sat:orbit_state
4545

46-
Indicates the type and current state of orbit. Satellites are either geosynchronous in which case they have one state:
47-
`geostationary`, or they are sun synchronous (i.e., polar orbiting satellites) in which case they are either `ascending` or
46+
Indicates the type and current state of orbit. Satellites are either geosynchronous in which case they have one state:
47+
`geostationary`, or they are sun synchronous (i.e., polar orbiting satellites) in which case they are either `ascending` or
4848
`descending`. For sun synchronous satellites it is daytime during one of these states, and nighttime during the other.
49+
If the acquisition spans a polar crossing (i.e., the satellite transitions between ascending and descending during the
50+
acquisition), the value `crossing` shall be used.
4951

5052
#### sat:absolute_orbit
5153

json-schema/schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@
125125
"enum": [
126126
"ascending",
127127
"descending",
128-
"geostationary"
128+
"geostationary",
129+
"crossing"
129130
]
130131
},
131132
"sat:absolute_orbit": {

0 commit comments

Comments
 (0)