RadioPlan CoveragePlotsExport: Difference between revisions

From Maria GDK Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
Coverage chart export can be done to GeoTIFF files.
Coverage chart export can be done to GeoTIFF files.


This is done with interface  
This is done with interface function ExportCoverageChartToGeoTiff <syntaxhighlight lang="c#">
Result IRadioCoverage.ExportCoverageChartToGeoTiff(string filePath, ReadOnlyCollection<Radio> radios, int maxPixelsInTiff = int.MaxValue, double limitMetricResolution = 0.0, RenderColorSchema? renderColourSchema=null);
</syntaxhighlight>By default, the pixel size of the export will be the same as for the coverage file with least resolution.
 
In addition 2 arguments can be set to controll filesize and processing time:
 
* maxPixelsInTiff can be used to set a limit to the overall size of the geoTiff-file. If number of pixels based on the coverage files will excess this limit, the resolution is automatically downsized to fit this limit.
 
Secondly:
 
* limitMetricResolution can be used to limit the resolution of exported geoTiff-file. E.g. if coverage files have 60m resolution, this value can be set to export to a lower resolution like e.g. 200m.


IRadioCoverage<syntaxhighlight lang="c#">
Result IRadioCoverage.ExportCoverageChartToGeoTiff(string filePath, ReadOnlyCollection<Radio> radios, int maxPixelsInTiff = int.MaxValue, double limitMetricResolution = 0.0, RenderColorSchema? renderColourSchema=null);
</syntaxhighlight>
[[Category:RadioPlan]]
[[Category:RadioPlan]]


{{DEFAULTSORT:Coverage export}}
{{DEFAULTSORT:Coverage export}}

Revision as of 13:00, 1 July 2026

Coverage chart export can be done to GeoTIFF files.

This is done with interface function ExportCoverageChartToGeoTiff

Result IRadioCoverage.ExportCoverageChartToGeoTiff(string filePath, ReadOnlyCollection<Radio> radios, int maxPixelsInTiff = int.MaxValue, double limitMetricResolution = 0.0, RenderColorSchema? renderColourSchema=null);

By default, the pixel size of the export will be the same as for the coverage file with least resolution.

In addition 2 arguments can be set to controll filesize and processing time:

  • maxPixelsInTiff can be used to set a limit to the overall size of the geoTiff-file. If number of pixels based on the coverage files will excess this limit, the resolution is automatically downsized to fit this limit.

Secondly:

  • limitMetricResolution can be used to limit the resolution of exported geoTiff-file. E.g. if coverage files have 60m resolution, this value can be set to export to a lower resolution like e.g. 200m.