SlideShare a Scribd company logo
1 of 72
Download to read offline
Where am I?
We’re never really lost anymore.
Location Technology
Location technology is an integral part of our daily lives.
Dr. Richard Süselbeck
Principal Developer Evangelist
HERE Technologies
@sueselbeck @heredev
The world‘s leading location technology company.
Working with the Roads and Transport Authority, our aim it to
support Dubai in their goal of transforming 25% of their
transport services to fully autonomous solutions by 2030.
Expectations
developer.here.com
Where am I?
Example: Browser Geolocation API
navigator.geolocation.getCurrentPosition(function(position) {
document.write(position.coords.latitude + ", " +
position.coords.longitude);
});
Example: HERE Android Positioning API
PositioningManager positioningManager =
PositioningManager.getInstance();
positioningManager.start(
PositioningManager.LocationMethod.GPS_NETWORK);
GeoPosition position = positioningManager.GetPosition();
So we are at 25.2598, 55.3184. What does that mean?
Latitude & Longitude
Latitude Longitude
Equator
Prime Meridian
+60
-30
-90 (South)
+90 (North) 180
-120 (West)
+30 (East)
How did we get the location?
How did we get the location?
GPS
How did we get the location?
GPS, GALILEO, GLONASS, BeiDou, NAVIC, QZSS
GNSS
How did we get the location?
GNSS isn‘t the only way to get a location.
Radio signals:
Cell towers, Wifi, Bluetooth, etc
Example: HERE Positioning API
https://pos.api.here.com/positioning/v1/locate?
app_id=YOUR_APP_ID
&app_code=YOUR_APP_CODE
credentials
{
"wlan": [
{"mac": "8C-1A-BF-20-66-AD"},
{"mac": "A0-E4-53-E9-66-A7"},
...
{"mac": "B8-6B-23-09-87-B1"},
{"mac": "F4-55-95-11-2C-C1"}
]
}
Where am I?
Use a Positioning API.
Understand the technology the location comes from.
Choose the right API for the right task/device.
Where am I?
By themselves a latitude and longitude aren‘t always helpful.
Their power is in placing us on a map.
Maps
Making Maps is hard.
Maps
Making Maps is hard.
Maps
Maps
Map APIs
Map Image API Interactive Map API
Example: HERE Map Image API
https://image.maps.api.here.com/mia/1.6/mapview?
&c=25.25984, 55.31845
&z=16
&w=640
&h=400
center of the map
zoom level
Image width and height
Example: HERE Map Image API
https://image.maps.api.here.com/mia/1.6/route?
&r0=52.540867,13.262444,
52.536691,13.264561,
52.529172,13.268337,
52.528337,13.273144,
52.52583,13.27898,
52.518728,13.279667
&lc0=44ff00ff
waypoints
line color
Example: HERE Interactive Maps API
var platform = new H.service.Platform({
app_id: YOUR_APP_ID',
app_code: YOUR_APP_CODE',
useHTTPS: true
});
var defaultLayers = platform.createDefaultLayers();
var map = new H.Map(document.getElementById('map'),
defaultLayers.normal.map);
var behavior = new H.mapevents.Behavior(new
H.mapevents.MapEvents(map));
var ui = H.ui.UI.createDefault(map, defaultLayers);
Where am I?
18 40A Street,
Al Muraqqabat, Dubai
Where am I?
Invalidenstraße 116
10245 Berlin
18 40A Street,
Al Muraqqabat, Dubai
Geocoder API
25.264025, 55.317489
Invalidenstraße 116
10245 Berlin52.530861, 13.38474
18 40A Street,
Al Muraqqabat, Dubai
https://reverse.geocoder.api.here.com/6.2/reversegeocode.json?
&mode=retrieveAddresses
&prox=52.5319841,13.3828921
Example: HERE Geocoder API
https://geocoder.api.here.com/6.2/geocode.json?
&searchtext=18+40A+Street+Al+Muraqqabat+Dubai
return the closest street address
location (and radius)
What‘s around us?
Maps provide context for a location.
Places (points of interest) are another type of context.
Where do I want to go?
Location isn‘t just about where you are. It‘s about where you‘re going.
Example: HERE Places API
// creates a Search entrypoint
var search = new H.places.Search(platform.getPlacesService());
// creates parameters for search request
var params = {
'q’: cafe',
'at': '25.25981,55.31841'
};
// creates a request with callbacks
search.request(params, {}, onResult, onError);
function onResult(result) {}
function onError(error) {}
Example: HERE Interactive Maps API
var group = new H.map.Group();
group.addObjects(places.map(function (place) {
var marker = new H.map.Marker({lat: place.position[0],
lng: place.position[1]})
return marker;
}));
map.addObject(group);
map.setViewBounds(group.getBounds());
How do I get there?
Find your way using the Routing API.
Example: HERE Routing API
https://route.api.here.com/routing/7.2/calculateroute.json?
waypoint0=25.25972, 55.31816
&waypoint1=25.10185, 55.38622
&mode=fastest;car;traffic:enabled
start and end point
routing mode
Location is solved!
(sort of)
“The most profound technologies are those that
disappear. They weave themselves into the fabric of
everyday life until they are indistinguishable from it.”
- Mark Weiser
The Future™
The Future™
The Future™
10 Billion People
The Future™
10 Billion People
The Future™
Giant Cities
10 Billion People
The Future™
Giant Cities
10 Billion People
The Future™
Giant Cities
Autonomous cars
10 Billion People
The Future™
Giant Cities
Autonomous cars
10 Billion People
The Future™
Giant Cities
Autonomous cars
Autonomous everything!
10 Billion People
The Future™
Giant Cities
Autonomous cars
Autonomous everything!
10 Billion People
The Future™
Giant Cities
Autonomous cars
Autonomous everything!
New mobility concepts
10 Billion People
The Future™
Giant Cities
Autonomous cars
Autonomous everything!
New mobility concepts
10 Billion People
Everything is a sensor!
How do we make sense of this future?
10 Billion People Giant Cities Everything is a sensor!
How do we build this future?
Autonomous carsNew mobility concepts Autonomous everything
How do we make sense of this future?
How do we build this future?
Location Technology!
The Present
We have amazing Maps.
But they are static, they have no real-time data, they don‘t self-heal.
The Present
We have an amazing Routing.
But it does not know about the ice in that dangerous corner.
The Present
Every car (and cow) is a sensor array, generating a
constant stream of amazing location data.
But we have no good way of using that data,
creating new insights and applications.
Current maps and location services
are built for the past:
Location 1.0
Let‘s build Location 2.0!
What do we need?
First, we need a map.
A better map. A 3D, real-time, high-definition, self-
healing representation of the world around us.
Second, we need data.
But more and better data.
Data from vehicles, data from infrastructure, data from people,
data from things and data from cows.
Third, we need a platform.
Infrastructure and marketplace to connect maps,
location data, location services and
enable developers, data consumers, data producers.
Fourth, developers, developers, de...you get the idea.
We can only build the future with such a
platform, if its powerful tools and amazing data
are available to developers.
HERE Open Location Platform
It‘s never been more exciting to
build amazing things with
location technology.
https://developer.here.com
@sueselbeck @heredev

