+ All Categories
Home > Technology > Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Date post: 21-May-2015
Category:
Upload: allan-laframboise
View: 2,186 times
Download: 0 times
Share this document with a friend
Description:
Ideas for developing GIS applications that are socially a ”where”. Using real-time geolocation information from social networks such as Twitter with GIS.
Popular Tags:
42
Social #WebApps Ideas for developing GIS applications that are socially a ”where” Allan Laframboise EDN Team @AL_Laframboise
Transcript
Page 1: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Social #WebApps

Ideas for developing GIS applications that are socially a ”where”

Allan Laframboise

EDN Team

@AL_Laframboise

Page 2: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

who am I?

edn.esri.com

@AL_Laframboise

Page 3: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

who are you?

Page 4: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

ideas for

socializing

#webmaps

Page 5: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

we all love putting

GIS apps

on the web

Page 6: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

challenges…

tools

usability

design

interface

Page 7: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

customer, expectations are higher…

Page 8: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

see more (visualize)

Page 9: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

explore more (locations)

Page 10: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

do more (analysis)

Page 11: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

share more (social)

Page 12: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

developers, faced with new challenges

Page 13: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

real-time data

accurate geocoding

routing with local knowledge

advance sharing…

Page 14: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.
Page 15: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

today…

sharing

&

socializing

Page 16: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Quiz!

Have webapp/webmap applications?

Expose sharing functionality?

Integrate with social media?

Page 17: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

sharing is important…

Page 18: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

sharing is easy…

1. Create widget for your application (AddThis or Sharethis)

2. Customize the widget (type of sharing)

Email

Social bookmark

Social media (FB, Twitter…)

3. Add script

Page 19: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

integrating with social networks is important…

Page 20: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Twitter…

140 chars

instant message

anything, anyone, anytime, anywhere

Page 21: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

any “where”…

Page 22: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

anatomy of a tweet

Hey, I finally made it to #WhereCampPDX! Can’t wait to

meet everyone. Thanks for sending me @JimBarry.

What am I doing?Who/what am I referring to?

Reference/address for someone.

Page 23: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

I noticed a brush fire off the 10FWY south of the 91FWY

interchange. Anyone dispatched yet? #LAFires

Traffic accident off of the 38FWY near Big Bear Lake.

#SoCalTraffic

Anyone know where there’s still parking available for the

baseball game tonight? #OregonEvents

pseudo geotweetsWhat…

Where?

Who…

Page 24: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

useful to GIS’ers?

Page 25: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.
Page 26: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Twitter API = simple

1. Search (HTTP - JSON, atom)

2. Twitter (REST - JSON, XML)

3. Streaming (JSON)

Page 27: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

http://twitter.com/statuses/user_timeline.xml?screen_name=al_laframboise

http://twitter.com/statuses/friends_timeline.xml

security

vs

Page 28: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Twitter’s new geolocation platform

Page 29: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

developers only…

Page 30: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

apps can

add

lat/long

but only if you

“opt-in”…

Opt-in Geocoding

Page 31: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

anatomy changes? NO!

Hey, I finally made it to #WhereCampPDX! Can’t wait to

meet everyone. Thanks for sending me @JimBarry.

What am I doing?Who/what am I referring to?

Reference/address for someone.<geo xmlns:georss="http://www.georss.org/georss">

<georss:point>37.780467** -122.396762**</georss:point>

</geo>

Page 32: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

curl -d "lat= 45.53269 long=-122.66116&status=I finally made it to #WhereCampPDX" -u user:pass

"http://twitter.com/statuses/update.xml"

<?xml version="1.0" encoding="UTF-8"?>

<status>

<created_at>Sat Oct 03 02:52:51 +0000 2009</created_at>

...

<geo xmlns:georss="http://www.georss.org/georss">

<georss:point> 45.53269 -122.66116 </georss:point>

</geo>

<user>

<name>AL Laframboise</name>

...

<geo_enabled>true</geo_enabled>

...

</user> </status>

Page 33: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

7 days only!

Page 34: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

scary right?

wrong!

Page 35: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

opt-in

1.

<geo_enabled>false</geo_enabled>

Page 36: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

search API has always existed…

2.

http://search.twitter.com/search.atom?q=wherecamppdx

&geocode=45.52803%2C-122.66061%2C25km

Page 37: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

apps are already doing this…

Location: Redlands, CA

Location: iPhone: 45.53269,-122.66116

3.

P:34.05748,-117.19569 Subbing-in for @jimbarry who was

planning to attend #WhereCampPDX. See you there!

Page 38: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

few examples

Page 39: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Share you map with the world

http://tinyurl.com/sharemap

Page 40: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

“geotweeters” – Who’s saying what and where?

http://tinyurl.com/geotweeters

Page 41: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Real-time geolocation and GIS

ArcGIS Explorer

Page 42: Social #WebApps - Ideas for developing GIS applications that are socially a ”where”.

Finally

users expectations are higher

share your maps

embrace the power of social media

Real-time geolocation information is the future!


Recommended