Changes between Initial Version and Version 1 of UserDocs/Shapefiles


Ignore:
Timestamp:
Oct 9, 2007, 2:44:15 PM (17 years ago)
Author:
maphew
Comment:

summary of extensions used for shapefiles

Legend:

Unmodified
Added
Removed
Modified
  • UserDocs/Shapefiles

    v1 v1  
     1= Summary of the shapefile components used by ESRI =
     2
     3Shapefiles are a simple, non-topological format for storing the geometric location and attribute information of geographic features. The shapefile format defines the geometry and attributes of geographically referenced features in three or more files with specific file extensions that should be stored in the same project workspace. ''The essential rule of thumb is that whenever you copy, move or rename a .shp, you must do the same to all similarly named files or you risk data loss.'' The other files you may encounter are:
     4
     5''' Required'''
     6 * '''.shp''' - the file that stores the feature geometry.
     7 * '''.shx''' - the file that stores the index of the feature geometry.
     8 * '''.dbf''' - the dBASE file that stores the attribute information of features.
     9
     10'''Optional'''
     11 * '''.sbn''' and '''.sbx''' - the files that store the spatial index of the features.
     12 * '''.fbn''' and '''.fbx''' - the files that store the spatial index of the features for shapefiles that are read-only.
     13 * '''.ain''' and '''.aih''' - the files that store the attribute index of the active fields in a table or a theme's attribute table.
     14 * '''.atx''' — An .atx file is created for each shapefile or dBASE attribute index created in !ArcCatalog. !ArcView 3.x  (AV3) attribute indexes for shapefiles and dBASE files are not used by ArcGIS. A new attribute indexing model has been developed for shapefiles and dBASE files.
     15 * '''.ixs''' — Geocoding index for read-write shapefiles.
     16 * '''.mxs''' — Geocoding index for read-write shapefiles (ODB format).
     17 * '''.prj''' - the file that stores the coordinate system information. This file can be created with and is used by the AV3 Projection Utility. It is not used by AV 3.0 or !ArcInfo 8 and older (and some parts of !ArcInfo v9 still don't use it). The .prj is a late addition to the Shapefile definition  and is not present in the Original White paper.
     18 * '''.xml''' - metadata for !ArcInfo 8.0, for using shapefiles on the Internet.
     19
     20For extended info and code on how gdal and related projects use shapefiles, see [http://shapelib.maptools.org/ Shapelib]
     21
     22
     23'''Sources'''
     24
     25 * [http://webhelp.esri.com/arcgisdesktop/9.2/index.cfm?id=2729&pid=2727&topicname=Shapefile_file_extensions  Shapefile file extensions (2007)]
     26 * [http://www.esri.com/library/whitepapers/pdfs/shapefile.pdf  ESRI Shapefile Technical Description (1998)]
     27 * [http://support.esri.com/index.cfm?fa=knowledgebase.techarticles.articleShow&d=21456  All extensions used by AV3 (uncategorized)]
     28 * [http://www.nabble.com/Shapfiles-and-Projections-t4571593.html The thread which spawned this wiki page]