Skip to main content
Question

Change value of multiple rasters

  • April 5, 2019
  • 2 replies
  • 20 views

Hi all,

I'm quite new with FME, so I hope you can help me. I would like to change the value of multiple rasters. I know you can do that for one raster, but I have a lot of rasters (>200). Is there a way to this?

I'm using FME desktop 2018.1.

Many thanks in advance.

Kees

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
  • April 5, 2019

Depending on the size of the rasters, you can read them all in with one reader, and use a dynamic writer with the raster file name set to fme_basename.

 

If your rasters are too large to process in one shot, you can set up a child workspace that does the processing (on a single raster), and then have a controller workspace that uses the pathnames reader to get the paths of the rasters, and send them to a workspaceRunner that calls the child workspace.


  • Author
  • 1 reply
  • April 11, 2019

Thanks a lot. This is very helpfull.