You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another error: Requirement 25 calls for the geometry_type_name in gpkg_geometry_columns to be upper case but in the sample file they are lower case ("point", "multilinestring").
Another error: Requirement 31 calls for the geometry_type_name in gpkg_geometry_columns to match the actual geometry type in the user-defined table. The tables have type GEOMETRY where the rows say either "multilinestring" or "point".
SELECT * FROM 'gpkg_geometry_columns'
geometry_type_name table_name m z srs_id column_name
point s_manhole 2 2 27700 the_geom
multilinestring foul_sewer 2 2 27700 the_geom
multilinestring surface_water_sewer 2 2 27700 the_geom
pragma table_info(s_manhole)
cid name type notnull dflt_value pk
0 id INTEGER 0 null 1
1 the_geom GEOMETRY 0 null 0
2 feature_id TEXT 0 null 0
3 targetfeat TEXT 0 null 0
4 function TEXT 0 null 0
5 date_constructed INTEGER 0 null 0
6 cover_level INTEGER 0 null 0
7 conf_factor TEXT 0 null 0
8 cover_type TEXT 0 null 0
9 venting TEXT 0 null 0
10 ipid INTEGER 0 null 0
11 ownership TEXT 0 null 0
gpkg_geometry_columns (3 rows)
I pulled open https://github.com/opengeospatial/ets-gpkg10/blob/master/src/test/resources/gpkg/simple_sewer_features.gpkg
It does not pass
/opt/features/vector_features/data/feature_table_integer_primary_key
The
NOTNULL
column for the primary key is supposed to be 1 but it is 0.The text was updated successfully, but these errors were encountered: