object DensityScan extends LazyLogging
- Alphabetic
- By Inheritance
- DensityScan
- LazyLogging
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- abstract class DensityResultsToFeatures[T] extends ResultsToFeatures[T]
- class DensityScanResult extends Result
-
sealed
trait
GeometryRenderer extends AnyRef
Renderer for geometries
- type GridIterator = (SimpleFeature) ⇒ Iterator[(Double, Double, Double)]
-
class
LineStringRenderer extends GeometryRenderer
Writes a density record from a feature that has a line geometry
-
class
MultiLineStringRenderer extends GeometryRenderer
Writes a density record from a feature that has a multi-line geometry
-
class
MultiPointRenderer extends GeometryRenderer
Writes a density record from a feature that has a multi-point geometry
-
class
MultiPolygonRenderer extends GeometryRenderer
Writes a density record from a feature that has a polygon geometry
-
class
MultiRenderer extends GeometryRenderer
Writes a density record from a feature that has an arbitrary geometry
-
class
PointRenderer extends GeometryRenderer
Writes a density record from a feature that has a point geometry
-
class
PolygonRenderer extends GeometryRenderer
Writes a density record from a feature that has a polygon geometry
-
sealed
trait
Weigher extends AnyRef
Gets the weight for a simple feature
-
class
WeightByExpression extends Weigher
Evaluates an arbitrary expression against the simple feature to return a weight
-
class
WeightByNonNumber extends Weigher
Tries to convert a non-double attribute into a double
-
class
WeightByNumber extends Weigher
Gets the weight for a feature from a numeric attribute
Value Members
- val BatchSize: SystemProperty
- val DensitySft: SimpleFeatureType
- val DensityValueKey: ClassKey
- def configure(sft: SimpleFeatureType, index: GeoMesaFeatureIndex[_, _], filter: Option[Filter], hints: Hints): Map[String, String]
-
def
decodeResult(gridSnap: GridSnap)(sf: SimpleFeature): Iterator[(Double, Double, Double)]
Decodes a result feature into an iterator of (x, y, weight)
-
def
decodeResult(envelope: Envelope, gridWidth: Int, gridHeight: Int): GridIterator
Returns a mapping of simple features (returned from a density query) to weighted points in the form of (x, y, weight)
-
def
encodeResult(result: RenderingGrid): Array[Byte]
Encodes a sparse matrix into a byte array
-
def
getDensityGeometry(sft: SimpleFeatureType, hints: Hints): String
Get the geometry to render and validate it against the feature type
Get the geometry to render and validate it against the feature type
- sft
simple feature type
- hints
query hints
-
def
getRenderer(sft: SimpleFeatureType, geom: String, weight: Option[String]): GeometryRenderer
Gets a renderer for the associated geometry binding
Gets a renderer for the associated geometry binding
- sft
simple feature type
- geom
geometry field to render
- weight
field to use for weighting features
-
def
propertyNames(hints: Hints, sft: SimpleFeatureType): Seq[String]
Get the attributes used by a density query
Get the attributes used by a density query
- hints
query hints
- sft
simple feature type
- object Configuration
- object EqualWeight extends Weigher with Product with Serializable