Empower volunteers to help increase Census participation by creating an Adopt-a-Block system. Volunteers would electronically select a Census block to work on and then report back on their outreach efforts for that block.
The above uses ogr2ogr to convert the ESRI file to GEOjson file named test.json. The blocks.json file is the file in the root, hosted at a web location. I used python3 http.server at the root to host the file at http://localhost:8000/blocks.json.
I think I found the right command (finally... 😫)
ogr2ogr -f GeoJSON test.json "http://localhost:8000/blocks.json"
The above uses
ogr2ogr
to convert the ESRI file to GEOjson file namedtest.json
. Theblocks.json
file is the file in the root, hosted at a web location. I usedpython3 http.server
at the root to host the file at http://localhost:8000/blocks.json.I'll add the
geojson
file shortly.