We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d5f41 commit fd01045Copy full SHA for fd01045
src/main/java/mil/nga/geopackage/dgiwg/DGIWGValidate.java
@@ -693,6 +693,15 @@ public static DGIWGValidationErrors validateFeatureTable(
693
DGIWGRequirement.VALIDITY_DATA_VALIDITY,
694
primaryKeys(geometryColumns)));
695
}
696
+ if (crs.isType(CRSType.COMPOUND)) {
697
+ errors.add(new DGIWGValidationError(
698
+ SpatialReferenceSystem.TABLE_NAME,
699
+ CrsWktExtension.DEFINITION_COLUMN_NAME,
700
+ srs.getProjectionDefinition(),
701
+ "Compound CRS not allowed for Geometry Columns value of prohibited (0)",
702
+ DGIWGRequirement.CRS_COMPOUND,
703
+ primaryKey(srs)));
704
+ }
705
} else if (z == 1) {
706
if (!crs.isDataType(DataType.FEATURES_3D)) {
707
errors.add(new DGIWGValidationError(
0 commit comments