windowsforms-devexpress-dot-xtramap-7dc44d0c.md
Converter that transforms data from the Universal Transverse Mercator projected coordinate system to the geographic coordinate system.
Namespace : DevExpress.XtraMap
Assembly : DevExpress.XtraMap.v25.2.dll
NuGet Package : DevExpress.Win.Map
public class UTMCartesianToGeoConverter :
CoordinateConverterCoreWrapper
Public Class UTMCartesianToGeoConverter
Inherits CoordinateConverterCoreWrapper
new MapData() {
Filepath = "../../Shapefiles/TransverseMercator/israel.shp",
CoordinateSystem = new CartesianSourceCoordinateSystem() {
CoordinateConverter = new UTMCartesianToGeoConverter() {
UtmZone = 36, Hemisphere = Hemisphere.Northern
}
}
},
New MapData() With { _
.Filepath = "../../Shapefiles/TransverseMercator/israel.shp", .CoordinateSystem = New CartesianSourceCoordinateSystem() With { _
.CoordinateConverter = New TransverseMercatorCartesianToGeoConverter() With {.Ellipsoid = Ellipsoid.WGS84, .ProjectionCenter = New GeoPoint(0, 33), .ScaleFactor = 0.9996, .FalseNorthing = 0, .FalseEasting = 500000} _
} _
}, _
}
Object CoordinateConverterBase DevExpress.XtraMap.CoordinateConverterCoreWrapper UTMCartesianToGeoConverter
See Also