https://beta.source.coop/repositories/pacificspatial/flateau/description/
https://github.com/pacificspatial/flateau/
$ aws s3 --no-sign-request \
sync \
--exclude="*" \
--include="*building_lod0.parquet" \
s3://flateau/data/plateau \
plateauSome areas have been refreshed:
$ find . | grep -i 'yokohama.*building_lod0.*parquet$'./plateau/2022/buildings/gpqt/14100_yokohama_2022_building_lod0.parquet
./plateau/2022/buildings202312/gpqt/14100_yokohama-shi_2022_building_lod0.parquet
./plateau/2023/parquet/14100_yokohama-shi_2023_building_lod0.parquet



COPY ( SELECT REPLACE(SPLIT_PART(filename, '/', -1), '_building_lod0.parquet', '') as file_name, {min_x: MIN(cal_xmin), min_y: MIN(cal_ymin), max_x: MAX(cal_xmax), max_y: MAX(cal_ymax)}::BOX_2D::GEOMETRY AS geom FROM READ_PARQUET('plateau/*/buildings/gpqt/*building_lod0.parquet', filename=true) GROUP BY filename ) TO 'bboxes.gpkg' WITH (FORMAT GDAL, DRIVER 'GPKG', LAYER_CREATION_OPTIONS 'WRITE_BBOX=YES');