SRID and Name relationship
PostGIS comes with a table of spatial reference systems with each one being identitfied by a SRID. However, from a user's perspective, SRID is just a number and doesn't tell them much. Is there a resource that associates SRID with more descriptive names?
coordinate-system srid
add a comment |
PostGIS comes with a table of spatial reference systems with each one being identitfied by a SRID. However, from a user's perspective, SRID is just a number and doesn't tell them much. Is there a resource that associates SRID with more descriptive names?
coordinate-system srid
1
...thesrtext
column of said table holds the OGC WKT representation with the standardized details of each CRS.
– ThingumaBob
Jan 27 at 18:14
Thanks! I had looked at that column initially and thought it had too much info. But upon looking at it again, I realize that I can just parse the text and extract the parts I need. I accepted your answer.
– user57029
Jan 27 at 23:09
add a comment |
PostGIS comes with a table of spatial reference systems with each one being identitfied by a SRID. However, from a user's perspective, SRID is just a number and doesn't tell them much. Is there a resource that associates SRID with more descriptive names?
coordinate-system srid
PostGIS comes with a table of spatial reference systems with each one being identitfied by a SRID. However, from a user's perspective, SRID is just a number and doesn't tell them much. Is there a resource that associates SRID with more descriptive names?
coordinate-system srid
coordinate-system srid
edited Jan 27 at 18:36
Vince
14.8k32749
14.8k32749
asked Jan 27 at 17:58
user57029user57029
624
624
1
...thesrtext
column of said table holds the OGC WKT representation with the standardized details of each CRS.
– ThingumaBob
Jan 27 at 18:14
Thanks! I had looked at that column initially and thought it had too much info. But upon looking at it again, I realize that I can just parse the text and extract the parts I need. I accepted your answer.
– user57029
Jan 27 at 23:09
add a comment |
1
...thesrtext
column of said table holds the OGC WKT representation with the standardized details of each CRS.
– ThingumaBob
Jan 27 at 18:14
Thanks! I had looked at that column initially and thought it had too much info. But upon looking at it again, I realize that I can just parse the text and extract the parts I need. I accepted your answer.
– user57029
Jan 27 at 23:09
1
1
...the
srtext
column of said table holds the OGC WKT representation with the standardized details of each CRS.– ThingumaBob
Jan 27 at 18:14
...the
srtext
column of said table holds the OGC WKT representation with the standardized details of each CRS.– ThingumaBob
Jan 27 at 18:14
Thanks! I had looked at that column initially and thought it had too much info. But upon looking at it again, I realize that I can just parse the text and extract the parts I need. I accepted your answer.
– user57029
Jan 27 at 23:09
Thanks! I had looked at that column initially and thought it had too much info. But upon looking at it again, I realize that I can just parse the text and extract the parts I need. I accepted your answer.
– user57029
Jan 27 at 23:09
add a comment |
3 Answers
3
active
oldest
votes
If you want/need to have more info from within PostGIS, running something like
SELECT srid,
left(split_part(srtext, '"', 1), -1) AS "type",
split_part(srtext, '"', 2) AS "name",
split_part((regexp_split_to_array(srtext, 'UNIT["'))[array_length(regexp_split_to_array(srtext, 'UNIT["'), 1)], '"', 1) AS units
FROM spatial_ref_sys
WHERE srid IN (4326, 32632);
results in
srid | type | name | units
-------+--------+-----------------------+--------
4326 | GEOGCS | WGS 84 | degree
32632 | PROJCS | WGS 84 / UTM zone 32N | metre
I never wanted to learn regexp logic any better than this. Obviously, you could scan the whole WKT string for anything you need to know. And improve on the above, especially the units
expression...
Alternatively, query the spatial_ref_sys.srtext
or spatial_ref_sys.proj4text
columns to get either the whole OGC WKT representation or the proj4 definition of each SRID.
add a comment |
A good modern web resource is epsg.io
It's "modern" because it has been synchronized to recent versions of the EPSG reference database, as stated at the bottom of the web page. It's source is available on GitHub.
It's also pretty easy to use. For example, SRID=4326, here is the description web page and links to various formats:
- http://epsg.io/4326
- http://epsg.io/4326.wkt
- http://epsg.io/4326.esriwkt
- http://epsg.io/4326.gml
- http://epsg.io/4326.proj4
- http://epsg.io/4326.sql
add a comment |
I use http://spatialreference.org and http://www.epsg-registry.org.
spatialreference.org has the spatial reference information in numerous formats:
And EPSG has an access database you download:
3
Note that spatialreference.org was last updated in 2013, and was made from an older/outdated version of the EPSG database. The webpage was abandoned, and there are no plans to update it.
– Mike T
Jan 27 at 22:45
Didn't realise that. Who owns the domain and runs the site?
– Jay Cummins
Jan 27 at 22:59
1
@JayCummins see about for who set it up. They are excellent folks in the opensource geospatial community, and are happy for anyone to take the keys and catch up to the modern world
– Mike T
Jan 27 at 23:49
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f310050%2fsrid-and-name-relationship%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you want/need to have more info from within PostGIS, running something like
SELECT srid,
left(split_part(srtext, '"', 1), -1) AS "type",
split_part(srtext, '"', 2) AS "name",
split_part((regexp_split_to_array(srtext, 'UNIT["'))[array_length(regexp_split_to_array(srtext, 'UNIT["'), 1)], '"', 1) AS units
FROM spatial_ref_sys
WHERE srid IN (4326, 32632);
results in
srid | type | name | units
-------+--------+-----------------------+--------
4326 | GEOGCS | WGS 84 | degree
32632 | PROJCS | WGS 84 / UTM zone 32N | metre
I never wanted to learn regexp logic any better than this. Obviously, you could scan the whole WKT string for anything you need to know. And improve on the above, especially the units
expression...
Alternatively, query the spatial_ref_sys.srtext
or spatial_ref_sys.proj4text
columns to get either the whole OGC WKT representation or the proj4 definition of each SRID.
add a comment |
If you want/need to have more info from within PostGIS, running something like
SELECT srid,
left(split_part(srtext, '"', 1), -1) AS "type",
split_part(srtext, '"', 2) AS "name",
split_part((regexp_split_to_array(srtext, 'UNIT["'))[array_length(regexp_split_to_array(srtext, 'UNIT["'), 1)], '"', 1) AS units
FROM spatial_ref_sys
WHERE srid IN (4326, 32632);
results in
srid | type | name | units
-------+--------+-----------------------+--------
4326 | GEOGCS | WGS 84 | degree
32632 | PROJCS | WGS 84 / UTM zone 32N | metre
I never wanted to learn regexp logic any better than this. Obviously, you could scan the whole WKT string for anything you need to know. And improve on the above, especially the units
expression...
Alternatively, query the spatial_ref_sys.srtext
or spatial_ref_sys.proj4text
columns to get either the whole OGC WKT representation or the proj4 definition of each SRID.
add a comment |
If you want/need to have more info from within PostGIS, running something like
SELECT srid,
left(split_part(srtext, '"', 1), -1) AS "type",
split_part(srtext, '"', 2) AS "name",
split_part((regexp_split_to_array(srtext, 'UNIT["'))[array_length(regexp_split_to_array(srtext, 'UNIT["'), 1)], '"', 1) AS units
FROM spatial_ref_sys
WHERE srid IN (4326, 32632);
results in
srid | type | name | units
-------+--------+-----------------------+--------
4326 | GEOGCS | WGS 84 | degree
32632 | PROJCS | WGS 84 / UTM zone 32N | metre
I never wanted to learn regexp logic any better than this. Obviously, you could scan the whole WKT string for anything you need to know. And improve on the above, especially the units
expression...
Alternatively, query the spatial_ref_sys.srtext
or spatial_ref_sys.proj4text
columns to get either the whole OGC WKT representation or the proj4 definition of each SRID.
If you want/need to have more info from within PostGIS, running something like
SELECT srid,
left(split_part(srtext, '"', 1), -1) AS "type",
split_part(srtext, '"', 2) AS "name",
split_part((regexp_split_to_array(srtext, 'UNIT["'))[array_length(regexp_split_to_array(srtext, 'UNIT["'), 1)], '"', 1) AS units
FROM spatial_ref_sys
WHERE srid IN (4326, 32632);
results in
srid | type | name | units
-------+--------+-----------------------+--------
4326 | GEOGCS | WGS 84 | degree
32632 | PROJCS | WGS 84 / UTM zone 32N | metre
I never wanted to learn regexp logic any better than this. Obviously, you could scan the whole WKT string for anything you need to know. And improve on the above, especially the units
expression...
Alternatively, query the spatial_ref_sys.srtext
or spatial_ref_sys.proj4text
columns to get either the whole OGC WKT representation or the proj4 definition of each SRID.
answered Jan 27 at 22:24
ThingumaBobThingumaBob
6,3251424
6,3251424
add a comment |
add a comment |
A good modern web resource is epsg.io
It's "modern" because it has been synchronized to recent versions of the EPSG reference database, as stated at the bottom of the web page. It's source is available on GitHub.
It's also pretty easy to use. For example, SRID=4326, here is the description web page and links to various formats:
- http://epsg.io/4326
- http://epsg.io/4326.wkt
- http://epsg.io/4326.esriwkt
- http://epsg.io/4326.gml
- http://epsg.io/4326.proj4
- http://epsg.io/4326.sql
add a comment |
A good modern web resource is epsg.io
It's "modern" because it has been synchronized to recent versions of the EPSG reference database, as stated at the bottom of the web page. It's source is available on GitHub.
It's also pretty easy to use. For example, SRID=4326, here is the description web page and links to various formats:
- http://epsg.io/4326
- http://epsg.io/4326.wkt
- http://epsg.io/4326.esriwkt
- http://epsg.io/4326.gml
- http://epsg.io/4326.proj4
- http://epsg.io/4326.sql
add a comment |
A good modern web resource is epsg.io
It's "modern" because it has been synchronized to recent versions of the EPSG reference database, as stated at the bottom of the web page. It's source is available on GitHub.
It's also pretty easy to use. For example, SRID=4326, here is the description web page and links to various formats:
- http://epsg.io/4326
- http://epsg.io/4326.wkt
- http://epsg.io/4326.esriwkt
- http://epsg.io/4326.gml
- http://epsg.io/4326.proj4
- http://epsg.io/4326.sql
A good modern web resource is epsg.io
It's "modern" because it has been synchronized to recent versions of the EPSG reference database, as stated at the bottom of the web page. It's source is available on GitHub.
It's also pretty easy to use. For example, SRID=4326, here is the description web page and links to various formats:
- http://epsg.io/4326
- http://epsg.io/4326.wkt
- http://epsg.io/4326.esriwkt
- http://epsg.io/4326.gml
- http://epsg.io/4326.proj4
- http://epsg.io/4326.sql
answered Jan 27 at 22:44
Mike TMike T
32k685131
32k685131
add a comment |
add a comment |
I use http://spatialreference.org and http://www.epsg-registry.org.
spatialreference.org has the spatial reference information in numerous formats:
And EPSG has an access database you download:
3
Note that spatialreference.org was last updated in 2013, and was made from an older/outdated version of the EPSG database. The webpage was abandoned, and there are no plans to update it.
– Mike T
Jan 27 at 22:45
Didn't realise that. Who owns the domain and runs the site?
– Jay Cummins
Jan 27 at 22:59
1
@JayCummins see about for who set it up. They are excellent folks in the opensource geospatial community, and are happy for anyone to take the keys and catch up to the modern world
– Mike T
Jan 27 at 23:49
add a comment |
I use http://spatialreference.org and http://www.epsg-registry.org.
spatialreference.org has the spatial reference information in numerous formats:
And EPSG has an access database you download:
3
Note that spatialreference.org was last updated in 2013, and was made from an older/outdated version of the EPSG database. The webpage was abandoned, and there are no plans to update it.
– Mike T
Jan 27 at 22:45
Didn't realise that. Who owns the domain and runs the site?
– Jay Cummins
Jan 27 at 22:59
1
@JayCummins see about for who set it up. They are excellent folks in the opensource geospatial community, and are happy for anyone to take the keys and catch up to the modern world
– Mike T
Jan 27 at 23:49
add a comment |
I use http://spatialreference.org and http://www.epsg-registry.org.
spatialreference.org has the spatial reference information in numerous formats:
And EPSG has an access database you download:
I use http://spatialreference.org and http://www.epsg-registry.org.
spatialreference.org has the spatial reference information in numerous formats:
And EPSG has an access database you download:
edited Jan 27 at 21:50
answered Jan 27 at 18:14
Jay CumminsJay Cummins
10.5k544104
10.5k544104
3
Note that spatialreference.org was last updated in 2013, and was made from an older/outdated version of the EPSG database. The webpage was abandoned, and there are no plans to update it.
– Mike T
Jan 27 at 22:45
Didn't realise that. Who owns the domain and runs the site?
– Jay Cummins
Jan 27 at 22:59
1
@JayCummins see about for who set it up. They are excellent folks in the opensource geospatial community, and are happy for anyone to take the keys and catch up to the modern world
– Mike T
Jan 27 at 23:49
add a comment |
3
Note that spatialreference.org was last updated in 2013, and was made from an older/outdated version of the EPSG database. The webpage was abandoned, and there are no plans to update it.
– Mike T
Jan 27 at 22:45
Didn't realise that. Who owns the domain and runs the site?
– Jay Cummins
Jan 27 at 22:59
1
@JayCummins see about for who set it up. They are excellent folks in the opensource geospatial community, and are happy for anyone to take the keys and catch up to the modern world
– Mike T
Jan 27 at 23:49
3
3
Note that spatialreference.org was last updated in 2013, and was made from an older/outdated version of the EPSG database. The webpage was abandoned, and there are no plans to update it.
– Mike T
Jan 27 at 22:45
Note that spatialreference.org was last updated in 2013, and was made from an older/outdated version of the EPSG database. The webpage was abandoned, and there are no plans to update it.
– Mike T
Jan 27 at 22:45
Didn't realise that. Who owns the domain and runs the site?
– Jay Cummins
Jan 27 at 22:59
Didn't realise that. Who owns the domain and runs the site?
– Jay Cummins
Jan 27 at 22:59
1
1
@JayCummins see about for who set it up. They are excellent folks in the opensource geospatial community, and are happy for anyone to take the keys and catch up to the modern world
– Mike T
Jan 27 at 23:49
@JayCummins see about for who set it up. They are excellent folks in the opensource geospatial community, and are happy for anyone to take the keys and catch up to the modern world
– Mike T
Jan 27 at 23:49
add a comment |
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f310050%2fsrid-and-name-relationship%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
...the
srtext
column of said table holds the OGC WKT representation with the standardized details of each CRS.– ThingumaBob
Jan 27 at 18:14
Thanks! I had looked at that column initially and thought it had too much info. But upon looking at it again, I realize that I can just parse the text and extract the parts I need. I accepted your answer.
– user57029
Jan 27 at 23:09