Hello There I have 2 polygons, as you can see on the inspector both are into different location
all using projected coordinate when we using the clipper it inside results
how this is possible
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
Hi @boubcher, as @danilo_fme mentioned, the parcel and the boundary have different coordinate systems.
If the coordinate systems defined in the datasets are correct, those geometries don't intersect geographically. However, the Clipper just treats input features as geometric shapes without considering their coordinate systems, so the boundary would be clipped by the parcel. I think that's the situation you have observed.
If you need to perform clipping operation correctly according to geographic spatial relations, you will have to reproject the features into the same coordinate system beforehand.
Hi @boubcher, as @danilo_fme mentioned, the parcel and the boundary have different coordinate systems.
If the coordinate systems defined in the datasets are correct, those geometries don't intersect geographically. However, the Clipper just treats input features as geometric shapes without considering their coordinate systems, so the boundary would be clipped by the parcel. I think that's the situation you have observed.
If you need to perform clipping operation correctly according to geographic spatial relations, you will have to reproject the features into the same coordinate system beforehand.
@takashi
both are in a projected coordinate system one is in zoon 37 and other 38 ,
to get accurate result cliping opration should be done on project object , and this is our case
Hi @boubcher, as @danilo_fme mentioned, the parcel and the boundary have different coordinate systems.
If the coordinate systems defined in the datasets are correct, those geometries don't intersect geographically. However, the Clipper just treats input features as geometric shapes without considering their coordinate systems, so the boundary would be clipped by the parcel. I think that's the situation you have observed.
If you need to perform clipping operation correctly according to geographic spatial relations, you will have to reproject the features into the same coordinate system beforehand.
Since those are different zones, naturally the Clipper cannot perform geographically correct clipping operation. You need reproject them onto the same coordinate system before clipping.
both are in a projected coordinate system one is in zoon 37 and other 38 ,
to get accurate result cliping opration should be done on project object , and this is our case
am I missing anything ?
Just completing that @takashi
mentioned here in Brazil for example We have region with 3 different zones in the same State. In this project we reproject these 3 zones for the same coordinate system.
Hi @boubcher, as @danilo_fme mentioned, the parcel and the boundary have different coordinate systems.
If the coordinate systems defined in the datasets are correct, those geometries don't intersect geographically. However, the Clipper just treats input features as geometric shapes without considering their coordinate systems, so the boundary would be clipped by the parcel. I think that's the situation you have observed.
If you need to perform clipping operation correctly according to geographic spatial relations, you will have to reproject the features into the same coordinate system beforehand.
@takashi
if you remove the background Map, both will even with 2 diffrent projected coordinate overlap, and in the reel world they overlap
but when you add the background map, the parcel is not in the same place
if its projection problem the should not overlay even when we remove the background map
Hi @boubcher, as @danilo_fme mentioned, the parcel and the boundary have different coordinate systems.
If the coordinate systems defined in the datasets are correct, those geometries don't intersect geographically. However, the Clipper just treats input features as geometric shapes without considering their coordinate systems, so the boundary would be clipped by the parcel. I think that's the situation you have observed.
If you need to perform clipping operation correctly according to geographic spatial relations, you will have to reproject the features into the same coordinate system beforehand.
data inspector with background map reprojects features onto the same coordinate system. If those two features are overlap in the real world, the coordinate system defined in the dataset could be wrong.