Para lo que vale, tengo un paquete de Python que contiene tal asignación. Ver https://github.com/Toblerity/Fiona/blob/master/src/fiona/ogrext.pyx#L18. Copiado de 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 asignación es incompleta, porque no se ejecutan en muchos OFT*Lista de campos en la naturaleza. Te gustaría asignar estos a Python matrices, supongo (OFTIntegerList -> array('i') por ejemplo), ya que las listas de Python no se ha escrito. OFTDate/campos de Tiempo son el diablo y la asignación de estos a Python DateTime no mejora la situación debido a que el módulo datetime API es horrible. En mi proyecto, voy a mapa de fechas y horas para la norma ISO 8601 cadenas como "2012-01-02T20:59:38Z". Binario de datos se asignan a un no-unicode cadena Python (que se convierte en la bytes tipo en Python 3).