Is there any way to do this in FME Desktop 2014 ? My initial thoughts are:
Read the TIFs
Read the shape file
Use RasterGeoReferencer <--- somehow correlate each grid square's coordinates to each TIF file.
Any ideas would be greatly appreciated.
Is there any way to do this in FME Desktop 2014 ? My initial thoughts are:
Read the TIFs
Read the shape file
Use RasterGeoReferencer <--- somehow correlate each grid square's coordinates to each TIF file.
Any ideas would be greatly appreciated.
When u add it to your workbench you can check out the formatparameters.
You can use the shape grid to create the geotiff.
Check out the reader/writer gallery.
"If you know the bounding coordinates of the image you can us gdal_translate with the -a_srs (this assigns the projection) and -a_ullr (this is the bounding coordinates). "
use a BoundsExtractor to get the XY coordinates (if the images have a rotation, you will have to get the 4 corners individually)
use a CoordinateSystemExtractor to get the coordinate system
if necessary build the full path to the tif image (as opposed to just the image name)
RasterReader, setting the dataset file to the attribute containing the path to the tif
RasterGeoReferencer with the extents previously extracted.
CoordinateSystemSetter with the coordsys previously extracted
Geotif writer