| 262 | For GADM: |
| 263 | {{{ |
| 264 | mkdir gadm |
| 265 | cd gadm |
| 266 | wget http://gadm.org/data/gadm_v1_lev0_shp.zip |
| 267 | wget http://gadm.org/data/gadm_v1_lev1_shp.zip |
| 268 | wget http://gadm.org/data/gadm_v1_lev2_shp.zip |
| 269 | unzip gadm_v1_lev0_shp.zip |
| 270 | unzip gadm_v1_lev1_shp.zip |
| 271 | unzip gadm_v1_lev2_shp.zip |
| 272 | su postgres |
| 273 | shp2pgsql -s 4326 -I gadm1_lev0.shp public.gadm1_lev0 | psql -d gis |
| 274 | shp2pgsql -s 4326 -I gadm1_lev1.shp public.gadm1_lev1 | psql -d gis |
| 275 | shp2pgsql -s 4326 -I gadm1_lev2.shp public.gadm1_lev2 | psql -d gis |
| 276 | }}} |