tiger_blocks: dc_blocks md_blocks va_blocks pa_blocks ny_blocks
dc_blocks:
- mkdir -p data/census2000/dc/block
- if [ ! -f data/census2000/dc/block/tl_2009_11_tabblock00.shp ]; \
+ mkdir -p data/census2000/district_of_columbia/block
+ if [ ! -f data/census2000/district_of_columbia/block/tl_2009_11_tabblock00.shp ]; \
then \
wget -O dcblocks.zip $(DC_BLOCKS_URL); \
- unzip dcblocks.zip -d ./data/census2000/dc/block; \
+ unzip dcblocks.zip -d ./data/census2000/district_of_columbia/block; \
rm dcblocks.zip; \
fi;
| psql -U $(DB_USER) -d $(DB_NAME); \
done;
-# MD Lines
+# All Lines
#
# Since the table and index already exist, we can utilize -a,
# and leave -I out.
- for x in data/census2000/maryland/lines/*.shp; do \
- $(PG_BINDIR)/shp2pgsql \
- -a \
- -s $(TIGER_SRID) \
- -D \
- $$x \
- tiger_lines \
- | psql -U $(DB_USER) -d $(DB_NAME); \
+ for state in data/census2000/*; do \
+ for shapefile in $$state/lines/*.shp; do \
+ $(PG_BINDIR)/shp2pgsql \
+ -a \
+ -s $(TIGER_SRID) \
+ -D \
+ $$shapefile \
+ tiger_lines \
+ | psql -U $(DB_USER) -d $(DB_NAME); \
+ done; \
done;
bin/sf1blocks2sql src/Tests/Fixtures/SummaryFile1/mdgeo.uf1 sf1_blocks \