trait SpaceFillingCurve extends AnyRef

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

Abstract Value Members

  1. abstract def index(x: Double, y: Double, lenient: Boolean = false): Long
  2. abstract def invert(i: Long): (Double, Double)
  3. abstract def ranges(xy: Seq[(Double, Double, Double, Double)], precision: Int = FullPrecision, maxRanges: Option[Int] = None): Seq[IndexRange]

    Gets ranges

    Gets ranges

    xy

    sequence of bounding boxes, in the form of (xmin, ymin, xmax, ymax)

    precision

    precision of the zvalues to consider, up to 64 bits

    maxRanges

    rough upper bound on the number of ranges to return

Concrete Value Members

  1. def ranges(x: (Double, Double), y: (Double, Double), precision: Int, maxRanges: Option[Int]): Seq[IndexRange]
  2. def ranges(x: (Double, Double), y: (Double, Double), precision: Int): Seq[IndexRange]
  3. def ranges(x: (Double, Double), y: (Double, Double)): Seq[IndexRange]