Calculating with coordinates
There are several ways to do geometric calculations with map coordinates.
You can try to project your geographic objects to a good map projection, and then compute in the projected plane. The methods of the Geometry classes can help you, and the method Crs.FromArea. But there is a risk that your projection is not good enough over large areas, or that it becomes difficult to change the projection when necessary.
For some basic geometric calculations (distances, great-circle routes, line intersections...), you can use methods in the Crs class. These methods do not rely on a projection. On the contrary, they unproject all data to longitude and latitude and use ellipsoid geometry, before they project the result back to the original projection. These methods have sub-millimeter accuracy for line types GreatCircle and RhumbLine.
If your region is too large for plane calculations, but the Crs class does not support what you need, you can try to implement your own formulas in spherical geometry. See, for example, the Aviation Formulary by Ed Williams. But since the Earth is more like an ellipsoid, purely spherical formulas with a fixed radius can give errors up to about 0.5% even for short distances, while correct ellipsoid formulas can be quite complicated.
It can be possible to find a compromise between the simple but inaccurate spherical formulas and the precise but complicated ellipsoid formulas. For example, for some calculations within a limited region, it is useful to project the ellipsoid surface not to a plane but to a sphere, in a way that preserves important properties, and then use spherical formulas. Usually the longitude would not be changed, but the ordinary latitude on the ellipsoid would be converted to another kind of auxiliary latitude which is then used as the spherical latitude. The radius of the sphere can be chosen to be optimal in the center of an area of interest. For example, when Carmenta Engine Crs methods use the GreatCircleApprox, they convert to geocentric latitude and set the sphere radius to a² / (1 + e²sin²(φ)/2), where a is the equatorial radius of the ellipsoid, e² is its first eccentricity squared, and φ is the latitude of the center of the area of interest. Of course, in general it is non-trivial to design such a compromise calculation, since it can be hard to figure out the appropriate auxiliary latitude and sphere radius.
If I calculate in a projected plane, how large will the errors be?
For a meaningful answer, you must specify the projection, the extent of the region, and the kind of geometric calculations.
Here is a sample answer, assuming you are using a UTM projection to calculate within its zone extended by 50 km. We assume an ordinary zone (that is, we ignore the irregular zones in the North Sea and around Svalbard.)
Calculation | Possible error | Precise Crs method |
---|---|---|
Distance | -0.04% to +0.14% | |
Area | -0.08% to +0.29% | not available |
Azimuth from a point P to a point Q that is 50 km away, if you compensate for the meridian convergence* at P. | 0.014° | |
Same as above, but you forget about the meridian convergence.* | 3.00° | see above |
Finding point Q, starting from P at a given direction and going 50 km along a great circle, if you compensate for the meridian convergence* at P. | 73 m | |
Same as above, but you forget about the meridian convergence.* | 2600 m | see above |
The shortest route from P to Q, 50 km apart. | 3.0 m displacement halfway |
*Meridian convergence: the difference between true north and grid north at a point. Can be computed by Crs.AngleFromAzimuth.
Previous: Axis order and axis names
Up: Coordinate Systems: Contents
Next: When are things reprojected?