(Geo)Arrow IPC File Format / Stream

3.5 新版功能.

司机简称

Arrow

生成依赖项

Apache Arrow C++ library

The Arrow IPC File Format (Feather) is a portable file format for storing Arrow tables or data frames (from languages like Python or R) that utilizes the Arrow IPC format internally.

The driver supports the 2 variants of the format:

  • File or Random Access format, also known as Feather: for serializing a fixed number of record batches. Random access is required to read such files, but they can be generated using a streaming-only capable file. The recommended extension for such file is .arrow

  • Streaming IPC format: for sending an arbitrary length sequence of record batches. The format must generally be processed from start to end, and does not require random access. That format is not generally materialized as a file. If it is, the recommended extension is .arrows (with a trailing s). But the driver can support regular files as well as the /vsistdin/ and /vsistdout/ streaming files. On opening, it might difficult for the driver to detect that the content is specifically a Arrow IPC stream, especially if the extension is not .arrows, and the metadata section is large. Prefixing the filename with ARROW_IPC_STREAM: (e.g "ARROW_IPC_STREAM:/vsistdin/") will cause the driver to unconditionally open the file as a streaming IPC format.

This driver also supports geometry columns using the GeoArrow specification.

备注

The driver should be considered experimental as the GeoArrow specification is not finalized yet.

驱动程序功能

Supports Create()

This driver supports the GDALDriver::Create() operation

Supports Georeferencing

This driver supports georeferencing

Supports VirtualIO

This driver supports virtual I/O operations (/vsimem/, etc.)

创建问题

The driver supports creating only a single layer in a dataset.

图层创建选项

  • COMPRESSION=string: Compression method. Can be one of NONE, ZSTD or LZ4. Available values depend on how the Arrow library was compiled. Defaults to LZ4 when available, otherwise NONE.

  • FORMAT=FILE/STREAM: Variant of the file format. See introduction paragraph for the difference between both. Defaults to FILE, unless the filename is "/vsistdout/" or its extension is ".arrows", in which case STREAM is used.

  • GEOMETRY_ENCODING=GEOARROW/WKB/WKT: Geometry encoding. Defaults to GEOARROW.

  • BATCH_SIZE=integer: Maximum number of rows per record batch. Default is 65536.

  • GEOMETRY_NAME=string: Name of geometry column. Default is geometry

  • FID=string: Name of the FID (Feature Identifier) column to create. If none is specified, no FID column is created. Note that if using ogr2ogr with the Arrow driver as the target driver and a source layer that has a named FID column, this FID column name will be automatically used to set the FID layer creation option of the Arrow driver (unless -lco FID= is used to set an empty name)