Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Prefer epsg #90

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ Example of a three-dimensional geographic CRS (latitude-longitude-height):
```json
{
"type": "GeographicCRS",
"id": "http://www.opengis.net/def/crs/EPSG/0/4979"
"id": "https://www.epsg-registry.org/export.htm?wkt=urn:ogc:def:crs:EPSG::4979"
}
```

Expand All @@ -383,12 +383,12 @@ Projected CRSs use two coordinates to denote positions on a Cartesian plane, whi

If a Coverage conforms to one of the defined [domain types][domain-types] then the coordinate identifier `"x"` is used to denote easting and `"y"` is used for northing.

Example of a projected CRS (here [British National Grid](http://spatialreference.org/ref/epsg/osgb-1936-british-national-grid/)):
Example of a projected CRS (here [British National Grid](https://www.epsg-registry.org/export.htm?wkt=urn:ogc:def:crs:EPSG::27700)):

```json
{
"type": "ProjectedCRS",
"id": "http://www.opengis.net/def/crs/EPSG/0/27700"
"id": "https://www.epsg-registry.org/export.htm?wkt=urn:ogc:def:crs:EPSG::27700"
}
```

Expand All @@ -403,7 +403,7 @@ Example of a vertical CRS, here representing height above the NAV88 datum:
```json
{
"type": "VerticalCRS",
"id": "http://www.opengis.net/def/crs/EPSG/0/5703"
"id": "https://www.epsg-registry.org/export.htm?wkt=urn:ogc:def:crs:EPSG::5703"
}
```

Expand Down Expand Up @@ -608,7 +608,7 @@ Example of a reference system connection object:
"coordinates": ["y","x","z"],
"system": {
"type": "GeographicCRS",
"id": "http://www.opengis.net/def/crs/EPSG/0/4979"
"id": "https://www.epsg-registry.org/export.htm?wkt=urn:ogc:def:crs:EPSG::4979"
}
}
```
Expand Down Expand Up @@ -637,7 +637,7 @@ Example of a domain object with [`"Grid"`][domain-types] domain type:
"coordinates": ["y","x","z"],
"system": {
"type": "GeographicCRS",
"id": "http://www.opengis.net/def/crs/EPSG/0/4979"
"id": "https://www.epsg-registry.org/export.htm?wkt=urn:ogc:def:crs:EPSG::4979"
}
}]
}
Expand Down