Für das, was es wert ist, habe ich ein Python-Paket, das eine solche Zuordnung enthält. Siehe https://github.com/Toblerity/Fiona/blob/master/src/fiona/ogrext.pyx#L18 . Hier kopiert:
# Mapping of OGR integer field types to Fiona field type names.
#
# Only ints, floats, and unicode strings are supported. On the web, dates and
# times are represented as strings (see RFC 3339).
FIELD_TYPES = [
'int', # OFTInteger, Simple 32bit integer
None, # OFTIntegerList, List of 32bit integers
'float', # OFTReal, Double Precision floating point
None, # OFTRealList, List of doubles
'str', # OFTString, String of ASCII chars
None, # OFTStringList, Array of strings
None, # OFTWideString, deprecated
None, # OFTWideStringList, deprecated
None, # OFTBinary, Raw Binary data
None, # OFTDate, Date
None, # OFTTime, Time
None, # OFTDateTime, Date and Time
]
# Mapping of Fiona field type names to Python types.
FIELD_TYPES_MAP = {
'int': IntType,
'float': FloatType,
'str': UnicodeType,
}
Meine Zuordnung ist unvollständig, da ich in freier Wildbahn nicht auf viele OFT * -Listenfelder stoße. Sie möchten diese wahrscheinlich Python-Arrays zuordnen (OFTIntegerList -> Array ('i') zum Beispiel), da Pythons Listen nicht typisiert sind. OFTDate / Time-Felder sind der Teufel, und die Zuordnung zu Python DateTime verbessert die Situation nicht, da die Datetime-Modul-API schrecklich ist. In meinem Projekt werde ich Datums- und Uhrzeitangaben ISO 8601-Zeichenfolgen wie "2012-01-02T20: 59: 38Z" zuordnen. Rohe Binärdaten würden einer Nicht-Unicode-Python-Zeichenfolge zugeordnet (die in Python 3 zum Bytetyp wird).