Shapefiles, a prevalent geospatial vector data format in Geographic Information System (GIS) applications, efficiently organize spatial data. Developed by Esri, this format accommodates points, lines, polygons, and attribute information. Comprising multiple files, shapefiles merge geometric and attribute data, making them versatile for mapping and analysis. Widely adopted for their simplicity and compatibility, shapefiles are crucial for professionals in diverse fields, supporting applications from environmental monitoring to urban planning. As a standard in GIS, shapefiles are commonly used and are also supported by the platform.
Shapefiles consist of a set of files that collectively store geospatial data. The main types of files contained in a shapefile are:
.shp (Shapefile): This file contains the geometric data, such as points, lines, or polygons, representing spatial features.
.shx (Shape Index): This file is an index file that helps in quickly accessing the geometric data stored in the .shp file.
.dbf (Attribute Table): This file stores attribute data related to the spatial features. It is a relational database file in dBASE format, containing information like names, population, or any other attributes associated with the spatial elements.
.prj (Projection): This file holds information about the coordinate system and projection used in the shapefile.
Optional files may include:
.sbn and .sbx (Spatial Index): These files store spatial indices for optimizing spatial queries.
.cpg (Character Encoding): This file specifies the character encoding used in the attribute data.
.shp.xml (Metadata): This XML file contains metadata information about the shapefile.
The platform automatically recognizes the combinations of the above mentioned files and "bundles" them as a single dataset that will be interpreted accordingly in the file inspector.