More Related Content

What's hot

Augmented reality Plays important role in Mobile app development
Augmented reality Plays important role in Mobile app development Augmented reality Plays important role in Mobile app development
Augmented reality Plays important role in Mobile app development GSbit labs
 
Wave - Wien Mobilitätsassistentin - Android App Launch
Wave - Wien Mobilitätsassistentin - Android App Launch Wave - Wien Mobilitätsassistentin - Android App Launch
Wave - Wien Mobilitätsassistentin - Android App Launch Klemens Zleptnig
 
Netkata - Aplikacje Mobilne - iOS, Android, Windows Phone
Netkata - Aplikacje Mobilne - iOS, Android, Windows PhoneNetkata - Aplikacje Mobilne - iOS, Android, Windows Phone
Netkata - Aplikacje Mobilne - iOS, Android, Windows PhoneNetkata Internet Software House
 
Phidgets pamphlet EZtronics interface with the real world
Phidgets pamphlet EZtronics interface with the real worldPhidgets pamphlet EZtronics interface with the real world
Phidgets pamphlet EZtronics interface with the real worldPatrick VanSchijndel
 
Using Developer Portals: Maps APIs Electric Vehicle Routing
Using Developer Portals: Maps APIs Electric Vehicle RoutingUsing Developer Portals: Maps APIs Electric Vehicle Routing
Using Developer Portals: Maps APIs Electric Vehicle RoutingNordic APIs
 
