private void Output(IEnumerable <Feature> bufferedFeatures, string path, string projection)
        {
            ShpFileExporter exporter        = new ShpFileExporter();
            string          projectionInWKT = GdalHelper.Proj4ToWkt(projection);
            FileExportInfo  info            = new FileExportInfo(bufferedFeatures, columns, path, projectionInWKT);

            exporter.ExportToFile(info);
        }
Пример #2
0
        private void Output(IEnumerable <Feature> bufferedFeatures)
        {
            string         projectionInWKT = GdalHelper.Proj4ToWkt(displayProjectionParameters);
            FileExportInfo info            = new FileExportInfo(bufferedFeatures, GetColumns(), outputPath, projectionInWKT);

            ShpFileExporter exporter = new ShpFileExporter();

            exporter.ExportToFile(info);
        }