You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: standard/clause_specification_text.adoc
+38-15Lines changed: 38 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -329,8 +329,8 @@ Reference system objects are used to provide information about how to interpret
329
329
330
330
[[geospatial_coordinate_reference_systems]]
331
331
//### 6.1. Geospatial Coordinate Reference Systems
332
-
==== Geospatial Coordinate Reference Systemn
333
-
Geospatial coordinate reference systems (CRSs) link coordinate values to the Earth. The fixed, stable, position on the Earth for anchoring the CRS is called a `datum`. A CRS definition may have a specific datum included, so that the CRS is complete. Other CRS definitions may rely on a separate datum definition that has to be specified explicitly. For example, if long term precision and accuracy of coordinates are required, the datum may be defined as fixed to a specific continental tectonic plate.
332
+
==== Geospatial Coordinate Reference Systems
333
+
Geospatial Coordinate Reference Systems (CRSs) link coordinate values to the Earth. The fixed, stable, position on the Earth for anchoring the CRS is called a `datum`. A CRS definition may have a specific datum included, so that the CRS is complete. Other CRS definitions may rely on a separate datum definition that has to be specified explicitly. For example, if long term precision and accuracy of coordinates are required, the datum may be defined as fixed to a specific continental tectonic plate.
334
334
335
335
//#### 6.1.1 Geographic Coordinate Reference Systems
336
336
===== Geographic Coordinate Reference Systems
@@ -365,7 +365,7 @@ Example of a three-dimensional geographic CRS (latitude-longitude-height):
Example of a projected CRS using ta separate datum:
400
+
Example of a projected CRS using a separate datum:
401
401
402
402
[%unnumbered%]
403
403
```json
@@ -408,14 +408,14 @@ Example of a projected CRS using ta separate datum:
408
408
}
409
409
```
410
410
411
-
412
411
//#### 6.1.3 Vertical Coordinate Reference Systems
413
412
===== Vertical Coordinate Reference Systems
414
413
415
414
Vertical CRSs use a single coordinate to denote some measure of height or depth, usually approximately oriented with gravity.
416
415
417
416
- The value of the `"type"` member MUST be "VerticalCRS"
418
417
- The object MAY have an `"id"` member, whose value MUST be a string and SHOULD be a common identifier for the reference system.
418
+
- The object MAY have a `"datum"` member if the identified reference system definition does not specify a datum.
419
419
- The object MAY have a `"description"` member, where the value MUST be an i18n object, but no standardised content is interpreted from this description.
420
420
421
421
Example of a vertical CRS, here representing height above the NAVD88 datum in metres:
@@ -432,10 +432,10 @@ Example of a vertical CRS, here representing height above the NAVD88 datum in me
432
432
//### 6.2. Temporal Reference Systems
433
433
==== Temporal Reference Systems
434
434
435
-
Time is referenced by a temporal reference system (temporal RS). A Temporal Reference System may be Calendar based, using dat-time specified with strings, or may be a Temporal Coordinate Reference System, using numeric values rather than strings.
436
-
In the orignal version, V1.0, of this Community Standard, only a string-based notation for time values is defined.
435
+
Time is referenced by a Temporal Reference System (TemporalRS). A Temporal Reference System may be calendar-based, using date-time specified with strings, or may be a Temporal Coordinate Reference System (TemporalCRS), using numeric values rather than strings.
436
+
In the original version, V1.0, of this Community Standard, only a string-based notation for time values was defined.
437
437
438
-
This version, v1.0.1, of the Community Standard allows for the alternative notation, allowing the recording of time values as numeric offsets from a given temporal datum (e.g. “days since 1970-01-01”).
438
+
This version, V1.0.1, of the Community Standard allows for the alternative notation, allowing the recording of time values as numeric offsets from a given fixed temporal datum (e.g. “days since 1970-01-01”).
439
439
440
440
The temporal datum, also know as an epoch, for both kinds of Temporal Reference Systems is always specified as a calendar based string.
441
441
@@ -455,7 +455,12 @@ The temporal datum, also know as an epoch, for both kinds of Temporal Reference
455
455
a client SHOULD interpret those dates in that reduced precision.
456
456
- If `"type"` is `"TemporalRS"` and `"calendar"` is `"Gregorian"`, then the above lexical representation MUST be used.
457
457
458
-
Example of a calendar based Temporal Reference System:
458
+
//#### 6.2.1 Temporal calendar-based Reference Systems
459
+
===== Temporal, calendar-based, Reference Systems
460
+
461
+
A Temporal Reference System used a calendar-based string notation to specify a date-time with respect to an epoch.
462
+
463
+
Example of a calendar-based Temporal Reference System:
459
464
460
465
[%unnumbered%]
461
466
```json
@@ -464,22 +469,40 @@ Example of a calendar based Temporal Reference System:
464
469
"calendar": "Gregorian"
465
470
}
466
471
```
472
+
//#### 6.2.2 Temporal Coordinate Reference Systems
473
+
===== Temporal Coordinate Reference Systems
474
+
475
+
Temporal CRSs use a single coordinate with numerical values to denote some measure of time using a single unit of time.
476
+
477
+
The value of the `"type"` member MUST be "TemporalCRS"
478
+
- The object MAY have an `"id"` member, whose value MUST be a string and SHOULD be a common identifier for the reference system.
479
+
- The object MAY have a `"datum"` member if the identified Temporal Coordinate Reference System definition does not specify a datum.
480
+
- The object MAY have a `"description"` member, where the value MUST be an i18n object, but no standardised content is interpreted from this description.
467
481
468
482
Example of a Temporal Coordinate Reference System:
469
483
470
484
[%unnumbered%]
471
485
```json
472
486
{
473
487
"type": "TemporalCRS",
474
-
"description": "Unix Time in Seconds, not milliseconds"
The value of the `"type"` member MUST be "TemporalCRS"
481
-
- The object MAY have an `"id"` member, whose value MUST be a string and SHOULD be a common identifier for the reference system.
482
-
- The object MAY have a `"description"` member, where the value MUST be an i18n object, but no standardised content is interpreted from this description.
0 commit comments