Sarah Scannell Cycling & Walking Promotion Officer Smart Dublin Launch 8th ma...
Sarah Scannell Cycling & Walking Promotion Officer Smart Dublin Launch 8th ma...Sarah Scannell Cycling & Walking Promotion Officer Smart Dublin Launch 8th ma...
Sarah Scannell Cycling & Walking Promotion Officer Smart Dublin Launch 8th ma...Mainard Gallagher
 
August 2017 Rocky Mountain UAS Professionals Meetup
August 2017 Rocky Mountain UAS Professionals MeetupAugust 2017 Rocky Mountain UAS Professionals Meetup
August 2017 Rocky Mountain UAS Professionals MeetupUAS Colorado
 
A report on the industrial visit to vaizag
A report on the industrial  visit to vaizagA report on the industrial  visit to vaizag
A report on the industrial visit to vaizagRashu Kumar
 
Chris electric motor
Chris electric motorChris electric motor
Chris electric motormrpro
 
Case study for Helsinki Festival
Case study for Helsinki FestivalCase study for Helsinki Festival
Case study for Helsinki FestivalVille Kaisla
 
Augmented reality [1]
Augmented reality [1]Augmented reality [1]
Augmented reality [1]Tylar Robison
 

What's hot (17)

Augmented reality Plays important role in Mobile app development
Augmented reality Plays important role in Mobile app development Augmented reality Plays important role in Mobile app development
Augmented reality Plays important role in Mobile app development
 
Augmented (2) (1)
Augmented (2) (1)Augmented (2) (1)
Augmented (2) (1)
 
A b o u t M e
A b o u t  M eA b o u t  M e
A b o u t M e
 
Wave - Wien Mobilitätsassistentin - Android App Launch
Wave - Wien Mobilitätsassistentin - Android App Launch Wave - Wien Mobilitätsassistentin - Android App Launch
Wave - Wien Mobilitätsassistentin - Android App Launch
 
Netkata - Aplikacje Mobilne - iOS, Android, Windows Phone
Netkata - Aplikacje Mobilne - iOS, Android, Windows PhoneNetkata - Aplikacje Mobilne - iOS, Android, Windows Phone
Netkata - Aplikacje Mobilne - iOS, Android, Windows Phone
 
Phidgets pamphlet EZtronics interface with the real world
Phidgets pamphlet EZtronics interface with the real worldPhidgets pamphlet EZtronics interface with the real world
Phidgets pamphlet EZtronics interface with the real world
 
Using Developer Portals: Maps APIs Electric Vehicle Routing
Using Developer Portals: Maps APIs Electric Vehicle RoutingUsing Developer Portals: Maps APIs Electric Vehicle Routing
Using Developer Portals: Maps APIs Electric Vehicle Routing
 
Sarah Scannell Cycling & Walking Promotion Officer Smart Dublin Launch 8th ma...
Sarah Scannell Cycling & Walking Promotion Officer Smart Dublin Launch 8th ma...Sarah Scannell Cycling & Walking Promotion Officer Smart Dublin Launch 8th ma...
Sarah Scannell Cycling & Walking Promotion Officer Smart Dublin Launch 8th ma...
 
August 2017 Rocky Mountain UAS Professionals Meetup
August 2017 Rocky Mountain UAS Professionals MeetupAugust 2017 Rocky Mountain UAS Professionals Meetup
August 2017 Rocky Mountain UAS Professionals Meetup
 
