GPKGCoverageDataAlgorithms

Objective-C

@interface GPKGCoverageDataAlgorithms : NSObject

/**
 *  Get the name of the coverage data algorithm
 *
 *  @param algorithm algorithm type
 *
 *  @return algorithm name
 */
+(NSString *) name: (enum GPKGCoverageDataAlgorithm) algorithm;

/**
 *  Get the coverage data algorithm type from the algorithm name
 *
 *  @param name algorithm name
 *
 *  @return algorithm type
 */
+(enum GPKGCoverageDataAlgorithm) fromName: (NSString *) name;

@end

Swift

class GPKGCoverageDataAlgorithms : NSObject

Undocumented