您可以向 GeoTiffs 添加颜色渐变吗?
我正在尝试做内核密度中解释的事情
我们已经知道这样一行:
kde.renderPng(kdeColorMap).write(“kde-buoy-waveHeight.png”)
我们可以写出一个带颜色的PNG…</p>
但我似乎无法弄清楚如何将该颜色添加到 GeoTiff...</p>
我试过这个:
val iColorMap: IndexedColorMap = new IndexedColorMap(delauColorMap.colors)
val geoTiffOptions = GeoTiffOptions(colorMap = iColorMap)
val delauWebMer: Raster[Tile] = delau.reproject(extent, LatLng, WebMercator)
val extentWebMer: Extent = extent.reproject(LatLng, WebMercator)
val headTags: Map[String, String] = Map()
val bandTags: List[Map[String, String]] = List()
val tags: Tags = Tags(headTags, bandTags)
val tiff = SinglebandGeoTiff(delauWebMer, extentWebMer, WebMercator, tags, geoTiffOptions)
tiff.write("BuoyDelau3857.tif")
但得到以下异常:
IncompatibleGeoTiffOptionsException: 'Palette' color space only supported for 8 or 16 bit integral cell types.
这有效:
val tiff = GeoTiff(delauWebMer, extentWebMer, WebMercator)
tiff.write("BuoyDelau3857.tif")
但没有给我们颜色图,输出是灰度的。