Connect from Mac to the Pi
(add protocol for RDP one time set up on the Pi)
http://www.seeedstudio.com/depot/LinkIt-ONE-p-2017.html
About 50GBP
Includes ARM7 EJ-S™, GSM, GPRS, Wi-Fi, Bluetooth BR/EDR/BLE, GPS, Audio codec, and SD card connector on a single development board
A quick look at the density / spatial pattern from geotweets (i.e. those from smartphones mainly)… filtered on keywords as detailed in the image.
Mainly North of the border then….
sqlite> .headers on
sqlite> .mode csv
sqlite> .output test.csv
sqlite> select * from tbl1;
sqlite> .output stdout
That is staggeringly good isn't it?
- For a phone book of 3 names it takes 2 comparisons (at most).
- For 7 it takes at most 3.
- For 15 it takes 4.
- …
- For 1,000,000 it takes 20.
__________________________
- Best Case: In the telephone book search, the best case is that we find the name in one comparison. This is O(1) or constant complexity;
- Expected Case: As discussed above this is O(log n); and
- Worst Case: This is also O(log n).
Flyover of Chambers Street on a Digital Surface Model built from a LIDAR dataset.
Looking at the FlickR dataset… really amazing how many images are captured these days…
I’ve loaded the dataset into PostgreSQL/PostGIS which is doing a great job of handling it all. Shapefiles max out at 2GB so I needed about 11 of them to handle it.. which was pain.
Also the new QGIS 2.4 Chugiak is so much faster at rendering… as it uses multithreading. Great stuff!
Channel Islands
Some useful links from meeting in Dundee Uni on Tue 22 July 2014
SICSA - http://www.sicsa.ac.uk/
http://www.sicsa.ac.uk/themes/future-cities
Scottish Seven Cities
http://scottishcities.wordpress.com/
http://www.sckc.org.uk/
Aberdeen.
Dundee.
Edinburgh.
Glasgow.
Inverness.
Perth.
Stirling.
London Datastore — http://data.london.gov.uk/
Manchester - http://futureeverything.org/
Javascript version of processing http://processingjs.org/
Smart Citizen - http://www.smartcitizen.me/
FAB LAB http://www.fablabbcn.org/
1
2
3
| sudo mkdir /dev/dvd sudo mount /dev/dvd1 /mnt/dvd/ cd /mnt/dvd |
1
| sudo sh . /VBoxLinuxAdditions .run |
1
| sudo reboot now |
1
| cat /var/log/vboxadd-install .log |
1
2
3
| Error! Your kernel headers for kernel 2.6.35-28-generic cannot be found at /lib/modules/2 .6.35-28-generic /build or /lib/modules/2 .6.35-28-generic /source . |
1
2
| You can use the --kernelsourcedir option to tell DKMS where it's located, or you could install the linux-headers-2.6.35-28-generic package. |
uname -a
1
2
| sudo apt-get install linux-headers-2.6.35-28-generic sudo . /VBoxLinuxAdditions .run |
1
2
| VBoxManage sharedfolder add "my-ubuntu-vm" \ --name "websites" --hostpath "/Users/andrew/pizza" |
1
2
3
4
5
| sharename= "whatever.you.want.to.call.it" ; sudo mkdir /mnt/ $sharename \ sudo chmod 777 /mnt/ $sharename \ sudo mount -t vboxsf -o uid=1000,gid=1000 $sharename /mnt/ $sharename \ ln -s /mnt/ $sharename $HOME /Desktop/ $sharename |