readers.tiledb

Implements TileDB 2.3.0+ storage.

Dynamic Plugin

This stage requires a dynamic plugin to operate

Streamable Stage

This stage supports streaming operations

Example

[
    {
      "type":"readers.tiledb",
      "array_name":"my_array"
    },
    {
      "type":"writers.las",
      "filename":"outputfile.las"
    }
]

Options

array_name

TileDB array to read from. Synonymous with filename. [Required]

config_file

TileDB configuration file [Optional]

chunk_size

Size of chunks to read from TileDB array [Optional]

stats

Dump query stats to stdout [Optional]

bbox3d

TileDB subarray to read in format ([minx, maxx], [miny, maxy], [minz, maxz]) [Optional]

start_timestamp

Opens the array between a timestamp range of start_timestamp and end_timestamp. Default is 0. [Optional]

end_timestamp

Opens the array between a timestamp range of start_timestamp and end_timestamp. Default is UINT64_MAX. [Optional]

timestamp

Synonymous with start_timestamp. [Optional]

strict

Raise an error if the array contains a TileDB attribute not supported by PDAL, the default is set to true to raise an error for unsupported attribute types [Optional]

count

Maximum number of points to read. [Default: unlimited]

override_srs

Spatial reference to apply to the data. Overrides any SRS in the input itself. Can be specified as a WKT, proj.4 or EPSG string. Can’t use with ‘default_srs’. [Default: none]

default_srs

Spatial reference to apply to the data if the input does not specify one. Can be specified as a WKT, proj.4 or EPSG string. Can’t use with ‘override_srs’. [Default: none]