object ColorMap extends Serializable

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

Type Members

  1. case class Options(classBoundaryType: ClassBoundaryType = LessThanOrEqualTo, noDataColor: Int = 0x00000000, fallbackColor: Int = 0x00000000, strict: Boolean = false) extends Product with Serializable

Value Members

  1. def apply(breaks: Vector[Double], colorRamp: ColorRamp, options: Options)(implicit d: DummyImplicit): ColorMap
  2. def apply(breaks: Vector[Double], colorRamp: ColorRamp)(implicit d: DummyImplicit): ColorMap
  3. def apply(breaks: Array[Double], colorRamp: ColorRamp, options: Options)(implicit d: DummyImplicit): ColorMap
  4. def apply(breaks: Array[Double], colorRamp: ColorRamp)(implicit d: DummyImplicit): ColorMap
  5. def apply(breaks: Vector[Int], colorRamp: ColorRamp, options: Options): ColorMap
  6. def apply(breaks: Vector[Int], colorRamp: ColorRamp): ColorMap
  7. def apply(breaks: Array[Int], colorRamp: ColorRamp, options: Options): ColorMap
  8. def apply(breaks: Array[Int], colorRamp: ColorRamp): ColorMap
  9. def apply(breaksToColors: Map[Double, Int], options: Options)(implicit d: DummyImplicit): ColorMap
  10. def apply(breaksToColors: Map[Double, Int])(implicit d: DummyImplicit): ColorMap
  11. def apply(breaksToColors: (Double, Int)*)(implicit d: DummyImplicit): ColorMap
  12. def apply(breaksToColors: Map[Int, Int], options: Options): ColorMap
  13. def apply(breaksToColors: Map[Int, Int]): ColorMap
  14. def apply(breaksToColors: (Int, Int)*): ColorMap
  15. def fromQuantileBreaks(histogram: histogram.Histogram[Double], colorRamp: ColorRamp, options: Options)(implicit d: DummyImplicit): ColorMap
  16. def fromQuantileBreaks(histogram: histogram.Histogram[Double], colorRamp: ColorRamp)(implicit d: DummyImplicit): ColorMap
  17. def fromQuantileBreaks(histogram: histogram.Histogram[Int], colorRamp: ColorRamp, options: Options): ColorMap
  18. def fromQuantileBreaks(histogram: histogram.Histogram[Int], colorRamp: ColorRamp): ColorMap
  19. def fromString(str: String): Option[ColorMap]

    Parse an integer color map from a string of value:color;value:color;...

  20. def fromStringDouble(str: String): Option[ColorMap]

    Parse an integer color map from a string of value:color;value:color;...

  21. object Options extends Serializable