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

Commit

Permalink
fix CRS URIs
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik committed Mar 30, 2016
1 parent 72ff685 commit 5b46ee3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/referencing.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
const OPENGIS_CRS_PREFIX = 'http://www.opengis.net/def/crs/'

/** 3D WGS84 in lat-lon-height order */
const EPSG4979 = OPENGIS_CRS_PREFIX + '/EPSG/0/4979'
const EPSG4979 = OPENGIS_CRS_PREFIX + 'EPSG/0/4979'

/** 2D WGS84 in lat-lon order */
const EPSG4326 = OPENGIS_CRS_PREFIX + '/EPSG/0/4326'
const EPSG4326 = OPENGIS_CRS_PREFIX + 'EPSG/0/4326'

/** 2D WGS84 in lon-lat order */
const CRS84 = OPENGIS_CRS_PREFIX + '/OGC/1.3/CRS84'
const CRS84 = OPENGIS_CRS_PREFIX + 'OGC/1.3/CRS84'

/** CRSs in which position is specified by geodetic latitude and longitude */
const EllipsoidalCRSs = [EPSG4979, EPSG4326, CRS84]
Expand Down

0 comments on commit 5b46ee3

Please sign in to comment.