pramsey / pgsql-ogr-fdw

PostgreSQL foreign data wrapper for OGR
MIT License
237 stars 34 forks source link

Support OGR *List types #98

Closed pramsey closed 9 months ago

pramsey commented 8 years ago

OGR has StringList, IntegerList types, which have analogues in PgSQL space as text[] and integer[] types, so it's possible to cleanly support them. They are relatively uncommon in OGR data sources, so it's a low priority item.

pramsey commented 8 years ago

StringList seems to show up most commonly in GML and GeoJSON backed drivers (WFS, Couch, etc)

IntegerList shows up in those as well as TIGER and FGDB/ArcObjects.

Both show up in PostgreSQL drivers (no surprise).