This is the TypeScript SDK for interacting with WherobotsDB. This package implements a Node.js client that programmatically connects to a WherobotsDB runtime and executes Spatial SQL queries.
The following resources are needed to run the Wherobots SQL Driver's TypeScript SDK:
- Node.js version 18 or higher
- TypeScript version 5.x (if using TypeScript)
- A Wherobots API Key. See the Wherobots API Key Documentation for instructions on how to generate a key.
To complete the installation, run the following command:
npm install wherobots-sql-driver
This example:
- Establishes the connection to WherobotsDB with an
async
function - Calls
async
methods to execute SQL queries through this connection.
import { Connection, Runtime } from "wherobots-sql-driver";
(async () => {
const conn = await Connection.connect({
// replace "YOUR-WHEROBOTS-API-KEY" with the key created above
// or alternatively the key can be set with the `WHEROBOTS_API_KEY` environment variable
apiKey: "YOUR-WHEROBOTS-API-KEY",
runtime: Runtime.SEDONA,
});
const results = await conn.execute("SHOW SCHEMAS IN wherobots_open_data");
console.log(JSON.stringify(results.toArray(), null, 2));
conn.close();
})();
Running this example returns the results of the query as JSON:
[
{
"namespace": "overture"
},
{
"namespace": "overture_2024_02_15"
},
{
"namespace": "overture_2024_05_16"
},
{
"namespace": "overture_2024_07_22"
},
{
"namespace": "test_db"
}
]
- Calling
Connection.connect()
asynchronously establishes a SQL Session connection in Wherobots Cloud and returns aConnection
instance. - Calling the connection's
execute()
methods runs the given SQL statement and asynchronously returns the result as an Apache Arrow Table instance. - The Arrow Table instance is converted to a primitive by calling
toArray()
, and then printed to the console as formatted JSON withJSON.stringify()
. - Calling the connection's
close()
method tears down the SQL Session connection.
- Paste the contents of the above code example into a file called
wherobots-example.js
- Run the example with:
node wherobots-example.js
- Paste the contents of the above code example into a file called
wherobots-example.ts
- Run the example with:
npx tsx wherobots-example.ts
Select your desired Wherobots runtime using the runtime parameter and specifying a runtime enum value. See the Wherobots product documentation for guidance on runtime sizing and selection.
The Connection.connect()
function can take the following additional options:
-
resultsFormat
: one of theResultsFormat
enum values; Arrow encoding is the default and most efficient format for receiving query results.- NOTE: currently only Arrow encoding is supported
-
dataCompression
: one of theDataCompression
enum values; Brotli compression is the default and the most efficient compression algorithm for receiving query results.- NOTE: currently only Brotli compression is supported
-
geometryRepresentation
: one of theGeometryRepresentation
enum values; selects the encoding of geometry columns returned to the client application. The default is EWKT (string) and the most convenient for human inspection while still being usable by geospatial data manipulation libraries. -
region
: Currently, the only supported Wherobots compute region isaws-us-west-2
, in AWS's Oregon (us-west-2
) region.
The Connection#execute
method can take an optional second argument, options
:
options.signal
: anAbortSignal
which can be used to cancel the execution (optional)