Updated map projections

This commit is contained in:
ClemensFischer 2026-01-24 20:13:05 +01:00
parent 9c02647c59
commit 98f057ca0c
4 changed files with 6 additions and 12 deletions

View file

@ -9,12 +9,12 @@ using Avalonia;
namespace MapControl
{
/// <summary>
/// Spherical Azimuthal Equidistant Projection - No standard CRS identifier.
/// Spherical Azimuthal Equidistant Projection - AUTO2:97003.
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.195-197.
/// </summary>
public class AzimuthalEquidistantProjection : AzimuthalProjection
{
public const string DefaultCrsId = "AUTO2:97003"; // proprietary CRS identifier
public const string DefaultCrsId = "AUTO2:97003"; // GeoServer non-standard CRS identifier
public AzimuthalEquidistantProjection() // parameterless constructor for XAML
: this(DefaultCrsId)