fbpx
Wikipedia

Spatial reference system

A spatial reference system (SRS) or coordinate reference system (CRS) is a framework used to precisely measure locations on the surface of the Earth as coordinates. It is thus the application of the abstract mathematics of coordinate systems and analytic geometry to geographic space. A particular SRS specification (for example, "Universal Transverse Mercator WGS 84 Zone 16N") comprises a choice of Earth ellipsoid, horizontal datum, map projection (except in the geographic coordinate system), origin point, and unit of measure. Thousands of coordinate systems have been specified for use around the world or in specific regions and for various purposes, necessitating transformations between different SRS.

Although they date to the Hellenic Period, spatial reference systems are now a crucial basis for the sciences and technologies of Geoinformatics, including cartography, geographic information systems, surveying, remote sensing, and civil engineering. This has led to their standardization in international specifications such as the EPSG codes[1] and ISO 19111:2007 Geographic information—Spatial referencing by coordinates, prepared by ISO/TC 211, also published by the Open Geospatial Consortium as Abstract Specification, Topic 2: Spatial referencing by coordinate.[2]

Types of systems

 
Earth centered, Earth fixed coordinates in relation to latitude and longitude.

The thousands of spatial reference systems used today are based on a few general strategies, which have been defined in the EPSG, ISO, and OGC standards:[1][2]

Geographic coordinate system (or geodetic)
A spherical coordinate system measuring locations directly on the Earth (modeled as a sphere or ellipsoid) using latitude (degrees north or south of the equator) and longitude (degrees west or east of a prime meridian).
Geocentric coordinate system (or Earth-centered Earth-fixed)
A three-dimensional cartesian coordinate system that models the Earth as a three-dimensional object, measuring locations from a center point, usually the center of mass of the Earth, along x, y, and z axes aligned with the equator and the prime meridian. This system is commonly used to track the orbits of satellites, because they are based on the center of mass. Thus, this is the internal coordinate system used by Satellite navigation systems such as GPS to compute locations using multilateration.
Projected coordinate system (or planar, grid)
 
Layout of a UTM coordinate system.
A standardized cartesian coordinate system that models the Earth (or more commonly, a large region thereof) as a plane, measuring locations from an arbitrary origin point along x and y axes more or less aligned with the cardinal directions. Each of these systems is based on a particular Map projection to create a planar surface from the curved Earth surface. These are generally defined and used strategically to minimize the distortions inherent to projections. Common examples include the Universal transverse mercator (UTM) and national systems such as the British National Grid, and State Plane Coordinate System (SPCS).
Engineering coordinate system (or local, custom)
A cartesian coordinate system (2-D or 3-D) that is created bespoke for a small area, often a single engineering project, over which the curvature of the Earth can be safely approximated as flat without significant distortion. Locations are typically measured directly from an arbitrary origin point using surveying techniques. These may or may not be aligned with a standard projected coordinate system. Local tangent plane coordinates are a type of local coordinate system used in aviation and marine vehicles.

These standards acknowledge that standard reference systems also exist for measuring elevation using vertical datums and time (e.g. ISO 8601), which may be combined with a spatial reference system to form a compound coordinate system for representing three-dimensional and/or spatio-temporal locations. There are also internal systems for measuring location within the context of an object, such as the rows and columns of pixels in a raster image, Linear referencing measurements along linear features (e.g., highway mileposts), and systems for specifying location within moving objects such as ships. The latter two are often classified as subcategories of engineering coordinate systems.

Components

