Hi Julian,
Although they all use the â.tifâ/â.tiffâ extension, TIFF files can be very different under the hood:
-
Plain TIFF has no geospatial metadata (no projection, no bounding box, etc.).
-
GeoTIFF embeds CRS, extent, and can be internally âstripedâ or âtiled.â
WpfRasterLayer only supports nonâgeoreferenced TIFFs. It wonât read embedded GeoTIFF tagsâyouâll need a separate world file (.tfw) to place it on the map.
GeoTiffRasterLayer and GeoTiffGdalRasterLayer both read full GeoTIFFs:
-
GeoTiffGdalRasterLayer (GDALâbacked) is the newest and fastest option, but it isnât available on mobile platforms.
-
GeoTiffRasterLayer (managed reader) works everywhere (including mobile), but itâs less upâtoâdate and slower.
Hope that clears things upâso I would recommend using the Gdal version if you can.
Let me know if you have any other questions!
Thanks,
Ben