Exemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            RasterIdentify id = new RasterIdentify();

            id.ThemeIdentify      = "CMA";
            id.ProductIdentify    = "FIR";
            id.SubProductIdentify = "2VAL";
            id.Satellite          = "FY3A";
            id.Sensor             = "MERSI";
            id.Resolution         = "250M";
            id.OrbitDateTime      = DateTime.Now.Subtract(new TimeSpan(1, 0, 0, 0, 0));
            id.GenerateDateTime   = DateTime.Now;
            //
            rst = new InterestedRaster <byte>(id,
                                              new Size(2000, 2000),
                                              new GeoDo.RSS.Core.DF.CoordEnvelope(110, 130, 24, 54),
                                              GeoDo.Project.SpatialReference.GetDefault());
            //
            rst.Reset();
            //
            rst.Dispose();
        }