Skip to content

Commit 9deab0b

Browse files
committed
Fixed ColorRamp pipeline in MultibandRender.
Signed-off-by: Simeon H.K. Fitch <[email protected]>
1 parent 92c70f2 commit 9deab0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/astraea/spark/rasterframes/util/MultibandRender.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ object MultibandRender {
130130
case class ColorRampProfile(ramp: ColorRamp) extends Profile {
131131
// Are there other ways to use the other bands?
132132
override def render(tile: MultibandTile): Png =
133-
colorAdjust(tile.band(0)).renderPng(ramp)
133+
applyAdjustment(tile.band(0)).renderPng(ramp)
134134
}
135135
}

0 commit comments

Comments
 (0)