Por lo que vale, tengo un paquete de Python que contiene dicha asignación. Ver https://github.com/Toblerity/Fiona/blob/master/src/fiona/ogrext.pyx#L18 . Copiado aquí:
# 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,
}
Mi mapeo está incompleto porque no me encuentro con muchos campos OFT * List en la naturaleza. Supongo que querrá asignarlos a matrices de Python (OFTIntegerList -> array ('i') por ejemplo) ya que las listas de Python no están escritas. Los campos OFTDate / Time son el demonio y asignarlos a Python DateTime no mejora la situación porque la API del módulo datetime es horrible. En mi proyecto, voy a asignar fechas y horas a cadenas ISO 8601 como "2012-01-02T20: 59: 38Z". Los datos binarios sin procesar se asignarían a una cadena de Python no unicode (que se convierte en el tipo de bytes en Python 3).