Use this example spreadsheet for a starting point. Under the "File" tab, select "Make a copy".
https://docs.google.com/spreadsheets/d/1jbkGnok85Q9qT0O4hRAn0uVDA9deWW10kMwreoBpzKg/.
Use this example spreadsheet for a starting point. Under the "File" tab, select "Make a copy".
https://docs.google.com/spreadsheets/d/1jbkGnok85Q9qT0O4hRAn0uVDA9deWW10kMwreoBpzKg/.
| height: 800 |
| .PHONY: all clean | |
| .SECONDARY: | |
| # Download 90-meter SRTM tiles for Louisiana | |
| zip/srtm_%.zip: | |
| @mkdir -p $(dir $@) | |
| @curl -sS -o $@.download 'http://srtm.csi.cgiar.org/SRT-ZIP/SRTM_V41/SRTM_Data_GeoTiff/$(notdir $@)' | |
| @mv $@.download $@ |
Keyboard shortcuts for QGIS. These have been tested on a Mac, but should also work on Windows.
Open "Settings" -> "Configure Shortcuts..." menu to see full list.
| Shortcut | Action |
|---|---|
| Shift + ⌘ + i | Identify features tool |
| Shift + ⌘ + h | Hide all layers |
| Shift + ⌘ + u | Show all layers |
| Shift + ⌘ + h | Zoom fit current layer |
Uses a small inset map to provide context for the larger, zoomed map. The same bounding coordinates for the raster image are used to create the reference box in the inset map.
| # Default Makefile | |
| # Save as ~/.Makefile or similar and use as starting point for new Makefiles. | |
| PROJECT_DIR=`pwd` | |
| # Keep intermediate files | |
| .SECONDARY: | |
| .PHONY: help |
Docs: https://stedolan.github.io/jq/
Download sample JSON data from the City of Austin. This contains traffic light data.
$ curl -o data.json https://data.austintexas.gov/resource/fs3c-45ge.jsonThis makes it easier to copy the cURL request.
Source: http://stackoverflow.com/a/16344250/2574244
[].forEach.call(document.querySelectorAll('a'),