You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like there might have been a decision to not run inference around Zushi, Japan based on tiles as there is a clear break ~5KM before the coastline.
OpenStreetMap doesn't have any building footprints for this area.
There is a PLATEAU project by the Japanese government to map out buildings in 3D but they haven't covered Zushi yet. Other Japanese public dataset have points for each of the buildings but no polygon footprints.
Any inference of the buildings in this area would produce a pretty unique dataset.
These were the steps I took to extract the buildings:
COPY(
SELECT height,
confidence,
ST_AsWKB(geom) AS geom
FROM buildings
WHERE ST_Y(ST_CENTROID(geom)) IS NOT NULLAND ST_X(ST_CENTROID(geom)) IS NOT NULLORDER BY HILBERT_ENCODE([ST_Y(ST_CENTROID(geom)),
ST_X(ST_CENTROID(geom))]::double[2])
) TO 'japan.pq' (
FORMAT 'PARQUET',
CODEC 'ZSTD',
ROW_GROUP_SIZE 15000);
Between the trailing garbage complaint when decompressing the GZIP files and some geometry producing NULL centroid coords there might be some other issues at play.
The text was updated successfully, but these errors were encountered:
It looks like there might have been a decision to not run inference around Zushi, Japan based on tiles as there is a clear break ~5KM before the coastline.
OpenStreetMap doesn't have any building footprints for this area.
There is a PLATEAU project by the Japanese government to map out buildings in 3D but they haven't covered Zushi yet. Other Japanese public dataset have points for each of the buildings but no polygon footprints.
Any inference of the buildings in this area would produce a pretty unique dataset.
These were the steps I took to extract the buildings:
Between the trailing garbage complaint when decompressing the GZIP files and some geometry producing NULL centroid coords there might be some other issues at play.
The text was updated successfully, but these errors were encountered: