Class Field
Wrap an OGR Field. Needs to be instantiated from a Feature object.
Declaration
source linkDocumentation
Methods
▷ def __init__(self, feat, index) Initialize on the feature object and the integer index of the field within the feature.
▷ def __str__(self) Return the string representation of the Field.
▷ def as_datetime(self) Retrieve the Field's value as a tuple of date & time components.
▷ def as_double(self) Retrieve the Field's value as a double (float).
▷ def as_int(self, is_64=False) Retrieve the Field's value as an integer.
▷ def as_string(self) Retrieve the Field's value as a string.
▷ def is_set(self) @property Return True if the value of this field isn't null, False otherwise.
@property
def is_set(self)
▷ def name(self) @property Return the name of this Field.
▷ def precision(self) @property Return the precision of this Field.
@property
def precision(self)
▶ def type(self) @property Return the OGR type of this Field.
Overrides
This method is overriden in:
▷ def type_name(self) @property Return the OGR field type name for this Field.
@property
def type_name(self)
▶ def value(self) @property Return the value of this Field.
Overrides
This method is overriden in:
▷ def width(self) @property Return the width of this Field.