You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
support for reading from file-like objects and in-memory buffers (#25)
index of GeoDataFrame created by read_dataframe can now optionally be set
to the FID of the features that are read, as int64 dtype. Note that some
drivers start FID numbering at 0 whereas others start numbering at 1.
generalize check for VSI files from /vsizip to /vsi (#29)
support for writing missing (null) geometries (#59)
Breaking changes
read now also returns an optional FIDs ndarray in addition to meta,
geometries, and fields; this is the 2nd item in the returned tuple.
Potentially breaking changes
Consolidated error handling to better use GDAL error messages and specific
exception classes (#39). Note that this is a breaking change only if you are
relying on specific error classes to be emitted.
by default, writing GeoDataFrames with mixed singular and multi geometry
types will automatically promote to the multi type if the driver does not
support mixed geometry types (e.g., FGB, though it can write mixed geometry
types if geometry_type is set to "Unknown")
the geometry type of datasets with multiple geometry types will be set to "Unknown" unless overridden using geometry_type. Note: "Unknown" may be ignored by some drivers (e.g., shapefile)
Bug fixes
use dtype object instead of numpy.object to eliminate deprecation warnings (#34)