Hi,I have XY value tabel having with NAD 27 Zone 6, I want convert this vales to NAD 83 Zone 6.Thanks,GM
Private Sub CreateProjectedReferenceSystem() ' Set up the SpatialReferenceEnvironment. ' SpatialReferenceEnvironment is a singleton object and needs to use the Activator class. Dim t As Type = Type.GetTypeFromProgID("esriGeometry.SpatialReferenceEnvironment") Dim obj As System.Object = Activator.CreateInstance(t) Dim srFact As ESRI.ArcGIS.Geometry.ISpatialReferenceFactory = obj ' Use the enumeration to create an instance of the predefined object. Dim projectedCS As IProjectedCoordinateSystem = srFact.CreateProjectedCoordinateSystem(esriSRProjCSType.esriSRProjCS_NAD1927SPCS_CAVI) ' California 6 End Sub
I have a project that gave me a table of xy values in NAD27, Pennsylvania State Plane (Foot). They would like the coordinates converted to NAD83, PA State Plane (Foot). I need some one to check this for the correct steps.This is the process that I did:Open an MXD file and set the projection to NAD27, PA State plane (foot)Bring in the table from CatalogRight click on the table, then Display XY data, and set the the appropriate x and y fields.Export the data to change it from and event to a shapefile/feature class in NAD27Open an MXD file that is set to NAD83, PA State plane (foot)Import the previously created shapefile.Export the shapefile ensuring that the projection for the export is the same as the data frame (NAD83) and NOT the source (NAD27).Create two fields in the attribute table for new x and y valuesCalculate the geometry of these field using the appropriate data.These values are now in the NAD83, PA state plane (foot) but they are slightly different than another check that I have (from the client). Can anyone point me in a different direction or confirm my method? Thanks
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.