The goal of any spatial reference system is to create a common reference frame in which locations can be measured precisely and consistently as coordinates, which can then be shared unambiguously, so that any recipient can identify the same location that was originally intended by the originator.[3] To accomplish this, any coordinate reference system definition needs to be composed of several specifications:

  • A coordinate system, an abstract framework for measuring locations. Like any mathematical coordinate system, its definition consists of a measurable space (whether a plane, a three-dimension void, or the surface of an object such as the Earth), an origin point, a set of axis vectors emanating from the origin, and a unit of measure.
  • A horizontal datum, which binds the abstract coordinate system to the real space of the Earth. A horizontal datum can be defined as a precise reference framework for measuring geographic coordinates (latitude and longitude). Examples include the World Geodetic System and the 1927 and 1983 North American Datum. A datum generally consists of an estimate of the shape of the Earth (usually an ellipsoid), and one or more anchor points or control points, established locations (often marked by physical monuments) for which the measurement is documented.
  • A definition for a projected CRS must also include a choice of map projection to convert the spherical coordinates specified by the datum into cartesian coordinates on a planar surface.

Thus, a CRS definition will typically consist of a "stack" of dependent specifications, as exemplified in the following table:

EPSG Code Name Ellipsoid Horizontal Datum CS Type Projection Origin Axes Unit of Measure
4326 GCS WGS 84 GRS 80 WGS 84 ellipsoidal (lat, lon) N/A equator/prime meridian equator, prime meridian degree of arc
26717 UTM Zone 17N NAD 27 Clarke 1866 NAD 27 cartesian (x,y) Transverse Mercator: central meridian 81°W, scaled 0.9996 500km west of (81°W, 0°N) equator, 81°W meridian meter
6576 SPCS Tennessee Zone NAD 83 (2011) ftUS GRS 80 NAD 83 (2011 epoch) cartesian (x,y) Lambert Conformal Conic: center 86°W, 34°20'N, standard parallels 35°15'N, 36°25'N 600km grid west of center point grid east at center point, 86°W meridian US survey foot

Examples by continent

Examples of systems around the world are:

Asia

Europe

North America

Worldwide

Identifiers

A Spatial Reference System Identifier (SRID) is a unique value used to unambiguously identify projected, unprojected, and local spatial coordinate system definitions. These coordinate systems form the heart of all GIS applications.

Virtually all major spatial vendors have created their own SRID implementation or refer to those of an authority, such as the EPSG Geodetic Parameter Dataset.

SRIDs are the primary key for the Open Geospatial Consortium (OGC) spatial_ref_sys metadata table for the Simple Features for SQL Specification, Versions 1.1 and 1.2, which is defined as follows:

CREATE TABLE SPATIAL_REF_SYS (  SRID INTEGER NOT NULL PRIMARY KEY,  AUTH_NAME CHARACTER VARYING(256),  AUTH_SRID INTEGER,  SRTEXT CHARACTER VARYING(2048) ) 

In spatially enabled databases (such as IBM Db2, IBM Informix, Ingres, Microsoft SQL Server, MonetDB, MySQL, Oracle RDBMS, Teradata, PostGIS, SQL Anywhere and Vertica), SRIDs are used to uniquely identify the coordinate systems used to define columns of spatial data or individual spatial objects in a spatial column (depending on the spatial implementation). SRIDs are typically associated with a well-known text (WKT) string definition of the coordinate system (SRTEXT, above). Here are two common coordinate systems with their EPSG SRID value followed by their WKT:

UTM, Zone 17N, NAD27 — SRID 2029:

