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
Friday, 12 February 2010
O'Reilly Where 2.0 Conference
Tuesday, 19 January 2010
Mapzen POI Collector - Free iPhone OpenStreetMap editor
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 INTO roads values ('obj_2', mdsys.sdo_geometry(2002, null, null,
mdsys.sdo_elem_info_array(1,4,
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
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'
Tuesday, 7 August 2007
Example statement 07
Compute the difference between two geometries:
select sdo_geom.sdo_distance(c_b.shape, m.diminfo, c_d.shape, m.diminfo)
from cola_markets c_b, cola_markets c_d, user_sdo_geom_metadata m
where m.table_name = 'COLA_MARKETS' AND m.column_name = 'SHAPE'
Monday, 6 August 2007
Example statement 06
Return the minimum bounding rectangle of all geometries in a column:
select sdo_tune.extent_of('cola_markets','shape')