JSON Everywhere

14
© 2014 IBM Corporation Information Management (Geo)JSON Everywhere! Boston Esri Dev Meetup

description

JSON is increasingly dominating the application development world, especially when the target platform is mobile. GeoJSON therefore is a key technology for enabling location in the mainstream mobile app development ecosystem. This is a short lighting talk on the topic.

Transcript of JSON Everywhere

Page 1: JSON Everywhere

© 2014 IBM Corporation

Information Management

(Geo)JSON Everywhere! Boston Esri Dev Meetup

Page 2: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

Javascript Yesterday▪Browser ▪ArcGIS API for Javascript

Page 3: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

Javascript Today -

EverywhereBrowser, iOS JavaScriptCore,

Android WebView, Server-side NodeJS, embedded devices

Page 4: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

JSON is the new data

interoperability

Page 5: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

JSON{ "_id": "b5eddd6018b29f4434842d94a85e5b4c", "_rev": "1-9d7fb6c38b7f0e18c902ae85f3bab984", "properties": { "poiid": "a13b8b94-802d-49f4-9781-d661f63aa7f4", "name": "Ponte S. Angelo - Accattone" }, "type": "Feature", "geometry": { "coordinates": [ 12.466458, 41.90167 ], "type": "Point" } }"

Page 6: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

GeoJSON Point

{ "type": "Feature", "geometry": { "type": "Point", "coordinates": [ 102, 0.5 ] }, "properties": {"prop0": "value0"} }

Page 7: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

GeoJSON Line

{ "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0] ] }, "properties": { "prop0": "value0", "prop1": 0 } }

Page 8: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

GeoJSON Polygon

{ "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ] }, "properties": { "prop0": "value0", "prop1": {"this": "that"} } }"

Page 9: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

Koop

Page 10: JSON Everywhere

© 2014 IBM Corporation‹#›

Querying Cloudant from ArcGIS Online

Page 11: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

Koop

Page 12: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

Koop

Page 13: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

so what? data

democratization

Page 14: JSON Everywhere

© 2014 IBM Corporation‹#›

Information Management

so what? GIS is a

commodity