Indexing Spatial Data



Create index with spatial field

  • Use createSpatialField to index spatial data in a static-index.

  • You can then retrieve documents based on geographical criteria when making a spatial query on this index-field.

  • A spatial index can also be defined from the Studio.

Exmaple:

// Define an index with a spatial field
class Events_ByNameAndCoordinates extends AbstractJavaScriptIndexCreationTask {
    constructor() {
        super();
        const { createSpatialField } = this.mapUtils();

        this.map('events', e => {
            return {
                name: e.Name,
                // Call 'createSpatialField' to create a spatial index-field
                // Field 'coordinates' will be composed of lat & lng supplied from the document
                coordinates: createSpatialField(
                    e.latitude,
                    e.longitude
                )
                
                // Documents can be retrieved
                // by making a spatial query on the 'coordinates' index-field
            };
        });
    }
}

class Event {
    constructor(id, name, latitude, longitude) {
        this.id = id;
        this.name = name;
        this.latitude = latitude
        this.longitude = longitude;
    }
}
// Define an index with a spatial field
class EventsWithWKT_ByNameAndWKT extends AbstractJavaScriptIndexCreationTask {
    constructor() {
        super();
        const { createSpatialField } = this.mapUtils();

        this.map('events', e => {
            return {
                name: e.Name,
                // Call 'createSpatialField' to create a spatial index-field
                // Field 'wkt' will be composed of the WKT string supplied from the document
                wkt: createSpatialField(e.wkt)

                // Documents can be retrieved by
                // making a spatial query on the 'wkt' index-field
            };
        });
    }
}

class EventWithWKT {
    constructor(id, name, wkt) {
        this.id = id;
        this.name = name;
        this.wkt = wkt;
    }
}

Syntax:

createSpatialField(lat, lng);
createSpatialField(wkt);
Parameters Type Description
lat number Latitude coordinate
lng number Longitude coordinate
wkt string Shape in WKT string format

Customize coordinate system and strategy

  • For each spatial index-field, you can specify the coordinate system and strategy to be used
    during indexing and when processing the data at query time.

  • RavenDB supports both the Geography and Cartesian systems with the following strategies:

    • Geography system:

      • BoundingBox
      • GeoHashPrefixTree
      • QuadPrefixTree
    • Cartesian system:

      • BoundingBox
      • QuadPrefixTree
  • By default, the GeoHashPrefixTree strategy is used with GeoHashLevel set to 9.
    Use the spatial method to modify this setting.

  • The performance cost of spatial indexing is directly related to the tree level chosen.
    Learn more about each strategy below.

  • Note: Modifying the strategy after the index has been created & deployed will trigger the re-indexing.

Exmaple:

class Events_ByNameAndCoordinates_Custom extends AbstractJavaScriptIndexCreationTask {
    constructor() {
        super();
        const { createSpatialField } = this.mapUtils();

        this.map('events', e => {
            return {
                name: e.Name,
                // Define a spatial index-field
                coordinates: createSpatialField(
                    e.latitude,
                    e.longitude
                )

                // Documents can be retrieved
                // by making a spatial query on the 'coordinates' index-field
            };
        });

        // Set the spatial indexing strategy for the spatial field 'coordinates' 
        this.spatial("coordinates", factory => factory.cartesian().boundingBoxIndex());
    }
}

Syntax:

class SpatialOptionsFactory {
    geography(): GeographySpatialOptionsFactory;
    cartesian(): CartesianSpatialOptionsFactory;
}

defaultOptions(circleRadiusUnits);
boundingBoxIndex(circleRadiusUnits);
geohashPrefixTreeIndex(maxTreeLevel, circleRadiusUnits);
quadPrefixTreeIndex(maxTreeLevel, circleRadiusUnits);
boundingBoxIndex(): SpatialOptions;
quadPrefixTreeIndex(maxTreeLevel, bounds);

class SpatialBounds {
    minX; // number
    maxX; // number
    minY; // number
    maxY; // number
}
Parameters Type Description
circleRadiusUnits string "Kilometers" or "Miles"
maxTreeLevel number Controls precision level
bounds SpatialBounds Coordinates for the cartesian quadPrefixTreeIndex

Spatial indexing strategies

BoundingBox

  • The bounding box strategy is the simplest.
    Given a spatial shape, such as a point, circle, or polygon, the shape's bounding box is computed
    and the spatial coordinates (minX, minY, maxX, maxY) that enclose the shape are indexed.

  • When making a query,
    RavenDB translates the query criteria to the same bounding box system used for indexing.

  • Bounding box strategy is cheaper at indexing time and can produce quick queries,
    but that's at the expense of the level of accuracy you can get.

  • Read more about bounding box here.

GeoHashPrefixTree

  • Geohash is a latitude/longitude representation system that describes Earth as a grid with 32 cells, assigning an alphanumeric character to each grid cell. Each grid cell is further divided into 32 smaller chunks, and each chunk has an alphanumeric character assigned as well, and so on.

  • E.g. The location of 'New York' in the United States is represented by the following geohash: DR5REGY6R and it represents the 40.7144 -74.0060 coordinates. Removing characters from the end of the geohash will decrease the precision level.

  • The maxTreeLevel determines the length of the geohash used for the indexing, which in turn affects accuracy. By default, it is set to 9, providing a resolution of approximately 2.5 meters.

  • More information about geohash uses, decoding algorithm, and limitations can be found here.

Geohash precision values:

Level E-W Distance at Equator N-S Distance at Equator
12 ~3.7cm ~1.8cm
11 ~14.9cm ~14.9cm
10 ~1.19m ~0.60m
9 ~4.78m ~4.78m
8 ~38.2m ~19.1m
7 ~152.8m ~152.8m
6 ~1.2km ~0.61km
5 ~4.9km ~4.9km
4 ~39km ~19.6km
3 ~157km ~157km
2 ~1252km ~626km
1 ~5018km ~5018km

QuadPrefixTree

  • The QuadTree represents Earth as a grid consisting of four cells (also known as buckets). Similar to GeoHash, each cell is assigned a letter, and is recursively divided into four more cells, creating a hierarchical structure.

  • By default, the precision level (maxTreeLevel) for QuadPrefixTree is 23.

  • More information about QuadTree can be found here.

Quadtree precision values:

Level Distance at Equator
30 ~4cm
29 ~7cm
28 ~15cm
27 ~30cm
26 ~60cm
25 ~1.19m
24 ~2.39m
23 ~4.78m
22 ~9.56m
21 ~19.11m
20 ~38.23m
19 ~76.23m
18 ~152.92m
17 ~305.84m
16 ~611.67m
15 ~1.22km
14 ~2.45km
13 ~4.89km
12 ~9.79km
11 ~19.57km
10 ~39.15km
9 ~78.29km
8 ~156.58km
7 ~313.12km
6 ~625.85km
5 ~1249km
4 ~2473km
3 ~4755km
2 ~7996km
1 ~15992km

Remarks

Distance by default is measured in kilometers.