- color ramp manager
- Quick Map Services
- building tools
- utilsplugin2
- replace geometry (Ctrl+Shift+G)
- todo list (work systematically through a selection)
- download along plugin (Alt+Shift+D)
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++) | |
{ | |
#OpenMapKit (OMK) https://github.com/AmericanRedCross/OpenMapKit/wiki
npm install -g tl @mapbox/mbtiles tilelive-http
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
### Disaster types | |
--- Biological --- | |
Epidemic | |
Grasshoppers | |
Locusts | |
Animal Attack | |
Meteorite | |
--- Geophysical --- | |
Earthquake |
(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]]; |
to batch process the shapefiles save the following
#!/bin/bash
cd /Users/danbjoseph/Documents/PSU/psu_geog585/lesson3/PhiladelphiaBaseLayers/
for f in *.shp
do ogr2ogr -skipfailures -clipsrc /Users/.../PhiladelphiaBaseLayers/clipFeature/city_limits.shp /Users/.../PhiladelphiaBaseLayers/clipped/$f /Users/.../PhiladelphiaBaseLayers/$f
ogr2ogr -s_srs EPSG:4326 -t_srs EPSG:3857 /Users/.../PhiladelphiaBaseLayers/clippedAndProjected/$f /Users/.../PhiladelphiaBaseLayers/clipped/$f
touch /Users/.../PhiladelphiaBaseLayers/clippedAndProjected/${f%.*}.qpj
echo 'PROJCS["WGS 84 / Pseudo-Mercator",GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]],PROJECTION["Mercator_1SP"],PARAMETER["central_meridian",0],PARAMETER["scale_factor",1],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUT
license: gpl-3.0 |