Skip to content

Commit df0ce6a

Browse files
authored
Change CRS URLs to HTTPS and fix text formatting
Updated URLs to use HTTPS and corrected hyphenation in text.
1 parent 8c66234 commit df0ce6a

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

standard/clause_specification_text.adoc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ Example of a two-dimensional geographic CRS (longitude-latitude):
352352
```json
353353
{
354354
"type": "GeographicCRS",
355-
"id": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
355+
"id": "https://www.opengis.net/def/crs/OGC/1.3/CRS84"
356356
}
357357
```
358358

@@ -362,7 +362,7 @@ Example of a three-dimensional geographic CRS (latitude-longitude-height):
362362
```json
363363
{
364364
"type": "GeographicCRS",
365-
"id": "http://www.opengis.net/def/crs/EPSG/0/4979"
365+
"id": "https://www.opengis.net/def/crs/EPSG/0/4979"
366366
}
367367
```
368368
Example of a two-dimensional geographic CRS (longitude-latitude) that needs a separate datum:
@@ -395,7 +395,7 @@ Example of a projected CRS using the http://spatialreference.org/ref/epsg/osgb-1
395395
```json
396396
{
397397
"type": "ProjectedCRS",
398-
"id": "http://www.opengis.net/def/crs/EPSG/0/27700"
398+
"id": "https://www.opengis.net/def/crs/EPSG/0/27700"
399399
"description": "British National Grid, United Kingdom Ordnance Survey"
400400
}
401401
```
@@ -427,7 +427,7 @@ Example of a vertical CRS, here representing height above the NAVD88 datum in me
427427
```json
428428
{
429429
"type": "VerticalCRS",
430-
"id": "http://www.opengis.net/def/crs/EPSG/0/5703"
430+
"id": "https://www.opengis.net/def/crs/EPSG/0/5703"
431431
"description": "North American Vertical Datum 1988"
432432
}
433433
```
@@ -441,7 +441,7 @@ In the original version, V1.0, of this Community Standard, only a string-based n
441441

442442
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”).
443443

444-
The temporal datum, also know as an epoch, for both kinds of Temporal Reference Systems is always specified as a calendar based string.
444+
The temporal datum, also know as an epoch, for both kinds of Temporal Reference Systems is always specified as a calendar-based string.
445445

446446
- A temporal RS object MUST have a member `"type"`. The only currently defined values are `"TemporalRS"` or `"TemporalCRS"`.
447447
- A temporal RS object MUST have a member `"calendar"` with value `"Gregorian"` or a URI.
@@ -462,7 +462,7 @@ The temporal datum, also know as an epoch, for both kinds of Temporal Reference
462462
//#### 6.2.1 Temporal calendar-based Reference Systems
463463
===== Temporal, calendar-based, Reference Systems
464464

465-
A Temporal Reference System used a calendar-based string notation to specify a date-time with respect to an epoch.
465+
A Temporal Reference System uses a calendar-based string notation to specify a date-time with respect to an epoch.
466466

467467
Example of a calendar-based Temporal Reference System:
468468

@@ -473,6 +473,7 @@ Example of a calendar-based Temporal Reference System:
473473
"calendar": "Gregorian"
474474
}
475475
```
476+
476477
//#### 6.2.2 Temporal Coordinate Reference Systems
477478
===== Temporal Coordinate Reference Systems
478479

0 commit comments

Comments
 (0)