implicit class withSinglebandRenderMethods extends ColorMethods with JpgRenderMethods with PngRenderMethods with AsciiRenderMethods
- Alphabetic
- By Inheritance
- withSinglebandRenderMethods
- AsciiRenderMethods
- PngRenderMethods
- JpgRenderMethods
- ColorMethods
- MethodExtensions
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
asciiDraw(): String
Return ascii art of this raster.
Return ascii art of this raster.
- Definition Classes
- AsciiRenderMethods
-
def
asciiDrawDouble(significantDigits: Int = Int.MaxValue): String
Return ascii art of this raster.
Return ascii art of this raster. The single int parameter indicates the number of significant digits to be printed.
- Definition Classes
- AsciiRenderMethods
-
def
asciiDrawRange(colMin: Int, rowMin: Int, colMax: Int, rowMax: Int): String
Return ascii art of a range from this raster.
Return ascii art of a range from this raster.
- Definition Classes
- AsciiRenderMethods
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
color(colorMap: ColorMap): Tile
- Definition Classes
- ColorMethods
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
renderAscii(palette: Palette = AsciiArtEncoder.Palette.WIDE): String
- Definition Classes
- AsciiRenderMethods
-
def
renderJpg(colorMap: ColorMap, settings: Settings): Jpg
Generate a JPG image from a raster.
Generate a JPG image from a raster.
Use this operation when you have a raster of data that you want to visualize with an image.
To render a data raster into an image, the operation needs to know which values should be painted with which colors. To that end, you'll need to generate a ColorBreaks object which represents the value ranges and the assigned color. One way to create these color breaks is to use the geotrellis.raster.stats.op.stat.GetClassBreaks operation to generate quantile class breaks.
- Definition Classes
- JpgRenderMethods
-
def
renderJpg(colorMap: ColorMap): Jpg
- Definition Classes
- JpgRenderMethods
-
def
renderJpg(colorRamp: ColorRamp, settings: Settings): Jpg
- Definition Classes
- JpgRenderMethods
-
def
renderJpg(colorRamp: ColorRamp): Jpg
- Definition Classes
- JpgRenderMethods
-
def
renderJpg(settings: Settings): Jpg
Generate a JPG from a raster of RGBA integer values.
Generate a JPG from a raster of RGBA integer values.
Use this operation when you have created a raster whose values are already RGBA color values that you wish to render into a JPG. If you have a raster with data that you wish to render, you should use RenderJpg instead.
An RGBA value is a 32 bit integer with 8 bits used for each component: the first 8 bits are the red value (between 0 and 255), then green, blue, and alpha (with 0 being transparent and 255 being opaque).
- Definition Classes
- JpgRenderMethods
-
def
renderJpg(): Jpg
- Definition Classes
- JpgRenderMethods
-
def
renderPng(colorRamp: ColorRamp): Png
- Definition Classes
- PngRenderMethods
-
def
renderPng(colorMap: ColorMap): Png
- Definition Classes
- PngRenderMethods
-
def
renderPng(colorEncoding: PngColorEncoding): Png
Generate a PNG from a raster of color encoded values.
Generate a PNG from a raster of color encoded values.
Use this operation when you have created a raster whose values are already encoded color values that you wish to render into a PNG.
- Definition Classes
- PngRenderMethods
-
def
renderPng(): Png
Generate a PNG from a raster of RGBA integer values.
Generate a PNG from a raster of RGBA integer values.
Use this operation when you have created a raster whose values are already RGBA color values that you wish to render into a PNG. If you have a raster with data that you wish to render, you should use RenderPng instead.
An RGBA value is a 32 bit integer with 8 bits used for each component: the first 8 bits are the red value (between 0 and 255), then green, blue, and alpha (with 0 being transparent and 255 being opaque).
- Definition Classes
- PngRenderMethods
-
val
self: Tile
- Definition Classes
- withSinglebandRenderMethods → MethodExtensions
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toBufferedImage: BufferedImage
- Definition Classes
- ColorMethods
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()