Sygic business solutions
Sygic business solutionsSygic business solutions
Sygic business solutions
 
Sygic GPS apps
Sygic GPS appsSygic GPS apps
Sygic GPS apps
 
Gia 2014 mc hugh
Gia 2014 mc hughGia 2014 mc hugh
Gia 2014 mc hugh
 
A report on the industrial visit to vaizag
A report on the industrial  visit to vaizagA report on the industrial  visit to vaizag
A report on the industrial visit to vaizag
 
Chris electric motor
Chris electric motorChris electric motor
Chris electric motor
 
Case study for Helsinki Festival
Case study for Helsinki FestivalCase study for Helsinki Festival
Case study for Helsinki Festival
 
My
MyMy
My
 
Augmented reality [1]
Augmented reality [1]Augmented reality [1]
Augmented reality [1]
 

Similar to Data for Happiness Hackathon 2018 Dubai

HERE Intermodal Routing API (GeoMonday Berlin 2018)
HERE Intermodal Routing API (GeoMonday Berlin 2018)HERE Intermodal Routing API (GeoMonday Berlin 2018)
HERE Intermodal Routing API (GeoMonday Berlin 2018)HERE Technologies
 
Towards A 4D Digital Smart City
Towards A 4D Digital Smart CityTowards A 4D Digital Smart City
Towards A 4D Digital Smart CityDavid Burden
 
The 4D Digital Smart City Presentation
The 4D Digital Smart City PresentationThe 4D Digital Smart City Presentation
The 4D Digital Smart City PresentationDaden Limited
 
Cross Media design scenarios: smartphones and tablets, a workshop at ISIA Des...
Cross Media design scenarios: smartphones and tablets, a workshop at ISIA Des...Cross Media design scenarios: smartphones and tablets, a workshop at ISIA Des...
Cross Media design scenarios: smartphones and tablets, a workshop at ISIA Des...Salvatore Iaconesi
 
SPATIAL COMPUTING SPATIAL COMPUTING SPATIAL
SPATIAL COMPUTING SPATIAL COMPUTING SPATIALSPATIAL COMPUTING SPATIAL COMPUTING SPATIAL
SPATIAL COMPUTING SPATIAL COMPUTING SPATIAL21EC25ManobalanB1d
 
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)Richard Süselbeck
 
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)HERE Technologies
 
Android location based services
Android location based servicesAndroid location based services
Android location based servicesaswath babu
 
VRGIS and big data for smarter, healthier cities
VRGIS and big data for smarter, healthier citiesVRGIS and big data for smarter, healthier cities
VRGIS and big data for smarter, healthier citiesMaged N. Kamel Boulos
 
Garmin Developer Summit 2018 - Talk
Garmin Developer Summit 2018 - TalkGarmin Developer Summit 2018 - Talk
Garmin Developer Summit 2018 - TalkRichard Süselbeck
 
Garmin Developer Summit 2018 - Talk
Garmin Developer Summit 2018 - TalkGarmin Developer Summit 2018 - Talk
Garmin Developer Summit 2018 - TalkHERE Technologies
 
Where20 2008 Ruby Tutorial
Where20 2008 Ruby TutorialWhere20 2008 Ruby Tutorial
Where20 2008 Ruby TutorialShoaib Burq
 
SkyMap Global - Google Maps Premier Partner
SkyMap Global - Google Maps Premier PartnerSkyMap Global - Google Maps Premier Partner
SkyMap Global - Google Maps Premier PartnerSkyMap Global
 
How Technology Advancement Makes Last Mile Delivery Efficient .pdf
How Technology Advancement Makes Last Mile Delivery Efficient  .pdfHow Technology Advancement Makes Last Mile Delivery Efficient  .pdf
How Technology Advancement Makes Last Mile Delivery Efficient .pdfVrinsoft Technology
 
