What is the unit of the area when geometry attributes are calculated in QGIS?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
My CRS is WGS 84. I intersected two files containing polygons. Each file has an attribute table stating the area of each of the polygons (in m2). After intersecting them I navigate to: Vector >> Geometry Tools >> Add Geometry Attributes. The area of the new polygons are calculated but they are orders of magnitude different to the original polygons. For instance, when comparing a new (smaller) polygon to the original (larger) polygon (which are only slightly different), the new area is calculated as 28.08 and the original is 243,943,129,649 m2
There is no way that these can be the same units. How can i find out the units of the new polygons?
qgis geometry fields-attributes
New contributor
add a comment |
My CRS is WGS 84. I intersected two files containing polygons. Each file has an attribute table stating the area of each of the polygons (in m2). After intersecting them I navigate to: Vector >> Geometry Tools >> Add Geometry Attributes. The area of the new polygons are calculated but they are orders of magnitude different to the original polygons. For instance, when comparing a new (smaller) polygon to the original (larger) polygon (which are only slightly different), the new area is calculated as 28.08 and the original is 243,943,129,649 m2
There is no way that these can be the same units. How can i find out the units of the new polygons?
qgis geometry fields-attributes
New contributor
add a comment |
My CRS is WGS 84. I intersected two files containing polygons. Each file has an attribute table stating the area of each of the polygons (in m2). After intersecting them I navigate to: Vector >> Geometry Tools >> Add Geometry Attributes. The area of the new polygons are calculated but they are orders of magnitude different to the original polygons. For instance, when comparing a new (smaller) polygon to the original (larger) polygon (which are only slightly different), the new area is calculated as 28.08 and the original is 243,943,129,649 m2
There is no way that these can be the same units. How can i find out the units of the new polygons?
qgis geometry fields-attributes
New contributor
My CRS is WGS 84. I intersected two files containing polygons. Each file has an attribute table stating the area of each of the polygons (in m2). After intersecting them I navigate to: Vector >> Geometry Tools >> Add Geometry Attributes. The area of the new polygons are calculated but they are orders of magnitude different to the original polygons. For instance, when comparing a new (smaller) polygon to the original (larger) polygon (which are only slightly different), the new area is calculated as 28.08 and the original is 243,943,129,649 m2
There is no way that these can be the same units. How can i find out the units of the new polygons?
qgis geometry fields-attributes
qgis geometry fields-attributes
New contributor
New contributor
New contributor
asked 50 mins ago
ChrisBChrisB
61
61
New contributor
New contributor
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Geometry calculations and operations (area, length, buffer) are done based on the CRS of the layer. So, if your layer is in WGS84, your area is measured in square-degree. Not really useful.
Either save your layer using any projected CRS, or you run something like area(transform($geometry,'current EPSG','projected EPSG'))
.
add a comment |
You are using latitude and longitude as coordinates which is not a projected coordinates system, and thus the units are degrees. Measuring areas or distances using these units will result in completely false values, since you expect them to be in meters.
You should reproject your polygons in a different CRS that uses meters as units, and then measure the areas.
If you are still willing to use WGS84 as CRS you can refer to this answer on GIS SE How can I measure area from geographic coordinates?
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
});
}
});
ChrisB 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%2f321228%2fwhat-is-the-unit-of-the-area-when-geometry-attributes-are-calculated-in-qgis%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Geometry calculations and operations (area, length, buffer) are done based on the CRS of the layer. So, if your layer is in WGS84, your area is measured in square-degree. Not really useful.
Either save your layer using any projected CRS, or you run something like area(transform($geometry,'current EPSG','projected EPSG'))
.
add a comment |
Geometry calculations and operations (area, length, buffer) are done based on the CRS of the layer. So, if your layer is in WGS84, your area is measured in square-degree. Not really useful.
Either save your layer using any projected CRS, or you run something like area(transform($geometry,'current EPSG','projected EPSG'))
.
add a comment |
Geometry calculations and operations (area, length, buffer) are done based on the CRS of the layer. So, if your layer is in WGS84, your area is measured in square-degree. Not really useful.
Either save your layer using any projected CRS, or you run something like area(transform($geometry,'current EPSG','projected EPSG'))
.
Geometry calculations and operations (area, length, buffer) are done based on the CRS of the layer. So, if your layer is in WGS84, your area is measured in square-degree. Not really useful.
Either save your layer using any projected CRS, or you run something like area(transform($geometry,'current EPSG','projected EPSG'))
.
answered 44 mins ago
ErikErik
3,601422
3,601422
add a comment |
add a comment |
You are using latitude and longitude as coordinates which is not a projected coordinates system, and thus the units are degrees. Measuring areas or distances using these units will result in completely false values, since you expect them to be in meters.
You should reproject your polygons in a different CRS that uses meters as units, and then measure the areas.
If you are still willing to use WGS84 as CRS you can refer to this answer on GIS SE How can I measure area from geographic coordinates?
add a comment |
You are using latitude and longitude as coordinates which is not a projected coordinates system, and thus the units are degrees. Measuring areas or distances using these units will result in completely false values, since you expect them to be in meters.
You should reproject your polygons in a different CRS that uses meters as units, and then measure the areas.
If you are still willing to use WGS84 as CRS you can refer to this answer on GIS SE How can I measure area from geographic coordinates?
add a comment |
You are using latitude and longitude as coordinates which is not a projected coordinates system, and thus the units are degrees. Measuring areas or distances using these units will result in completely false values, since you expect them to be in meters.
You should reproject your polygons in a different CRS that uses meters as units, and then measure the areas.
If you are still willing to use WGS84 as CRS you can refer to this answer on GIS SE How can I measure area from geographic coordinates?
You are using latitude and longitude as coordinates which is not a projected coordinates system, and thus the units are degrees. Measuring areas or distances using these units will result in completely false values, since you expect them to be in meters.
You should reproject your polygons in a different CRS that uses meters as units, and then measure the areas.
If you are still willing to use WGS84 as CRS you can refer to this answer on GIS SE How can I measure area from geographic coordinates?
answered 39 mins ago
Hicham ZouarhiHicham Zouarhi
2,0541922
2,0541922
add a comment |
add a comment |
ChrisB is a new contributor. Be nice, and check out our Code of Conduct.
ChrisB is a new contributor. Be nice, and check out our Code of Conduct.
ChrisB is a new contributor. Be nice, and check out our Code of Conduct.
ChrisB 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%2f321228%2fwhat-is-the-unit-of-the-area-when-geometry-attributes-are-calculated-in-qgis%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