portolan-pipeline
County polygons whose value is the GEOID column, the five-digit FIPS
key to US county statistics. Join ACS and decennial downloads on
GEOIDFQ instead, it matches their GEO_ID column verbatim. COUNTYNS
is the identifier that survives FIPS changes across years.
Query the GeoParquet data asset in place with DuckDB spatial, read_parquet('us-counties.parquet'), or load it with GeoPandas. It streams over HTTP range requests, so query the published URL directly rather than downloading first. For rendering use the visual PMTiles asset with its MapLibre styles.
Coordinates are NAD83 degrees, EPSG:4269, so ST_Area returns square
degrees and DuckDB's ST_Area_Spheroid returns NaN or wrong values on
several of these multipolygons. Trust ALAND and AWATER, or
transform to an equal-area CRS.
For web mapping, treating the NAD83 coordinates as WGS84 shifts nothing visible at this generalization level.
Counties per state.
Which county contains a point, longitude first.
Cheap spatial windows from the bbox covering column.
No attribute join inside this catalog, the FIPS ecosystem lives
outside it. Spatial joins against boundaries/boston-open-space or the
Natural Earth layers work at matching scales. Converted from the
upstream zipped Shapefile with DuckDB spatial into web-optimized
GeoParquet 2.0.