APIdays Mediterranea: APIs for Mobile Solutions. Context-Aware Apps: a busine...
APIdays Mediterranea: APIs for Mobile Solutions. Context-Aware Apps: a busine...APIdays Mediterranea: APIs for Mobile Solutions. Context-Aware Apps: a busine...
APIdays Mediterranea: APIs for Mobile Solutions. Context-Aware Apps: a busine...SOLUSOFT.ES
 
Location based services using augmented reality
Location based services using augmented realityLocation based services using augmented reality
Location based services using augmented realityIAEME Publication
 
The Future of Indoor Mapping - Nokia / Here
The Future of Indoor Mapping - Nokia / HereThe Future of Indoor Mapping - Nokia / Here
The Future of Indoor Mapping - Nokia / HereLocal Social Summit
 

Similar to Data for Happiness Hackathon 2018 Dubai (20)

HERE Intermodal Routing API (GeoMonday Berlin 2018)
HERE Intermodal Routing API (GeoMonday Berlin 2018)HERE Intermodal Routing API (GeoMonday Berlin 2018)
HERE Intermodal Routing API (GeoMonday Berlin 2018)
 
Towards A 4D Digital Smart City
Towards A 4D Digital Smart CityTowards A 4D Digital Smart City
Towards A 4D Digital Smart City
 
The 4D Digital Smart City Presentation
The 4D Digital Smart City PresentationThe 4D Digital Smart City Presentation
The 4D Digital Smart City Presentation
 
Cross Media design scenarios: smartphones and tablets, a workshop at ISIA Des...
Cross Media design scenarios: smartphones and tablets, a workshop at ISIA Des...Cross Media design scenarios: smartphones and tablets, a workshop at ISIA Des...
Cross Media design scenarios: smartphones and tablets, a workshop at ISIA Des...
 
SPATIAL COMPUTING SPATIAL COMPUTING SPATIAL
SPATIAL COMPUTING SPATIAL COMPUTING SPATIALSPATIAL COMPUTING SPATIAL COMPUTING SPATIAL
SPATIAL COMPUTING SPATIAL COMPUTING SPATIAL
 
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
 
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
Introduction to Map and Location APIs (Silicon Valley Code Camp 2017)
 
Android location based services
Android location based servicesAndroid location based services
Android location based services
 
VRGIS and big data for smarter, healthier cities
VRGIS and big data for smarter, healthier citiesVRGIS and big data for smarter, healthier cities
VRGIS and big data for smarter, healthier cities
 
Garmin Developer Summit 2018 - Talk
Garmin Developer Summit 2018 - TalkGarmin Developer Summit 2018 - Talk
Garmin Developer Summit 2018 - Talk
 
Garmin Developer Summit 2018 - Talk
Garmin Developer Summit 2018 - TalkGarmin Developer Summit 2018 - Talk
Garmin Developer Summit 2018 - Talk
 
Where20 2008 Ruby Tutorial
Where20 2008 Ruby TutorialWhere20 2008 Ruby Tutorial
Where20 2008 Ruby Tutorial
 
SkyMap Global - Google Maps Premier Partner
SkyMap Global - Google Maps Premier PartnerSkyMap Global - Google Maps Premier Partner
SkyMap Global - Google Maps Premier Partner
 
How Technology Advancement Makes Last Mile Delivery Efficient .pdf
How Technology Advancement Makes Last Mile Delivery Efficient  .pdfHow Technology Advancement Makes Last Mile Delivery Efficient  .pdf
How Technology Advancement Makes Last Mile Delivery Efficient .pdf
 
The 10 most popular gps tracking companies 2018
The 10 most popular gps tracking companies 2018The 10 most popular gps tracking companies 2018
The 10 most popular gps tracking companies 2018
 
Sygic Enterprise Services
Sygic Enterprise ServicesSygic Enterprise Services
Sygic Enterprise Services
 
Sygic Enterprise Services
Sygic Enterprise Services Sygic Enterprise Services
Sygic Enterprise Services
 
