Procedure of transforming coordinates?datum conversion with GDALHow do I convert EPSG:26986 coordinate pairs...
Can you reject a postdoc offer after the PI has paid a large sum for flights/accommodation for your visit?
Why is this plane circling around the Lucknow airport every day?
What do you call the air that rushes into your car in the highway?
Why doesn't this Google Translate ad use the word "Translation" instead of "Translate"?
String reversal in Python
Is having access to past exams cheating and, if yes, could it be proven just by a good grade?
A question on the ultrafilter number
PTIJ: How can I halachically kill a vampire?
How do I deal with a powergamer in a game full of beginners in a school club?
Word for a person who has no opinion about whether god exists
"One can do his homework in the library"
Algorithm to convert a fixed-length string to the smallest possible collision-free representation?
Does a Catoblepas statblock appear in an official D&D 5e product?
Do Bugbears' arms literally get longer when it's their turn?
Space in array system equations
How could our ancestors have domesticated a solitary predator?
Grey hair or white hair
BitNot does not flip bits in the way I expected
Time travel short story where dinosaur doesn't taste like chicken
How are such low op-amp input currents possible?
Latest web browser compatible with Windows 98
Solving "Resistance between two nodes on a grid" problem in Mathematica
How do I express some one as a black person?
Placing subfig vertically
Procedure of transforming coordinates?
datum conversion with GDALHow do I convert EPSG:26986 coordinate pairs to EPSG:4326 from the MassGIS web service, the Linux command-line, or PHP?Transforming coordinates between wgs84 and UTM ED50 31N, what am I missing?What system do these coordinates use? (from LinkedGeoData.org)Using proj to convert EPSG:2263 to WGS84Transforming coordinates from WGS84 to Gauss-Krüger 5Is a Helmert transform necessary to convert between WGS84 and NAD83?Convert from EPSG:27700 to latitude and longitudeQGIS 3.0 is showing a point's coordinates in the original spatial reference system instead of the project's spatial reference systemLoading NAD83 and WGS84 layers together in QGIS?What does it mean to reproject a satellite image from utm (zone 13N) to wgs84?
I'm trying to understand the math behind this transformation. I should note that I've been able to perform the transformation using geopandas, but I'd like to understand what is going on under the hood.
I've got this dataset of ZIP code polygons from NYC open data, that appears to be using NAD83 / New York Long Island (ftUS) (EPSG:2263), and I'm trying to transform it to WGS84 (EPSG:4326).
How do I turn (for example) (986038.6614370644, 213051.06312088
) into (-73.99354429600449, 40.75145227487899
).
wgs84 mathematics nad83 projection-mathematics
New contributor
add a comment |
I'm trying to understand the math behind this transformation. I should note that I've been able to perform the transformation using geopandas, but I'd like to understand what is going on under the hood.
I've got this dataset of ZIP code polygons from NYC open data, that appears to be using NAD83 / New York Long Island (ftUS) (EPSG:2263), and I'm trying to transform it to WGS84 (EPSG:4326).
How do I turn (for example) (986038.6614370644, 213051.06312088
) into (-73.99354429600449, 40.75145227487899
).
wgs84 mathematics nad83 projection-mathematics
New contributor
Use the available modules.. the math is quite complicated. OGR as a part of GDAL contains OSR which is an open source suite of utilities and APIs available for various languages. From memory NAD83 needs a geographic transformation to get to WGS84 (but I'm not an expert on Northern Hemisphere datums) read a bit more here: gis.stackexchange.com/questions/88262/… . If you have Esri software you will need to specify the datum transformation which could be mathematical or a grid of displacement vectors (eg: NTv2).
– Michael Stimson
1 hour ago
add a comment |
I'm trying to understand the math behind this transformation. I should note that I've been able to perform the transformation using geopandas, but I'd like to understand what is going on under the hood.
I've got this dataset of ZIP code polygons from NYC open data, that appears to be using NAD83 / New York Long Island (ftUS) (EPSG:2263), and I'm trying to transform it to WGS84 (EPSG:4326).
How do I turn (for example) (986038.6614370644, 213051.06312088
) into (-73.99354429600449, 40.75145227487899
).
wgs84 mathematics nad83 projection-mathematics
New contributor
I'm trying to understand the math behind this transformation. I should note that I've been able to perform the transformation using geopandas, but I'd like to understand what is going on under the hood.
I've got this dataset of ZIP code polygons from NYC open data, that appears to be using NAD83 / New York Long Island (ftUS) (EPSG:2263), and I'm trying to transform it to WGS84 (EPSG:4326).
How do I turn (for example) (986038.6614370644, 213051.06312088
) into (-73.99354429600449, 40.75145227487899
).
wgs84 mathematics nad83 projection-mathematics
wgs84 mathematics nad83 projection-mathematics
New contributor
New contributor
edited 43 secs ago
Taras
2,1972726
2,1972726
New contributor
asked 2 hours ago
Alex LauniAlex Launi
1061
1061
New contributor
New contributor
Use the available modules.. the math is quite complicated. OGR as a part of GDAL contains OSR which is an open source suite of utilities and APIs available for various languages. From memory NAD83 needs a geographic transformation to get to WGS84 (but I'm not an expert on Northern Hemisphere datums) read a bit more here: gis.stackexchange.com/questions/88262/… . If you have Esri software you will need to specify the datum transformation which could be mathematical or a grid of displacement vectors (eg: NTv2).
– Michael Stimson
1 hour ago
add a comment |
Use the available modules.. the math is quite complicated. OGR as a part of GDAL contains OSR which is an open source suite of utilities and APIs available for various languages. From memory NAD83 needs a geographic transformation to get to WGS84 (but I'm not an expert on Northern Hemisphere datums) read a bit more here: gis.stackexchange.com/questions/88262/… . If you have Esri software you will need to specify the datum transformation which could be mathematical or a grid of displacement vectors (eg: NTv2).
– Michael Stimson
1 hour ago
Use the available modules.. the math is quite complicated. OGR as a part of GDAL contains OSR which is an open source suite of utilities and APIs available for various languages. From memory NAD83 needs a geographic transformation to get to WGS84 (but I'm not an expert on Northern Hemisphere datums) read a bit more here: gis.stackexchange.com/questions/88262/… . If you have Esri software you will need to specify the datum transformation which could be mathematical or a grid of displacement vectors (eg: NTv2).
– Michael Stimson
1 hour ago
Use the available modules.. the math is quite complicated. OGR as a part of GDAL contains OSR which is an open source suite of utilities and APIs available for various languages. From memory NAD83 needs a geographic transformation to get to WGS84 (but I'm not an expert on Northern Hemisphere datums) read a bit more here: gis.stackexchange.com/questions/88262/… . If you have Esri software you will need to specify the datum transformation which could be mathematical or a grid of displacement vectors (eg: NTv2).
– Michael Stimson
1 hour ago
add a comment |
0
active
oldest
votes
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
});
}
});
Alex Launi is a new contributor. Be nice, and check out our Code of Conduct.
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%2f315306%2fprocedure-of-transforming-coordinates%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Alex Launi is a new contributor. Be nice, and check out our Code of Conduct.
Alex Launi is a new contributor. Be nice, and check out our Code of Conduct.
Alex Launi is a new contributor. Be nice, and check out our Code of Conduct.
Alex Launi is a new contributor. Be nice, and check out our Code of Conduct.
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%2f315306%2fprocedure-of-transforming-coordinates%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
Use the available modules.. the math is quite complicated. OGR as a part of GDAL contains OSR which is an open source suite of utilities and APIs available for various languages. From memory NAD83 needs a geographic transformation to get to WGS84 (but I'm not an expert on Northern Hemisphere datums) read a bit more here: gis.stackexchange.com/questions/88262/… . If you have Esri software you will need to specify the datum transformation which could be mathematical or a grid of displacement vectors (eg: NTv2).
– Michael Stimson
1 hour ago