It looks like it might be a rounding/accuracy issue.
What has happened to the data between the SQL Spatial DB and the GDB? Which coordinates do you see if you inspect the GDB?
It looks like it might be a rounding/accuracy issue.
What has happened to the data between the SQL Spatial DB and the GDB? Which coordinates do you see if you inspect the GDB?
Hi @redgeographics,
I imported the data directly from the GDB to the SQL DB. In order to get the geometry into the DB, I did reproject to LL84. I took the reprojected data and also converted geojson features. Would it be wise to use the coordinate rounder before reprojecting to LL84?
Hi @redgeographics,
I imported the data directly from the GDB to the SQL DB. In order to get the geometry into the DB, I did reproject to LL84. I took the reprojected data and also converted geojson features. Would it be wise to use the coordinate rounder before reprojecting to LL84?
It's still not exactly clear what's happening. You reprojected to LL84 when loading it into the SQL database, but the coordinates shown in your screenshot are obviously not in LL84. At what point did you reproject them back (and to what coordinate system) to do the comparison?
It's still not exactly clear what's happening. You reprojected to LL84 when loading it into the SQL database, but the coordinates shown in your screenshot are obviously not in LL84. At what point did you reproject them back (and to what coordinate system) to do the comparison?
When calling the features from the SQL DB, I then reprojected them to EPSG:4087, which is in meters. I was hoping by doing converting them to EPSG:4087 it would be able to get a better match. So before entering the Change Detector transformer both incoming datasets (Original, Revised) are reprojected EPSG:4087.
When calling the features from the SQL DB, I then reprojected them to EPSG:4087, which is in meters. I was hoping by doing converting them to EPSG:4087 it would be able to get a better match. So before entering the Change Detector transformer both incoming datasets (Original, Revised) are reprojected EPSG:4087.
Yeah, I'm pretty sure there's a rounding being introduced with all that reprojection. Check the LL84 coordinates and see how many decimals there are. Your errors appear to be in the centimeter range max, 0.0001 degree is about 11 meters so 0.0000001 degree is around a centimeter, if your database stores less digits you can't expect the result after reprojecting to be the same to 3 decimals in meters.