The ProjectedCoordinateSystems class contains nested classes which help you create specific types of coordinate system.
Namespace:
ESRI.ArcGISExplorer.Geometry
Assembly:
ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.900 (2.0.0.900)
Syntax
C# |
---|
public static class ProjectedCoordinateSystems |
Visual Basic (Declaration) |
---|
Public NotInheritable Class ProjectedCoordinateSystems |
Examples
The code below demonstrates alternative ways to initialize a CoordinateSystem variable, using the
overloaded constructors and the nested type initializers on the CoordinateSystem class.
CopyC#
CopyVB.NET

// If you know the coordinate system you require, you can hard-code this by using a nested type // initializer on the CoordinateSystem class; note these members are statics, and therefore should // not use the 'new' keyword. //esriSRProjCS_World_EckertIV 54012 Eckert IV. CoordinateSystem cs1 = CoordinateSystem.ProjectedCoordinateSystems.World.EckertIVWorld; // If you know the identifier, you can create the same coordinate system by using the overloaded // constructor passing in the Id. CoordinateSystem cs2 = new CoordinateSystem(54012); // Alternatively, if you have a .prj file which defines a coordinate system, you can pass in the // filename to create the coordinate system. string prjFilePath = @"C:\Some Data Path\EckertVI.prj"; CoordinateSystem cs3 = new CoordinateSystem(prjFilePath);

' If you know the coordinate system you require, you can hard-code this by using a nested type ' initializer on the CoordinateSystem class; note these members are statics, and therefore should ' not use the 'new' keyword. Dim cs1 As CoordinateSystem = CoordinateSystem.ProjectedCoordinateSystems.World.EckertIVWorld ' If you know the identifier, you can create the same coordinate system by using the overloaded ' constructor passing in the Id. Dim cs2 As CoordinateSystem = New CoordinateSystem(54012) ' Alternatively, if you have a .prj file which defines a coordinate system, you can pass in the ' filename to create the coordinate system. Dim prjFilePath As String = "C:\Some Data Path\EckertVI.prj" Dim cs3 As CoordinateSystem = New CoordinateSystem(prjFilePath)
Inheritance Hierarchy
See Also
Relate Topics:
CoordinateSystem.ProjectedCoordinateSystems.ARCEqualarcSecond Class
CoordinateSystem.ProjectedCoordinateSystems.Continental Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.Africa Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.Asia Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.Europe Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.NorthAmerica Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.SouthAmerica Class
CoordinateSystem.ProjectedCoordinateSystems.CountySystems Class
CoordinateSystem.ProjectedCoordinateSystems.CountySystems.Minnesota Class
CoordinateSystem.ProjectedCoordinateSystems.CountySystems.WisconsinCRS Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.Beijing1954 Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.OtherGCS Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.Pulkovo1942 Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.Pulkovo1995 Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.Xian1980 Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Argentina Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Australia Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Austria Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Canada Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.France Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Indiansubcontinent Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Indonesia Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Japan Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Libya Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Malaysia Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.NewZealand Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Norway Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Sweden Class
CoordinateSystem.ProjectedCoordinateSystems.Polar Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1927 Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983 Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983Feet Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983HARN Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983HARNFeetIntlUS Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983IntlFeet Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.OtherGCS Class
CoordinateSystem.ProjectedCoordinateSystems.StateSystems Class
CoordinateSystem.ProjectedCoordinateSystems.UTM Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.Indonesia Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.NAD1927 Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.NAD1983 Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.OtherGCS Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.SouthAmerica Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.WGS1972 Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.WGS1984 Class
CoordinateSystem.ProjectedCoordinateSystems.World Class
CoordinateSystem.ProjectedCoordinateSystems.World.SphereBased Class
CoordinateSystem.ProjectedCoordinateSystems.ARCEqualarcSecond Class
CoordinateSystem.ProjectedCoordinateSystems.Continental Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.Africa Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.Asia Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.Europe Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.NorthAmerica Class
CoordinateSystem.ProjectedCoordinateSystems.Continental.SouthAmerica Class
CoordinateSystem.ProjectedCoordinateSystems.CountySystems Class
CoordinateSystem.ProjectedCoordinateSystems.CountySystems.Minnesota Class
CoordinateSystem.ProjectedCoordinateSystems.CountySystems.WisconsinCRS Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.Beijing1954 Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.OtherGCS Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.Pulkovo1942 Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.Pulkovo1995 Class
CoordinateSystem.ProjectedCoordinateSystems.GaussKruger.Xian1980 Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Argentina Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Australia Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Austria Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Canada Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.France Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Indiansubcontinent Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Indonesia Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Japan Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Libya Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Malaysia Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.NewZealand Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Norway Class
CoordinateSystem.ProjectedCoordinateSystems.NationalGrids.Sweden Class
CoordinateSystem.ProjectedCoordinateSystems.Polar Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1927 Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983 Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983Feet Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983HARN Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983HARNFeetIntlUS Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.NAD1983IntlFeet Class
CoordinateSystem.ProjectedCoordinateSystems.StatePlane.OtherGCS Class
CoordinateSystem.ProjectedCoordinateSystems.StateSystems Class
CoordinateSystem.ProjectedCoordinateSystems.UTM Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.Indonesia Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.NAD1927 Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.NAD1983 Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.OtherGCS Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.SouthAmerica Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.WGS1972 Class
CoordinateSystem.ProjectedCoordinateSystems.UTM.WGS1984 Class
CoordinateSystem.ProjectedCoordinateSystems.World Class
CoordinateSystem.ProjectedCoordinateSystems.World.SphereBased Class
Created by Atop CHM to web converter,© 2009 all right reserved.