Package

geotrellis.raster

render

Permalink

package render

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

Type Members

  1. class BreakMap[A, B] extends (A) ⇒ B with Serializable

    Permalink

    A Map which provides specific Binary Search-based map behaviour with breaks and a break strategy.

    A Map which provides specific Binary Search-based map behaviour with breaks and a break strategy.

    val bm: BreakMap[Int, Int] = ...
    val t: Tile = ...
    
    // Map all the cells of `t` to a target bin value in O(klogn).
    val newT: Tile = t.map(vm)

    Note: A and B are specialized on Int and Double.

  2. sealed trait ClassBoundaryType extends AnyRef

    Permalink

    Root element in hierarchy for specifying the type of boundary when classifying colors

  3. trait ColorMap extends Serializable

    Permalink
  4. trait ColorMethods extends MethodExtensions[Tile]

    Permalink
  5. class ColorRamp extends Serializable

    Permalink

    A ColorRamp represents a sequence of RGBA color values

  6. class DoubleColorMap extends ColorMap

    Permalink
  7. sealed trait ImageFormat extends AnyRef

    Permalink
  8. class IndexedColorMap extends IntColorMap

    Permalink

    A color map where the breaks are monotonically increasing integer values starting at zero.

    A color map where the breaks are monotonically increasing integer values starting at zero. Primarily used for capturing and persisting indexed color maps in GeoTIFFs.

  9. class IntCachedColorMap extends ColorMap

    Permalink

    Caches a color ramp based on a histogram of values.

    Caches a color ramp based on a histogram of values. This is an optimization, since often times we create a histogram while classifying, and can reuse that computed information in the color mapping.

  10. class IntColorMap extends ColorMap

    Permalink
  11. case class Jpg(bytes: Array[Byte]) extends ImageFormat with Product with Serializable

    Permalink
  12. trait JpgRenderMethods extends MethodExtensions[Tile]

    Permalink
  13. class MapStrategy[A] extends Serializable

    Permalink

    A strategy for mapping values via a BreakMap.

    A strategy for mapping values via a BreakMap.

    Note: Specialized for Int and Double.

  14. trait MultibandColorMethods extends MethodExtensions[MultibandTile]

    Permalink
  15. trait MultibandJpgRenderMethods extends MethodExtensions[MultibandTile]

    Permalink
  16. trait MultibandPngRenderMethods extends MethodExtensions[MultibandTile]

    Permalink
  17. case class Png(bytes: Array[Byte]) extends ImageFormat with Product with Serializable

    Permalink
  18. trait PngRenderMethods extends MethodExtensions[Tile]

    Permalink
  19. implicit final class RGBA extends AnyVal

    Permalink

Value Members

  1. object BreakMap extends Serializable

    Permalink

    Helper methods for constructing BreakMaps.

  2. object ColorMap extends Serializable

    Permalink
  3. object ColorRamp extends Serializable

    Permalink
  4. object ColorRamps

    Permalink
  5. object Exact extends ClassBoundaryType with Product with Serializable

    Permalink
  6. object GreaterThan extends ClassBoundaryType with Product with Serializable

    Permalink
  7. object GreaterThanOrEqualTo extends ClassBoundaryType with Product with Serializable

    Permalink
  8. object IndexedColorMap extends Serializable

    Permalink
  9. object Jpg extends Serializable

    Permalink
  10. object LessThan extends ClassBoundaryType with Product with Serializable

    Permalink
  11. object LessThanOrEqualTo extends ClassBoundaryType with Product with Serializable

    Permalink
  12. object MapStrategy extends Serializable

    Permalink

    Helper methods for constructing a MapStrategy.

  13. object Png extends Serializable

    Permalink
  14. object RGB

    Permalink
  15. object RGBA

    Permalink
  16. package jpg

    Permalink
  17. package png

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped