http://photosynth.net/preview/
Cathedral demolition by abandonedamerica.us on Photosynth
___________
Python and GIS
https://pypi.python.org/pypi/Shapely
http://scitools.org.uk/cartopy/
http://statsmodels.sourceforge.net/
http://www.qgis.org/en/docs/index.html#documentation-for-qgis-2-0
> http://docs.qgis.org/2.0/pdf/QGIS-testing-PyQGISDeveloperCookbook-en.pdf
https://github.com/kjordahl/geopandas
BING Travel Data
Just some interesting pages that I saw on the web…
Mapstraction is a Javascript library that provides a single, common interface for a wide variety of Javascript map APIs. It’s designed to enable a developer to switch from one maps API to another as smoothly and as quickly as possible.
http://davidrowley.blogspot.co.nz/2013/08/calculating-line-of-sight-with-postgis.html
Performing Line of Sight analysis from PostGIS
Map generalisation (coastlines) and ray tracing
http://www.klokantech.com/maptiler/
MapProxy is an open source proxy for geospatial data. It caches, accelerates and transforms data from existing map services and serves any desktop or web GIS client.
https://github.com/NYPL/map-vectorizer
Vectorize raster maps including OCR of text
This project aims to automate a manual process: geographic polygon and attribute data extraction from maps including those from insurance atlases published in the 19th and early 20th centuries.
I needed to rename a set of files , keeping the original name but adding a suffix. Powershell can do this quite easily using the following:
PS C:\data\photos> Dir | Rename-Item -NewName { $_.name -replace ".jpg","_840.jpg" }
this will take all .jpg files in the folder and change the name to include an _840.jpg… which in my case was the vertical dimensions of the image set.
Sourced from http://justanothersysadmin.wordpress.com/2008/03/22/bulk-rename-files-with-sequential-index/
here is how to use powershell to renumber files sequentially.. be careful not to renumber files you don’t want renumbered!! Best to move all the files to a new temp folder to do this….
1) copy paste as single line into powershell
function Rename-Bulk($prefix){$files = Get-ChildItem;$id = 1;$files | foreach { Rename-Item -Path $_.fullname -NewName ( $prefix + ((($id++).tostring()).padleft(($files.count.tostring()).length) -replace ' ','0' ) + $_.extension) }}
2) CD to folder in powershell
3) Rename-Bulk('img') where img is the prefix for all output with sequential number following
This will find all .txt (text) files and merge into a single document in c:\temp folder.Get-Content .\*.txt | Out-File c:\temp\merged.txt
create table houseprice03_msoa_ew
(la_code text,
la_name text,
msoa_code text,
msoa_name text,
price_all_dwellings_2percentile integer,
price_all_dwellings_lower_quartile integer,
price_all_dwellings__median integer,
price_all_dwellings__upper_quartile integer,
price_all_dwellings_98precentilentile integer,
price_all_dwellings__mean integer
)
COPY houseprice03_msoa_ew FROM 'C:\Data\GIS\MartynDorey\CensusData\2003 Houseprices\houseprice2003_G080309_2288_GeoPolicy_MSOA.csv' DELIMITER ',' CSV HEADER;