${iServerJava6R_InterpolationRBFAnalystParameters_Title}

${iServerJava6R_InterpolationRBFAnalystParameters_Description}

Inheritance: InterpolationAnalystParameters
        //执行样条(径向基函数)插值
        private void InterpolationRBF_Click(object sender, RoutedEventArgs e)
        {
            ClearLayers();
            MyProgressBar.Storyboard1.Begin();
            MyProgressBar.Visibility = Visibility.Visible;
            InterpolationRBFAnalystParameters param = new InterpolationRBFAnalystParameters();
            param.Dataset = "SamplesP@Interpolation";
            param.Bounds = new Rectangle2D(-2640403.6321084504, 1873792.1034850003, 3247669.390292245, 5921501.395578556);
            param.OutputDataset = "RBF";
            param.PixelFormat = PixelFormat.DOUBLE;
            param.SearchMode = SearchMode.KDTREE_FIXED_COUNT;
            param.SearchRadius = 0;
            param.ZValueFieldName = "AVG_TMP";
            InterpolationAnalystService service = new InterpolationAnalystService(url);
            service.ProcessCompleted += new EventHandler<InterpolateAnalystArgs>(processCompleted);
            service.Failed += new EventHandler<ServiceFailedEventArgs>(excuteErrors);
            service.ProcessAsync(param);

        }