bbcommons / bbkit

A command-line tool for working with FCC BDC data
2 stars 0 forks source link

Stitch BDC downloads together #3

Open bertday opened 12 months ago

bertday commented 12 months ago

Per an offline convo, @ILSR-GIS-DATA said it would be easier to work with the downloaded BDC data if it were all in one CSV file — not split out by state and technology.

bertday commented 12 months ago

As a stopgap, this shell one-liner might work:

awk '(NR == 1) || (FNR > 1)' *.csv > bdc_merged.csv