GPKGGriddedCoverageDao
Objective-C
@interface GPKGGriddedCoverageDao : GPKGBaseDao
                Swift
class GPKGGriddedCoverageDao : GPKGBaseDao
                Gridded Coverage Data Access Object
- 
                  
                  
Create the DAO
Declaration
Objective-C
+ (GPKGGriddedCoverageDao *)createWithDatabase:(GPKGConnection *)database;Swift
class func create(withDatabase database: GPKGConnection!) -> GPKGGriddedCoverageDao!Parameters
databasedatabase connection
Return Value
dao
 - 
                  
                  
Initialize
Declaration
Objective-C
- (instancetype)initWithDatabase:(GPKGConnection *)database;Swift
init!(database: GPKGConnection!)Parameters
databasedatabase connection
Return Value
new gridded coverage dao
 - 
                  
                  
Query by tile matrix set
Declaration
Objective-C
- (GPKGGriddedCoverage *)queryByTileMatrixSet: (GPKGTileMatrixSet *)tileMatrixSet;Swift
func query(by tileMatrixSet: GPKGTileMatrixSet!) -> GPKGGriddedCoverage!Parameters
tileMatrixSettile matrix set
Return Value
gridded coverage
 - 
                  
                  
Query by tile matrix set name
Declaration
Objective-C
- (GPKGGriddedCoverage *)queryByTileMatrixSetName:(NSString *)tileMatrixSetName;Swift
func query(byTileMatrixSetName tileMatrixSetName: String!) -> GPKGGriddedCoverage!Parameters
tileMatrixSetNametile matrix set name
Return Value
gridded coverage
 - 
                  
                  
Delete by tile matrix set
Declaration
Objective-C
- (int)deleteByTileMatrixSet:(GPKGTileMatrixSet *)tileMatrixSet;Swift
func delete(by tileMatrixSet: GPKGTileMatrixSet!) -> Int32Parameters
tileMatrixSettile matrix set
Return Value
deleted count
 - 
                  
                  
Delete by table name
Declaration
Objective-C
- (int)deleteByTableName:(NSString *)tableName;Swift
func delete(byTableName tableName: String!) -> Int32Parameters
tableNametable name
Return Value
deleted count
 - 
                  
                  
Get the tile matrix set
Declaration
Objective-C
- (GPKGTileMatrixSet *)tileMatrixSet:(GPKGGriddedCoverage *)griddedCoverage;Swift
func tileMatrixSet(_ griddedCoverage: GPKGGriddedCoverage!) -> GPKGTileMatrixSet!Parameters
griddedCoveragegridded coverage
Return Value
tile matrix set
 
View on GitHub
        GPKGGriddedCoverageDao Class Reference