- Overview of Adobe products and stuff
- When to use what program
- What’s a vector graphic? What do the formats mean, etc.
- Show past fave maps, talk about style guide, the GIS team styles, etc. -Resources: give them fonts, swatches, and some samples to play around on
- Adobe Illustrator interface -Layout -Layers! Turning them on/off, locking, stacking, hide things don’t delete them, best practices for setting up map layers -Border vs. Inside – how the color thingy works -Basic tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(exports){ | |
crossfilter.version = "1.3.13"; | |
function crossfilter_identity(d) { | |
return d; | |
} | |
crossfilter.permute = permute; | |
function permute(array, index) { | |
for (var i = 0, n = index.length, copy = new Array(n); i < n; ++i) { | |
copy[i] = array[index[i]]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Disaster types | |
--- Biological --- | |
Epidemic | |
Grasshoppers | |
Locusts | |
Animal Attack | |
Meteorite | |
--- Geophysical --- | |
Earthquake |
#OpenMapKit (OMK) https://github.com/AmericanRedCross/OpenMapKit/wiki
- install node
- install the following packages tl, mbtiles, tilelive-http
npm install -g tl @mapbox/mbtiles tilelive-http
- go to http://bboxfinder.com/ and box your area
- should return your cooridinates in the following order: lng-min, lat-min, lng-max, lat-max
- open terminal/command line and
cd
to your project folder and run the following: tl copy -z 13 -Z 20 -b '{{lng-min}} {{lat-min}} {{lng-max}} {{lat-max}}' 'http://a.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png' mbtiles://./{{myFileName}}.mbtiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inFolder = new Folder("~/Desktop/forUpload"); | |
var fileList = inFolder.getFiles(/\.(jpg|tif|psd|bmp|gif|png|pdf|)$/i); | |
for(var a = 0 ;a < fileList.length; a++) | |
{ | |
http://anitagraser.com/2014/05/31/a-guide-to-googlemaps-like-maps-with-osm-in-qgis/
styles here: https://github.com/anitagraser/QGIS-resources/tree/master/qgis2/osm_spatialite
ogr2ogr -f "SQLite" -dsco SPATIALITE=YES -spat 88.6376953125 26.09625490696853 79.51904296874999 30.713503990354965 {filename}.db {filename}.osm.pbf
we have a color and toner style but it currently only works at around 1:8000 https://github.com/AmericanRedCross/qgis-styles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://planet.osm.org/replication/changesets | |
new window ... ctrl-a c | |
nav menu ... ctrl-a " | |
change name ... ctrl-a A | |
detach ... ctrl-a d | |
re-attch ... $screen -r | |
2014-01-01 00:00 - 000/598/424 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd / | |
sudo wget http://nodejs.org/dist/v0.12.2/node-v0.12.2-linux-x64.tar.gz | |
sudo tar -C /usr/local --strip-components 1 -xzf node-v0.12.2-linux-x64.tar.gz | |
node -v | |
npm -v | |
sudo npm install pm2 -g | |
sudo add-apt-repository ppa:git-core/ppa | |
sudo add-apt-repository ppa:webupd8team/java |