Packages

c

geotrellis.spark.summary

StatsTileRDDMethods

abstract class StatsTileRDDMethods[K] extends MethodExtensions[RDD[(K, Tile)]]

Linear Supertypes
MethodExtensions[RDD[(K, Tile)]], Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StatsTileRDDMethods
  2. MethodExtensions
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StatsTileRDDMethods()(implicit arg0: ClassTag[K])

Abstract Value Members

  1. abstract def self: RDD[(K, Tile)]
    Definition Classes
    MethodExtensions

Concrete Value Members

  1. def averageByKey(partitioner: Option[Partitioner] = None): RDD[(K, Tile)]
  2. def classBreaks(numBreaks: Int): Array[Int]
  3. def classBreaksDouble(numBreaks: Int): Array[Double]
  4. def classBreaksExactInt(numBreaks: Int): Array[Int]

    Gives class breaks using a histogram that uses exact counts of integer values.

    Gives class breaks using a histogram that uses exact counts of integer values.

    Note

    This cannot handle counts that are larger than Int.MaxValue, and should not be used with very large datasets whose counts will overflow. These histograms can get very large with a wide range of values.

  5. def histogram(numBuckets: Int, fraction: Double = 1.0, seed: Long = 33): Histogram[Double]

    Compute the histogram of an RDD of Tile objects.

    Compute the histogram of an RDD of Tile objects.

    numBuckets

    The number of buckets that the histogram should have

    fraction

    The fraction of Tile objects to sample (the default is 100%)

    seed

    The seed of the RNG which determines which tiles to take the histograms of

    returns

    A Histogram[Double]

  6. def histogram(): Histogram[Double]

    Compute the histogram of an RDD of Tile objects.

    Compute the histogram of an RDD of Tile objects.

    returns

    A Histogram[Double]

  7. def histogramExactInt: Histogram[Int]

    Gives a histogram that uses exact counts of integer values.

    Gives a histogram that uses exact counts of integer values.

    Note

    This cannot handle counts that are larger than Int.MaxValue, and should not be used with very large datasets whose counts will overflow. These histograms can get very large with a wide range of values.

  8. def minMax: (Int, Int)
  9. def minMaxDouble: (Double, Double)