Skip to main content
Solved

Visualize 1 band raster DEM in RGB

  • December 3, 2019
  • 2 replies
  • 80 views

Forum|alt.badge.img

Hi everyone,

I have a very basic (I guess) issue that I can't deal with nor find an appropriate tutorial or answer on the web... I have a 1 band Geotiff that comes from a substraction between two Digital Elevation Models (bathymetric survey). I manage to give a value to nodata (RasterBandNodataSetter) and remove the nodata identifier (RasterBandNodataRemover). So the Geotiff I'm working with as no nodata.

I want to associate color (chosen or by default) to different ranges of value, just for visualization of the result. I can do it with any GIS software (like ArcGIS) but couldn't manage to do it with FME. I tried to connect a RasterPaletteGenerator to the Geotiff Reader but I get a translation terminated with the rejection code 'INVALID_RASTER_BAND'.

As I have no idea of the problem and where to start to manipulate palette and raster band, any help or links to tutorial or web pages would be greatly appreciated.

Please find attached the Geotiff I'm talking about.

Thanks you

Jérémie

Best answer by jdh

Your tif is real32, to use Palettes you need an integer band interpretation.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

jdh
Contributor
Forum|alt.badge.img+37
  • Contributor
  • 2002 replies
  • Best Answer
  • December 3, 2019

Your tif is real32, to use Palettes you need an integer band interpretation.


Forum|alt.badge.img

Your tif is real32, to use Palettes you need an integer band interpretation.

Thanks a lot for your answer