if i wish to change the projection of some shapefiles from .. lets say NAD83 (4269) to WGS84 (4326) ... and by using some 3rd party app .... does this mean the .prj file is only updated .. and not the content in the .shp file or any other associated file?
|
|
In the particular case of NAD83 <--> WGS84 and you're working with medium accuracy data, e.g. consumer grade GPS, it's not serious if the only the .prj file is changed, as the two are synonymous at that level. If you're working with geodetic data accurate to fractions of a centimetre or more the app had better be doing real datum transformation and not just changing the prj file. Also don't forget that there are several different NAD83 definitions (NAD83_HARN, NAD83CSRS, etc), that they are only good for North America, and not uniform coverage at that. See Which Geographic Transformation to use for the Yukon? for a long discussion of the differences of this last point and how to choose, including this illimunating graphic absent from most documentation on NAD83 transformations:
The text in the graphic refers to the names of the various NAD83 transformations available in ArcGIS. Determining what the equivalent terms are in other programs, e.g. PROJ4 and FME, is an exercise left to the reader (feel free to expand in the comments, or better yet, post a new question). |
|||
|
|
|
I'm pretty sure that the projecting geoprocessing tool transforms the coordinates of each vertex in your features. |
|||||
|
|
Projection writes an entirely new shapefile, in the output coordinate space -- the new .prj file lets you know what reference system the new coordinates are in. So, if you took a WGS84 shapefile with data like:
After projecting to say UTM, the shapefile would contain information like:
Only through the use of the |
|||
|
|
|
The answer to your question is No. All the .prf file does is define what projection (including parameters) the data is stored in. This data can then be used in turn by some GIS programs perform "Data re-projection on the fly". This is why you can delete the .prj file without affecting your data, in fact you won't even notice it unless you tried to add it a .mxd or other GIS document with another project defined. To project or reproject shapefile requires editing the .shp file which contains the geographical data. Here are links to the Wikipedia entry for Shapfile http://en.wikipedia.org/wiki/Shapefile And a PDF version of the "ESRI Shapefile Technical Description" ESRI Shapefile Technical Description Whitepaper |
|||
|
|
