mil.nga.geopackage.extension.link.FeatureTileLink Java Examples
The following examples show how to use
mil.nga.geopackage.extension.link.FeatureTileLink.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GeoPackageCoreImpl.java From geopackage-core-java with MIT License | 6 votes |
/** * {@inheritDoc} */ @Override public boolean createFeatureTileLinkTable() { verifyWritable(); boolean created = false; FeatureTileLinkDao dao = getFeatureTileLinkDao(); try { if (!dao.isTableExists()) { created = tableCreator.createFeatureTileLink() > 0; } } catch (SQLException e) { throw new GeoPackageException("Failed to check if " + FeatureTileLink.class.getSimpleName() + " table exists and create it", e); } return created; }
Example #2
Source File: GeoPackageDaoManager.java From geopackage-core-java with MIT License | 6 votes |
/** * Unregister all GeoPackage DAO with the connection source * * @param connectionSource * connection source */ public static void unregisterDaos(ConnectionSource connectionSource) { // TODO when ormlite-core version > 5.1 is released, replace with: // "DaoManager.unregisterDaos(connectionSource);" // See https://github.com/j256/ormlite-core/pull/149 unregisterDao(connectionSource, Contents.class, SpatialReferenceSystem.class, SpatialReferenceSystemSfSql.class, SpatialReferenceSystemSqlMm.class, Extensions.class, GriddedCoverage.class, GriddedTile.class, GeometryIndex.class, TableIndex.class, FeatureTileLink.class, ExtendedRelation.class, TileScaling.class, GeometryColumns.class, GeometryColumnsSfSql.class, GeometryColumnsSqlMm.class, Metadata.class, MetadataReference.class, DataColumns.class, DataColumnConstraints.class, TileMatrix.class, TileMatrixSet.class, ContentsId.class); }
Example #3
Source File: GeoPackageCoreImpl.java From geopackage-core-java with MIT License | 4 votes |
/** * {@inheritDoc} */ @Override public FeatureTileLinkDao getFeatureTileLinkDao() { return createDao(FeatureTileLink.class); }