# Airbourne DB
## What do you mean by Airboune DB?
Use of GeoParquet from DuckDB through HTTPS, especially from DuckDB-Wasm. There is no footprint to the operating system.
## Example
```sql=
COPY (
SELECT CAST(
{
type: 'Feature',
geometry: ST_AsGeoJSON(geometry)
} AS JSON)
FROM
'https://data.source.coop/cholmes/overture/places-geoparquet-country/AL.parquet'
LIMIT 100
) TO STDOUT;
```