PROJCS["NAD27(76) / UTM zone 17N", GEOGCS["NAD27(76)", DATUM["North_American_Datum_1927_1976", SPHEROID["Clarke 1866",6378206.4,294.9786982138982, AUTHORITY["EPSG","7008"]], AUTHORITY["EPSG","6608"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.01745329251994328, AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4608"]], UNIT["metre",1, AUTHORITY["EPSG","9001"]], PROJECTION["Transverse_Mercator"], PARAMETER["latitude_of_origin",0], PARAMETER["central_meridian",-81], PARAMETER["scale_factor",0.9996], PARAMETER["false_easting",500000], PARAMETER["false_northing",0], AUTHORITY["EPSG","2029"], AXIS["Easting",EAST], AXIS["Northing",NORTH]] 

WGS84 — SRID 4326

GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0, AUTHORITY["EPSG","8901"]], UNIT["degree",0.01745329251994328, AUTHORITY["EPSG","9122"]], AUTHORITY["EPSG","4326"]] 

SRID values associated with spatial data can be used to constrain spatial operations — for instance, spatial operations cannot be performed between spatial objects with differing SRIDs in some systems, or trigger coordinate system transformations between spatial objects in others.

See also

References

  1. ^ a b "Using the EPSG geodetic parameter dataset, Guidance Note 7-1". EPSG Geodetic Parameter Dataset. Geomatic Solutions. Retrieved 15 December 2021.
  2. ^ a b "OGC Abstract Specification Topic 2: Referencing by coordinates Corrigendum". Open Geospatial Consortium. Retrieved 2018-12-25.
  3. ^ (PDF), D00659 v2.3, Ordnance Survey, 2020, p. 11, archived from the original (PDF) on 24 September 2015, retrieved 2021-12-16

External links

  • spatialreference.org – A website that defines spatial reference systems, in a variety of formats.
  • OpenGIS Specifications (Standards)
  • OpenGIS Simple Features Specification for CORBA (99-054)
  • OpenGIS Simple Features Specification for OLE/COM (99-050)
  • OpenGIS Simple Features Specification for SQL (99-054, 05-134, 06-104r3)
  • OGR — library implementing relevant OGC standards
  • EPSG Geodetic Parameter Registry - search engine for EPSG defined reference systems
  • EPSG.io/ - Full text search indexing over 6000 coordinate systems
  • Galdos Systems INdicio CRS Registry

spatial, reference, system, srid, redirects, here, polyhedron, rhombicosidodecahedron, spatial, reference, system, coordinate, reference, system, framework, used, precisely, measure, locations, surface, earth, coordinates, thus, application, abstract, mathemat. SRID redirects here For the polyhedron see Rhombicosidodecahedron A spatial reference system SRS or coordinate reference system CRS is a framework used to precisely measure locations on the surface of the Earth as coordinates It is thus the application of the abstract mathematics of coordinate systems and analytic geometry to geographic space A particular SRS specification for example Universal Transverse Mercator WGS 84 Zone 16N comprises a choice of Earth ellipsoid horizontal datum map projection except in the geographic coordinate system origin point and unit of measure Thousands of coordinate systems have been specified for use around the world or in specific regions and for various purposes necessitating transformations between different SRS Although they date to the Hellenic Period spatial reference systems are now a crucial basis for the sciences and technologies of Geoinformatics including cartography geographic information systems surveying remote sensing and civil engineering This has led to their standardization in international specifications such as the EPSG codes 1 and ISO 19111 2007 Geographic information Spatial referencing by coordinates prepared by ISO TC 211 also published by the Open Geospatial Consortium as Abstract Specification Topic 2 Spatial referencing by coordinate 2 Contents 1 Types of systems 2 Components 3 Examples by continent 3 1 Asia 3 2 Europe 3 3 North America 3 4 Worldwide 4 Identifiers 5 See also 6 References 7 External linksTypes of systems Edit Earth centered Earth fixed coordinates in relation to latitude and longitude The thousands of spatial reference systems used today are based on a few general strategies which have been defined in the EPSG ISO and OGC standards 1 2 Geographic coordinate system or geodetic A spherical coordinate system measuring locations directly on the Earth modeled as a sphere or ellipsoid using latitude degrees north or south of the equator and longitude degrees west or east of a prime meridian Geocentric coordinate system or Earth centered Earth fixed A three dimensional cartesian coordinate system that models the Earth as a three dimensional object measuring locations from a center point usually the center of mass of the Earth along x y and z axes aligned with the equator and the prime meridian This system is commonly used to track the orbits of satellites because they are based on the center of mass Thus this is the internal coordinate system used by Satellite navigation systems such as GPS to compute locations using multilateration Projected coordinate system or planar grid Layout of a UTM coordinate system A standardized cartesian coordinate system that models the Earth or more commonly a large region thereof as a plane measuring locations from an arbitrary origin point along x and y axes more or less aligned with the cardinal directions Each of these systems is based on a particular Map projection to create a planar surface from the curved Earth surface These are generally defined and used strategically to minimize the distortions inherent to projections Common examples include the Universal transverse mercator UTM and national systems such as the British National Grid and State Plane Coordinate System SPCS Engineering coordinate system or local custom A cartesian coordinate system 2 D or 3 D that is created bespoke for a small area often a single engineering project over which the curvature of the Earth can be safely approximated as flat without significant distortion Locations are typically measured directly from an arbitrary origin point using surveying techniques These may or may not be aligned with a standard projected coordinate system Local tangent plane coordinates are a type of local coordinate system used in aviation and marine vehicles These standards acknowledge that standard reference systems also exist for measuring elevation using vertical datums and time e g ISO 8601 which may be combined with a spatial reference system to form a compound coordinate system for representing three dimensional and or spatio temporal locations There are also internal systems for measuring location within the context of an object such as the rows and columns of pixels in a raster image Linear referencing measurements along linear features e g highway mileposts and systems for specifying location within moving objects such as ships The latter two are often classified as subcategories of engineering coordinate systems Components EditThe goal of any spatial reference system is to create a common reference frame in which locations can be measured precisely and consistently as coordinates which can then be shared unambiguously so that any recipient can identify the same location that was originally intended by the originator 3 To accomplish this any coordinate reference system definition needs to be composed of several specifications A coordinate system an abstract framework for measuring locations Like any mathematical coordinate system its definition consists of a measurable space whether a plane a three dimension void or the surface of an object such as the Earth an origin point a set of axis vectors emanating from the origin and a unit of measure A horizontal datum which binds the abstract coordinate system to the real space of the Earth A horizontal datum can be defined as a precise reference framework for measuring geographic coordinates latitude and longitude Examples include the World Geodetic System and the 1927 and 1983 North American Datum A datum generally consists of an estimate of the shape of the Earth usually an ellipsoid and one or more anchor points or control points established locations often marked by physical monuments for which the measurement is documented A definition for a projected CRS must also include a choice of map projection to convert the spherical coordinates specified by the datum into cartesian coordinates on a planar surface Thus a CRS definition will typically consist of a stack of dependent specifications as exemplified in the following table EPSG Code Name Ellipsoid Horizontal Datum CS Type Projection Origin Axes Unit of Measure4326 GCS WGS 84 GRS 80 WGS 84 ellipsoidal lat lon N A equator prime meridian equator prime meridian degree of arc26717 UTM Zone 17N NAD 27 Clarke 1866 NAD 27 cartesian x y Transverse Mercator central meridian 81 W scaled 0 9996 500km west of 81 W 0 N equator 81 W meridian meter6576 SPCS Tennessee Zone NAD 83 2011 ftUS GRS 80 NAD 83 2011 epoch cartesian x y Lambert Conformal Conic center 86 W 34 20 N standard parallels 35 15 N 36 25 N 600km grid west of center point grid east at center point 86 W meridian US survey footExamples by continent EditExamples of systems around the world are Asia Edit Chinese Global Navigation Grid Code China Israeli Cassini Soldner Israel Israeli Transverse Mercator Israel Jordan Transverse Mercator JordanEurope Edit British national grid reference system Britain Lambert 93 fr the official projection in Metropolitan France Hellenic Geodetic Reference System 1987 Greece Irish grid reference system Ireland Irish Transverse Mercator Ireland SWEREF 99 sv SwedenNorth America Edit United States National Grid USWorldwide Edit Universal Transverse Mercator coordinate system Lambert conformal conic projection International mapcode system Military Grid Reference SystemIdentifiers EditA Spatial Reference System Identifier SRID is a unique value used to unambiguously identify projected unprojected and local spatial coordinate system definitions These coordinate systems form the heart of all GIS applications Virtually all major spatial vendors have created their own SRID implementation or refer to those of an authority such as the EPSG Geodetic Parameter Dataset SRIDs are the primary key for the Open Geospatial Consortium OGC spatial ref sys metadata table for the Simple Features for SQL Specification Versions 1 1 and 1 2 which is defined as follows CREATE TABLE SPATIAL REF SYS SRID INTEGER NOT NULL PRIMARY KEY AUTH NAME CHARACTER VARYING 256 AUTH SRID INTEGER SRTEXT CHARACTER VARYING 2048 In spatially enabled databases such as IBM Db2 IBM Informix Ingres Microsoft SQL Server MonetDB MySQL Oracle RDBMS Teradata PostGIS SQL Anywhere and Vertica SRIDs are used to uniquely identify the coordinate systems used to define columns of spatial data or individual spatial objects in a spatial column depending on the spatial implementation SRIDs are typically associated with a well known text WKT string definition of the coordinate system SRTEXT above Here are two common coordinate systems with their EPSG SRID value followed by their WKT UTM Zone 17N NAD27 SRID 2029 PROJCS NAD27 76 UTM zone 17N GEOGCS NAD27 76 DATUM North American Datum 1927 1976 SPHEROID Clarke 1866 6378206 4 294 9786982138982 AUTHORITY EPSG 7008 AUTHORITY EPSG 6608 PRIMEM Greenwich 0 AUTHORITY EPSG 8901 UNIT degree 0 01745329251994328 AUTHORITY EPSG 9122 AUTHORITY EPSG 4608 UNIT metre 1 AUTHORITY EPSG 9001 PROJECTION Transverse Mercator PARAMETER latitude of origin 0 PARAMETER central meridian 81 PARAMETER scale factor 0 9996 PARAMETER false easting 500000 PARAMETER false northing 0 AUTHORITY EPSG 2029 AXIS Easting EAST AXIS Northing NORTH WGS84 SRID 4326 GEOGCS WGS 84 DATUM WGS 1984 SPHEROID WGS 84 6378137 298 257223563 AUTHORITY EPSG 7030 AUTHORITY EPSG 6326 PRIMEM Greenwich 0 AUTHORITY EPSG 8901 UNIT degree 0 01745329251994328 AUTHORITY EPSG 9122 AUTHORITY EPSG 4326 SRID values associated with spatial data can be used to constrain spatial operations for instance spatial operations cannot be performed between spatial objects with differing SRIDs in some systems or trigger coordinate system transformations between spatial objects in others See also EditEngineering datum Geodesy Geodetic datum Georeferencing Geographic coordinate systems Geographic information system GIS Grid reference List of National Coordinate Reference SystemsReferences Edit a b Using the EPSG geodetic parameter dataset Guidance Note 7 1 EPSG Geodetic Parameter Dataset Geomatic Solutions Retrieved 15 December 2021 a b OGC Abstract Specification Topic 2 Referencing by coordinates Corrigendum Open Geospatial Consortium Retrieved 2018 12 25 A guide to coordinate systems in Great Britain PDF D00659 v2 3 Ordnance Survey 2020 p 11 archived from the original PDF on 24 September 2015 retrieved 2021 12 16External links Edit Wikidata has the property spatial reference system P3037 see uses spatialreference org A website that defines spatial reference systems in a variety of formats OpenGIS Specifications Standards OpenGIS Simple Features Specification for CORBA 99 054 OpenGIS Simple Features Specification for OLE COM 99 050 OpenGIS Simple Features Specification for SQL 99 054 05 134 06 104r3 OGR library implementing relevant OGC standards EPSG Geodetic Parameter Registry search engine for EPSG defined reference systems EPSG io Full text search indexing over 6000 coordinate systems Galdos Systems INdicio CRS Registry Retrieved from https en wikipedia org w index php title Spatial reference system amp oldid 1132254580, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.