-
Notifications
You must be signed in to change notification settings - Fork 0
RasterCS
sindizzy edited this page Dec 30, 2020
·
4 revisions
Be sure to install the GDAL extension if you want to view different types of files.
using DotSpatial.Data;
private void button1_Click(object sender, EventArgs e)
{
IRaster r = Raster.Open(@"C:\[Your File Path](Your-File-Path)\O44121a1.bgd");
r.GetStatistics();
double value = r.Maximum;
}