Saturday, 30 June 2012

Book - Satellite Remote Sensing

Satellite Remote Sensing

Satellite Remote Sensing

A New Tool for Archaeology

ISBN 978-90-481-8800-0

  Available here

Each chapter is composed as an authoritative contribution to help the reader grasp the value of its content. The authors are renowned experts from the international scientific community.

Audience: This book will be of interest to scientists in remote sensing applied to archeology, geoarcheology, paleo-environment, paleo-climate and cultural heritage.

  • Provides a collection of outstanding articles focused on advanced satellite data processing, analysis and interpretation for archaeological applications
  • Features examples of the high potentiality of the Integration of EO multitemporal, multiscale, multisensors techniques
  • Includes examples of the integration of EO techniques with other traditional archaeological data source, such as aerial photos, field survey, trials, excavations and historical documentation 
Not one for the faint hearted methinks, but sounds fascinating.

Friday, 22 June 2012

NORTH AMERICA - the visual size of airports

Original article here.

Amazing what simple visualisations can give you.

In a single glance you get the impression of size, and when you put them together in one article like this it is quite apparent which cities have the larger airports.

Very good.


Friday, 12 February 2010

O'Reilly Where 2.0 Conference

In these tough economic times we realize passing on savings to you, our audience, is something worth consideration and importance.


We are extending our early registration pricing until March 1, 2010, which saves you $300 off standard registration. We would also like to include a 25% discount code in addition to the early registration savings. Use discount code, whr10ln and register today.
https://en.oreilly.com/where2010/public/register

Attend sessions like: Haiti: Crisis Mapping the Earthquake by John Crowley (STAR-TIDES), Spatial Analysis and the Geoweb by Jack Dangermond (ESRI), Base Map 2.0, and Shedding Light on Climate Change

Where 2.0, happening March 30-April 1, 2010 at the San Jose Marriott in San Jose, California, encompasses the latest innovations in Mobile, Mapping and Local Opps and Models. To see the full schedule:
http://en.oreilly.com/where2010/public/schedule/full

Tuesday, 19 January 2010

Mapzen POI Collector - Free iPhone OpenStreetMap editor

Mapzen POI Collector - a free, easy to use editor for OpenStreetMap is now available from the App Store. Check it out here:

http://bit.ly/xDRza

Mapzen POI Collector has been designed to be as easy to use as possible and to lower the barriers to entry for new contributors to OSM.

I hope you like it. And apologies for spamming you if you don't have an iPhone!

Friday, 10 August 2007

Example statement 10

Insert a compound line string:

INSERT INTO roads values ('obj_2', mdsys.sdo_geometry(2002, null, null,

mdsys.sdo_elem_info_array(1,4,2,1,2,1,9,2,2),

mdsys.sdo_ordinate_array(15,10, 25,10, 30,5, 38,5, 38,10, 35,15, 25,20)));

Thursday, 9 August 2007

Example statement 09

Select any objects within 1.35 distance units from the query window:

select a.feature_id

from target a

where sdo_within_distance(a.shape, :theWindow, 'distance=1.35') = 'TRUE';

Wednesday, 8 August 2007

Example statement 08

Performs a consistency check to validate a geometry:

select c.name, sdo_geom.validate_geometry(c.shape, m.diminfo)

from cola_markets c, user_sdo_geom_metadata m

where m.table_name = 'COLA_MARKETS' AND m.column_name = 'SHAPE'

and c.name = 'cola_c';