Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for US Census Tracts #163

Open
chopchop505 opened this issue Jan 31, 2020 · 2 comments
Open

Support for US Census Tracts #163

chopchop505 opened this issue Jan 31, 2020 · 2 comments
Labels
data Data related issues and requests

Comments

@chopchop505
Copy link

Any plans for adding a layer for US Census Tracts?

@jsanz
Copy link
Member

jsanz commented Feb 3, 2020

No short term plans, but adding more data to EMS is always on our radar.

This dataset is quite "heavy" in terms of data size according to the file ZIP sizes stated here by state.

Sending this dataset as is to the browser would be a challenge for most situations. We should serve them by state, but still, it can go up to 17MB (North Carolina) that converted into TopoJSON and simplified a 90% yields a file almost 8MB.

@nickpeihl
Copy link
Member

I think the best way to do this would be ingesting the Census tract shapefiles into Elasticsearch using GDAL and then displaying them in Elastic Maps as documents. However, Elastic Maps can currently only load a maximum of 10,000 features so you may want to set a minimum zoom level (ex. 8) to avoid running into that limit in high density areas such as New York City.

You can still apply term joins to create choropleth maps in Elastic Maps with Document layers just as if you were using a layer from Elastic Maps Service.

Here's how I accomplished this.

  1. Build and install GDAL from master (required for Elasticsearch 7). I used these instructions to build, but YMMV.
  2. Download all the Census tract zip files into the current directory with wget -r -nH --cut-dirs=4 ftp://ftp2.census.gov/geo/tiger/TIGER2019/TRACT/*
  3. Run this GDAL ogr2ogr command to ingest each file in the directory into Elasticsearch.
    for FILE in *.zip; do ogr2ogr -lco NOT_ANALYZED_FIELDS={ALL} -overwrite ES:http://localhost:9200 /vsizip/./$FILE; done
  4. Create an index pattern in Kibana like this "tl_2019_*_tract"
  5. Add a new Documents layer to Elastic Maps from the "tl_2019_*_tract" index pattern.
  6. Set the minimum zoom level to 8.

Screenshot_2020-02-29 Kibana

You might also want to refer to our blog post about using GDAL with Elasticsearch.

@jsanz jsanz added the data Data related issues and requests label Mar 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
data Data related issues and requests
Projects
None yet
Development

No branches or pull requests

3 participants