Skip to content

@sqlrooms/room-config / SpatialLoadFileOptions

Type Alias: SpatialLoadFileOptions

SpatialLoadFileOptions = object

Interface

Options specific to spatial file loading with st_read method SpatialLoadFileOptions

Type Declaration

Index Signature

[key: string]: unknown

NameTypeDescription
schema?stringSchema to load the table into
select?string[]Columns to select, defaults to ['*']
where?stringWHERE clause filter condition
view?booleanWhether to create as a view
temp?booleanWhether to create as a temporary table
replace?booleanWhether to replace existing table
options?string | Record<string, unknown> | string[]Additional options for spatial data loading
method"st_read"-