-
Open terminal: Look for terminal in the menu
-
Check the date
date
- Create a folder called 'code'
mkdir code
ls
- Go into the folder and check that it is empty
cd code
ls
- Check that make is installed
make
- Create a new makefile
gedit Makefile
- Put a sample task in the makefile
tellmethedate:
date
- Download data from OpenStreetMap for Bangladesh
bangladesh.pbf:
curl -o $@ 'http://download.geofabrik.de/asia/bangladesh-latest.osm.pbf'
- Install QGIS in order to open the file
sudo apt-get install qgis
- This file is too big, we have to make it smaller first before being able to open it in QGIS
sudo apt-get install openjdk-7-jre
wget http://bretth.dev.openstreetmap.org/osmosis-build/osmosis-latest.zip
- Unzip osmosis
mkdir osmosis
cd osmosis
unzip ../osmosis-latest.zip