Hey,
I have some troubles assigning projection converter to GeoTiffRasterLayer. Please see the following code:
var layer = new GeoTiffRasterLayer("UQ5111R_RVK_1.tif", "UQ5111R_RVK_1.tfw");
var converter = new ProjectionConverter(3067, 3857);
converter.Open();
layer.ImageSource.ProjectionConverter = converter;
return layer;
If I leave the converter out raster is displayed on the map. When converter is as it is, map view shows the following error message:
This function relies on ThinkGeo.UnmanagedProj.nupkg. Please install this package first. Or this function is not supported on current platform.
But I think I have that and maybe some unnecessary dependencies, too (Win10, VS2017, .NET Framework 4.8)
TIF and TFW files can be found zipped here https://drive.google.com/file/d/1QbbLKLvEaQPuTvg58NqIHl4BJ1AURL09/view?usp=sharing
Versions I’m having (x64)
ThinkGeo.Core.13.0.0-beta219
ThinkGeo.Dependency.Gdal.12.2.5
ThinkGeo.Gdal.13.0.0-beta213
ThinkGeo.UI.Wpf.13.0.0-beta250
ThinkGeo.UnmanagedGeoTiff.13.0.0-beta211
ThinkGeo.UnmanagedProj.13.0.0-beta209