mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Link to USGS Map Projections Paper
This commit is contained in:
parent
904eb9c47a
commit
8baec28afd
|
|
@ -12,7 +12,7 @@ namespace MapControl
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Auto-Equirectangular Projection - AUTO2:42004.
|
/// Auto-Equirectangular Projection - AUTO2:42004.
|
||||||
/// Equidistant cylindrical projection with standard parallel and central meridian set by the Center property.
|
/// Equidistant cylindrical projection with standard parallel and central meridian set by the Center property.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.90-91.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.90-91.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class AutoEquirectangularProjection : MapProjection
|
public class AutoEquirectangularProjection : MapProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ namespace MapControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Spherical Azimuthal Equidistant Projection - No standard CRS ID.
|
/// Spherical Azimuthal Equidistant Projection - No standard CRS ID.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.195-197.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.195-197.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class AzimuthalEquidistantProjection : AzimuthalProjection
|
public class AzimuthalEquidistantProjection : AzimuthalProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ namespace MapControl
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equirectangular Projection - EPSG:4326.
|
/// Equirectangular Projection - EPSG:4326.
|
||||||
/// Equidistant cylindrical projection with zero standard parallel and central meridian.
|
/// Equidistant cylindrical projection with zero standard parallel and central meridian.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.90-91.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.90-91.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class EquirectangularProjection : MapProjection
|
public class EquirectangularProjection : MapProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ namespace MapControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Spherical Gnomonic Projection - AUTO2:97001.
|
/// Spherical Gnomonic Projection - AUTO2:97001.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.165-167.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.165-167.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class GnomonicProjection : AzimuthalProjection
|
public class GnomonicProjection : AzimuthalProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ namespace MapControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Spherical Orthographic Projection - AUTO2:42003.
|
/// Spherical Orthographic Projection - AUTO2:42003.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.148-150.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.148-150.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class OrthographicProjection : AzimuthalProjection
|
public class OrthographicProjection : AzimuthalProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ namespace MapControl
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Elliptical Polar Stereographic Projection with a given scale factor at the pole and
|
/// Elliptical Polar Stereographic Projection with a given scale factor at the pole and
|
||||||
/// optional false easting and northing, as used by the UPS North and UPS South projections.
|
/// optional false easting and northing, as used by the UPS North and UPS South projections.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.154-163.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.154-163.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class PolarStereographicProjection : MapProjection
|
public class PolarStereographicProjection : MapProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ namespace MapControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Spherical Stereographic Projection - AUTO2:97002.
|
/// Spherical Stereographic Projection - AUTO2:97002.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.157-160.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.157-160.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class StereographicProjection : AzimuthalProjection
|
public class StereographicProjection : AzimuthalProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ namespace MapControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Spherical Mercator Projection - EPSG:3857.
|
/// Spherical Mercator Projection - EPSG:3857.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.41-44.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.41-44.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class WebMercatorProjection : MapProjection
|
public class WebMercatorProjection : MapProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ namespace MapControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Elliptical Mercator Projection - EPSG:3395.
|
/// Elliptical Mercator Projection - EPSG:3395.
|
||||||
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/pp/1395/report.pdf), p.44-45.
|
/// See "Map Projections - A Working Manual" (https://pubs.usgs.gov/publication/pp1395), p.44-45.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class WorldMercatorProjection : MapProjection
|
public class WorldMercatorProjection : MapProjection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue