GPKGGriddedTile
Objective-C
@interface GPKGGriddedTile : NSObject <NSMutableCopying>
Swift
class GPKGGriddedTile : NSObject, NSMutableCopying
Gridded Tile object
-
Auto increment primary key
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *id;
Swift
var id: NSNumber! { get set }
-
Name of tile pyramid user data table
Declaration
Objective-C
@property (nonatomic, strong) NSString *tableName;
Swift
var tableName: String! { get set }
-
Foreign key to id in tile pyramid user data table
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *tableId;
Swift
var tableId: NSNumber! { get set }
-
Scale as a multiple relative to the unit of measure
Declaration
Objective-C
@property (nonatomic, strong) NSDecimalNumber *scale;
Swift
var scale: NSDecimalNumber! { get set }
-
The offset to the 0 value
Declaration
Objective-C
@property (nonatomic, strong) NSDecimalNumber *offset;
Swift
var offset: NSDecimalNumber! { get set }
-
Minimum value of this tile
Declaration
Objective-C
@property (nonatomic, strong) NSDecimalNumber *min;
Swift
var min: NSDecimalNumber! { get set }
-
Maximum value of this tile
Declaration
Objective-C
@property (nonatomic, strong) NSDecimalNumber *max;
Swift
var max: NSDecimalNumber! { get set }
-
The arithmetic mean of values in this tile
Declaration
Objective-C
@property (nonatomic, strong) NSDecimalNumber *mean;
Swift
var mean: NSDecimalNumber! { get set }
-
The standard deviation of values in this tile
Declaration
Objective-C
@property (nonatomic, strong) NSDecimalNumber *standardDeviation;
Swift
var standardDeviation: NSDecimalNumber! { get set }
-
Set the contents
Declaration
Objective-C
- (void)setContents:(GPKGContents *)contents;
Swift
func setContents(_ contents: GPKGContents!)
Parameters
contents
contents
-
Get the scale or default value
Declaration
Objective-C
- (double)scaleOrDefault;
Swift
func scaleOrDefault() -> Double
Return Value
scale as a multiple relative to the unit of measure
-
Get the offset or default value
Declaration
Objective-C
- (double)offsetOrDefault;
Swift
func offsetOrDefault() -> Double
Return Value
offset to the 0 value