thanks for reading this; I could use some help.
I read this article, it is about creating a makefile to convert a topojson file from a .shp file. I am following the steps contained in downloadable Makefile available whithin the article's link, however I simply can't get to create the .json file; it just doesn't appear. These are the steps I am trying to replicate:
curl -o counties.zip 'http://www2.census.gov/geo/tiger/GENZ2010/gz_2010_us_050_00_20m.zip'
unzip counties.zip
touch gz_2010_us_050_00_20m.shp
topojson -o counties.json -- counties=gz_2010_us_050_00_20m.shp
Step 4 is simply not working. I have no reason to think topojson is not properly installed, although I have never been able to create a topojson file. What could be wrong?
After downloading the Makefile and executing it in order to convert the topojson file the following message is displayed in the terminal:
topojson -o counties.json -- counties=gz_2010_us_050_00_20m.shp make: *** [counties.json] Error 1
These are some of my PC's specifications:
- I am running Ubuntu on Oracle virtualbox v4.3.26, my main OS is Windows 8 64 bit.
- Intel Celeron 1.90 GHz
- 4.00 GB Ram.
Thank you very much for your help in advance.