-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: shapefile writer exports valid shapefiles for mappings includin…
…g feature types with no geometry Export valid shapefiles, including .cpg, for feature types with geometries. Displays a warning that feature types with no geometry will not be exported to shapefile. ING-3974
- Loading branch information
1 parent
019cb4e
commit 38bb2cb
Showing
7 changed files
with
105 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...dt.hale.io.shp.ui/src/eu/esdihumboldt/hale/io/shp/ui/ShapeTargetCRSConfigurationPage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright (c) 2020 wetransform GmbH | ||
* | ||
* All rights reserved. This program and the accompanying materials are made | ||
* available under the terms of the GNU Lesser General Public License as | ||
* published by the Free Software Foundation, either version 3 of the License, | ||
* or (at your option) any later version. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this distribution. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Contributors: | ||
* wetransform GmbH <http://www.wetransform.to> | ||
*/ | ||
|
||
package eu.esdihumboldt.hale.io.shp.ui; | ||
|
||
import eu.esdihumboldt.hale.common.core.io.IOProvider; | ||
import eu.esdihumboldt.hale.common.instance.io.GeoInstanceWriter; | ||
import eu.esdihumboldt.hale.ui.io.IOWizard; | ||
import eu.esdihumboldt.hale.ui.io.config.SimpleTargetCRSConfigurationPage; | ||
|
||
/** | ||
* Configuration page for the Shape UI. | ||
* | ||
* @param <W> the concrete I/O wizard type | ||
* @param <P> the {@link IOProvider} type used in the wizard | ||
* | ||
* @author Emanuela Epure | ||
*/ | ||
public class ShapeTargetCRSConfigurationPage<P extends GeoInstanceWriter, W extends IOWizard<P>> | ||
extends SimpleTargetCRSConfigurationPage<P, W> { | ||
|
||
/** | ||
* Default constructor. | ||
*/ | ||
public ShapeTargetCRSConfigurationPage() { | ||
super(true); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters