GeoJSON Feature
A GeoJSON object that combines a geometry with a properties dictionary (metadata and attributes).
Category: Formats
Definition (expanded)
A Feature is the standard GeoJSON unit of data: {type:'Feature', geometry:{...}, properties:{...}}. It is how you attach attributes to shapes.
Related terms
GeoJSONA JSON format for geographic features, using objects like Feature, FeatureCollection, and geometry types like Polygon and MultiPolygon.GeoJSON FeatureCollectionA container for an array of GeoJSON Features.Attributes (properties)Non-geometry data attached to a feature (e.g., name, id, crop type) stored in GeoJSON properties or Shapefile fields.