APIdays Mediterranea: APIs for Mobile Solutions. Context-Aware Apps: a busine...
APIdays Mediterranea: APIs for Mobile Solutions. Context-Aware Apps: a busine...APIdays Mediterranea: APIs for Mobile Solutions. Context-Aware Apps: a busine...
APIdays Mediterranea: APIs for Mobile Solutions. Context-Aware Apps: a busine...
 
Location based services using augmented reality
Location based services using augmented realityLocation based services using augmented reality
Location based services using augmented reality
 
The Future of Indoor Mapping - Nokia / Here
The Future of Indoor Mapping - Nokia / HereThe Future of Indoor Mapping - Nokia / Here
The Future of Indoor Mapping - Nokia / Here
 

More from HERE Technologies

How to Build Your Own Ridesharing App (droidcon NYC 2018)
How to Build Your Own Ridesharing App (droidcon NYC 2018)How to Build Your Own Ridesharing App (droidcon NYC 2018)
How to Build Your Own Ridesharing App (droidcon NYC 2018)HERE Technologies
 
Garmin Developer Summit 2018 - Lightning Talk
Garmin Developer Summit 2018 - Lightning TalkGarmin Developer Summit 2018 - Lightning Talk
Garmin Developer Summit 2018 - Lightning TalkHERE Technologies
 
HERE at Bosch Connected Experience Hackathon
HERE at Bosch Connected Experience HackathonHERE at Bosch Connected Experience Hackathon
HERE at Bosch Connected Experience HackathonHERE Technologies
 
Critical Apps Challenge Webinar 2018
Critical Apps Challenge Webinar 2018Critical Apps Challenge Webinar 2018
Critical Apps Challenge Webinar 2018HERE Technologies
 
SpaceTech Hackathon 2017 Webinar
SpaceTech Hackathon 2017 WebinarSpaceTech Hackathon 2017 Webinar
SpaceTech Hackathon 2017 WebinarHERE Technologies
 
The Future of Location Technology for Developers (GeoIT Navigation Talks Berl...
The Future of Location Technology for Developers (GeoIT Navigation Talks Berl...The Future of Location Technology for Developers (GeoIT Navigation Talks Berl...
The Future of Location Technology for Developers (GeoIT Navigation Talks Berl...HERE Technologies
 

More from HERE Technologies (8)

How to Build Your Own Ridesharing App (droidcon NYC 2018)
How to Build Your Own Ridesharing App (droidcon NYC 2018)How to Build Your Own Ridesharing App (droidcon NYC 2018)
How to Build Your Own Ridesharing App (droidcon NYC 2018)
 
Garmin Developer Summit 2018 - Lightning Talk
Garmin Developer Summit 2018 - Lightning TalkGarmin Developer Summit 2018 - Lightning Talk
Garmin Developer Summit 2018 - Lightning Talk
 
HERE at Bosch Connected Experience Hackathon
HERE at Bosch Connected Experience HackathonHERE at Bosch Connected Experience Hackathon
HERE at Bosch Connected Experience Hackathon
 
Critical Apps Challenge Webinar 2018
Critical Apps Challenge Webinar 2018Critical Apps Challenge Webinar 2018
Critical Apps Challenge Webinar 2018
 
Where Camp 2017 Berlin
Where Camp 2017 BerlinWhere Camp 2017 Berlin
Where Camp 2017 Berlin
 
SpaceTech Hackathon 2017 Webinar
SpaceTech Hackathon 2017 WebinarSpaceTech Hackathon 2017 Webinar
SpaceTech Hackathon 2017 Webinar
 
Location Services 101
Location Services 101Location Services 101
Location Services 101
 
The Future of Location Technology for Developers (GeoIT Navigation Talks Berl...
The Future of Location Technology for Developers (GeoIT Navigation Talks Berl...The Future of Location Technology for Developers (GeoIT Navigation Talks Berl...
The Future of Location Technology for Developers (GeoIT Navigation Talks Berl...
 

Recently uploaded

Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 

Recently uploaded (20)

Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

Data for Happiness Hackathon 2018 Dubai