Packages

  • package root
    Definition Classes
    root
  • package geotrellis
    Definition Classes
    root
  • package vectortile

    This package is experimental. Expect API flux.

    This package is experimental. Expect API flux.

    Invented by Mapbox, VectorTiles are a combination of the ideas of finite-sized tiles and vector geometries. Mapbox maintains the official implementation spec for VectorTile codecs. The specification is free and open source.

    VectorTiles are advantageous over raster tiles in that:

    • They are typically smaller to store
    • They can be easily transformed (rotated, etc.) in real time
    • They allow for continuous (as opposed to step-wise) zoom in Slippy Maps.

    Raw VectorTile data is stored in the protobuf format. Any codec implementing the spec must decode and encode data according to this .proto schema.

    What is this package?

    geotrellis-vectortile is a high-performance implementation of Version 2.1 of the VectorTile spec. It features:

    • Decoding of Version 2 VectorTiles from Protobuf byte data into useful GeoTrellis types.
    • Lazy decoding of Geometries. Only parse what you need!

    Using this Package

    Modules

    Users of this library need only pay attention to geotrellis.vectortile. Any classes in the internal.* submodules are unique to the machinery of VectorTile {de,en}coding, and can be safely ignored.

    Types

    The central type is the geotrellis.vectortile.VectorTile class. Its companion object can be used to construct VectorTiles from raw byte data:

    import geotrellis.spark.SpatialKey
    import geotrellis.spark.tiling.LayoutDefinition
    import geotrellis.vector.Extent
    import geotrellis.vectortile.VectorTile
    
    val bytes: Array[Byte] = ...  // from some `.mvt` file
    val key: SpatialKey = ...  // preknown
    val layout: LayoutDefinition = ...  // preknown
    val tileExtent: Extent = layout.mapTransform(key)
    
    /* Decode Protobuf bytes. */
    val tile: VectorTile = VectorTile.fromBytes(bytes, tileExtent)
    
    /* Encode a VectorTile back into bytes. */
    val encodedBytes: Array[Byte] = tile.toBytes

    The V* types form a small sum type and are used to represent usually untyped Feature-level metadata. This metadata is equivalent to a JSON Object, where String keys index values of any type. A Scala Map requires more rigidity (for the better), and so we use geotrellis.vectortile.Value to guarantee type safety.

    Implementation Assumptions

    This particular implementation of the VectorTile spec makes the following assumptions:

    • Geometries are implicitly encoded in some Coordinate Reference system. That is, there is no such thing as a "projectionless" VectorTile. When decoding a VectorTile, we must provide a GeoTrellis geotrellis.vector.Extent that represents the Tile's area on a map. With this, the grid coordinates stored in the VectorTile's Geometry are shifted from their original [0,4096] range to actual world coordinates in the Extent's CRS.
    • The id field in VectorTile Features doesn't matter.
    • UNKNOWN geometries are safe to ignore.
    • If a VectorTile geometry list marked as POINT has only one pair of coordinates, it will be decoded as a GeoTrellis Point. If it has more than one pair, it will be decoded as a MultiPoint. Likewise for the LINESTRING and POLYGON types. A complaint has been made about the spec regarding this, and future versions may include a difference between single and multi geometries.
    Definition Classes
    geotrellis
    Version

    2.1

  • package internal

    Users need not concern themselves with this subpackage; it handles the details internal to the VectorTile encoding/decoding process.

    Users need not concern themselves with this subpackage; it handles the details internal to the VectorTile encoding/decoding process.

    Definition Classes
    vectortile
  • Layer
  • LazyLayer
  • MVTFeature
  • StrictLayer
  • VBool
  • VDouble
  • VFloat
  • VInt64
  • VSint64
  • VString
  • VWord64
  • Value
  • VectorTile

sealed trait Value extends Serializable

Feature metadata key/value Maps are completely untyped. All keys and values used by Features across a common parent Layer are stored in that parent. Raw Features themselves only store indices into the parent's key/value lists. So, for an example MultiPoint Feature of fire hydrant locations, its metadata could look like:

{ name: "Hydrants",
  colour: "red",
  model: 5
}

That's fine if interpreted as JSON, but bad as Scala, as it doesn't give us a clean Map[String, ConcreteTypeHere]. Furthermore, Features within the same Layer don't have to agree on the Value type for the same key:

{ name: "Stop lights",
  colour: 1,
  model: "ABC-123"
}

Nor, actually, do Layers have to agree on key sets for their Features. The sealed trait Value here and its extensions aim to provide some type safety in light of the situation described here.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Value
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped