DataSet.GetDataCoverage Method
Gets coverage information for this dataset in a given area.
GetDataCoverage(Rectangle areaOfInterest)
Gets coverage information for this dataset in a given area.Syntax
public RectangleSet GetDataCoverage (
Rectangle areaOfInterest
)
Parameters
Return Value
Remarks
Some datasets can give more detailed information about their data coverage than the simple Bounds property. If so, that information can be retrieved by this method. The default implementation, however, returns only Bounds.
More specifically, this method returns a set of rectangles that indicates what part of the area of interest that is covered with data.
Example
// Get data coverage for Europe in Wgs84LongLat
public static RectangleSet GetDataCoverageForEuropeInWgs84LongLat(DataSet dataSet)
{
// The bounds of Europe in Wgs84LongLat
Rectangle europeBoundary = new Rectangle(-13.01, 35.96, 32.17, 71.69);
// Project the bounds of Europe to the Crs of the DataSet
Rectangle projectedBoundary = Crs.Wgs84LongLat.ProjectTo(dataSet.Crs, europeBoundary).Bounds;
// Get the data coverage in Europe
RectangleSet dataCoverage = dataSet.GetDataCoverage(projectedBoundary);
// Project the data coverage to Wgs84LongLat and return it
return dataSet.Crs.ProjectTo(Crs.Wgs84LongLat, dataCoverage);
}
Platforms
Windows, Linux, Android