QGIS3 shows coordinate in geographic coordinates though QGIS project and layer are both in projected CRS
up vote
1
down vote
favorite
The CRS of the data I am using is in geographic CRS (WGS 84 EPSG:4326), but I want to work in projected CRS which for my case is in UTM 32N, EPSG 25832. I am working on modifying polygons with the advanced digitizing panel which only works on projected CRS.
I am able to project the layer and also set the project CRS to EPSG 25832, but the coordinates (marked in screen-shot) is always shown in lat/lon. Also when I use the digitizing toolbox to modify the position of the feature, the unit shown in the panel are also lat/lon, which is strange because the CAD tool does not support geographic coordinates (I cant use the tool when the project CRS is set to geographic CRS).
Any idea what the issue is? I am working with QGIS 3.4.1, and in QGIS 3.2 I have the same problem. I tried QGIS 2.18 where I don't have this issue.
qgis coordinate-system
add a comment |
up vote
1
down vote
favorite
The CRS of the data I am using is in geographic CRS (WGS 84 EPSG:4326), but I want to work in projected CRS which for my case is in UTM 32N, EPSG 25832. I am working on modifying polygons with the advanced digitizing panel which only works on projected CRS.
I am able to project the layer and also set the project CRS to EPSG 25832, but the coordinates (marked in screen-shot) is always shown in lat/lon. Also when I use the digitizing toolbox to modify the position of the feature, the unit shown in the panel are also lat/lon, which is strange because the CAD tool does not support geographic coordinates (I cant use the tool when the project CRS is set to geographic CRS).
Any idea what the issue is? I am working with QGIS 3.4.1, and in QGIS 3.2 I have the same problem. I tried QGIS 2.18 where I don't have this issue.
qgis coordinate-system
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
The CRS of the data I am using is in geographic CRS (WGS 84 EPSG:4326), but I want to work in projected CRS which for my case is in UTM 32N, EPSG 25832. I am working on modifying polygons with the advanced digitizing panel which only works on projected CRS.
I am able to project the layer and also set the project CRS to EPSG 25832, but the coordinates (marked in screen-shot) is always shown in lat/lon. Also when I use the digitizing toolbox to modify the position of the feature, the unit shown in the panel are also lat/lon, which is strange because the CAD tool does not support geographic coordinates (I cant use the tool when the project CRS is set to geographic CRS).
Any idea what the issue is? I am working with QGIS 3.4.1, and in QGIS 3.2 I have the same problem. I tried QGIS 2.18 where I don't have this issue.
qgis coordinate-system
The CRS of the data I am using is in geographic CRS (WGS 84 EPSG:4326), but I want to work in projected CRS which for my case is in UTM 32N, EPSG 25832. I am working on modifying polygons with the advanced digitizing panel which only works on projected CRS.
I am able to project the layer and also set the project CRS to EPSG 25832, but the coordinates (marked in screen-shot) is always shown in lat/lon. Also when I use the digitizing toolbox to modify the position of the feature, the unit shown in the panel are also lat/lon, which is strange because the CAD tool does not support geographic coordinates (I cant use the tool when the project CRS is set to geographic CRS).
Any idea what the issue is? I am working with QGIS 3.4.1, and in QGIS 3.2 I have the same problem. I tried QGIS 2.18 where I don't have this issue.
qgis coordinate-system
qgis coordinate-system
edited 2 days ago
Vince
14.3k32646
14.3k32646
asked 2 days ago
Senwei
473
473
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
You need to reproject the layer into EPSG:25832 instead of just defining them as EPSG:25832.
See: Reprojecting vector layer in QGIS?
I think you are currently telling QGIS that the data is already in EPSG:25832 so it just uses the WGS84 coordinates in EPSG:25832.
Alternatively keep the layers as EPSG:4326 and just change the project to EPSG:25832, this should give your desired result.
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',
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%2f305553%2fqgis3-shows-coordinate-in-geographic-coordinates-though-qgis-project-and-layer-a%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
You need to reproject the layer into EPSG:25832 instead of just defining them as EPSG:25832.
See: Reprojecting vector layer in QGIS?
I think you are currently telling QGIS that the data is already in EPSG:25832 so it just uses the WGS84 coordinates in EPSG:25832.
Alternatively keep the layers as EPSG:4326 and just change the project to EPSG:25832, this should give your desired result.
add a comment |
up vote
4
down vote
accepted
You need to reproject the layer into EPSG:25832 instead of just defining them as EPSG:25832.
See: Reprojecting vector layer in QGIS?
I think you are currently telling QGIS that the data is already in EPSG:25832 so it just uses the WGS84 coordinates in EPSG:25832.
Alternatively keep the layers as EPSG:4326 and just change the project to EPSG:25832, this should give your desired result.
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
You need to reproject the layer into EPSG:25832 instead of just defining them as EPSG:25832.
See: Reprojecting vector layer in QGIS?
I think you are currently telling QGIS that the data is already in EPSG:25832 so it just uses the WGS84 coordinates in EPSG:25832.
Alternatively keep the layers as EPSG:4326 and just change the project to EPSG:25832, this should give your desired result.
You need to reproject the layer into EPSG:25832 instead of just defining them as EPSG:25832.
See: Reprojecting vector layer in QGIS?
I think you are currently telling QGIS that the data is already in EPSG:25832 so it just uses the WGS84 coordinates in EPSG:25832.
Alternatively keep the layers as EPSG:4326 and just change the project to EPSG:25832, this should give your desired result.
answered 2 days ago
HeikkiVesanto
8,4211943
8,4211943
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f305553%2fqgis3-shows-coordinate-in-geographic-coordinates-though-qgis-project-and-layer-a%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