Global dataset: https://topotools.cr.usgs.gov/GMTED_viewer/
https://aws.amazon.com/public-datasets/terrain/
Explanation of generalization methods: https://topotools.cr.usgs.gov/pdfs/Gesch_Effects_of_DEM.pdf
| #include <rn2483.h> | |
| #include <SoftwareSerial.h> | |
| #define APP_EUI "70B3D57ED000042A" | |
| #define APP_KEY "20FA476202AABBD1FCD1B91EFAEC7B98" | |
| #define RESET D7 | |
| SoftwareSerial mySerial(D6, D5); // RX, TX !! labels on relay board is swapped !! | |
| //create an instance of the rn2483 library, |
| #include <rn2483.h> | |
| #include <SoftwareSerial.h> | |
| #define APP_EUI "70B3D57ED000042A" | |
| #define APP_KEY "20FA476202AABBD1FCD1B91EFAEC7B98" | |
| #define RESET D7 | |
| #define PIN_SERIAL1_TX D5 | |
| #define PIN_SERIAL1_RX D6 | |
| SoftwareSerial mySerial(PIN_SERIAL1_RX, PIN_SERIAL1_TX); // RX, TX !! labels on relay board is swapped !! |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>openSenseMap Turf</title> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.2/dist/leaflet.css" /> | |
| <link rel="stylesheet" type="text/css" href="https://unpkg.com/notie/dist/notie.css"> | |
| <script src="https://unpkg.com/leaflet@1.0.2/dist/leaflet.js"></script> | |
| <script src="https://unpkg.com/simple-statistics@2.2.0/dist/simple-statistics.min.js"></script> |
| luftdaten.info an openSenseMap senden |
| license: mit |
| # /etc/systemd/system/cpu_temp.service | |
| [Unit] | |
| Description=HTTP Post cpu temperature to endpoint | |
| [Service] | |
| Type=oneshot | |
| # set your post url as normal environment variable | |
| # should have the form https://ingress.opensensemap.org/boxes/<boxID>/<sensorID> | |
| Environment="URL=https://ingress.opensensemap.org/boxes/<boxID>/<sensorID>" |
| <? | |
| // | |
| // [ BUY BTC & ETH DAILY ON BITSTAMP ] | |
| // by @levelsio | |
| // | |
| // 2017-08-23 | |
| // | |
| // 1) buy $40/day BTC | |
| // 2) buy $10/day ETH | |
| // |
Global dataset: https://topotools.cr.usgs.gov/GMTED_viewer/
https://aws.amazon.com/public-datasets/terrain/
Explanation of generalization methods: https://topotools.cr.usgs.gov/pdfs/Gesch_Effects_of_DEM.pdf
| ssh user@host -C 'docker save <image> | bzip2' | bunzip2 | docker load | |
| docker save <image> | bzip2 | pv | ssh user@host 'bunzip2 | docker load' |