SlideShare a Scribd company logo
1 of 21
Download to read offline
Copyright © 2019 TIS Inc. All rights reserved.
TIS Inc.
FIWARE Global Summit 2019
23/Oct./2019
Strategic Technology Center
Technology & Innovation SBU
Kazuki Urabe
Standard data models for the integration of FIWARE
and robotic systems
Copyright © 2019 TIS Inc. All rights reserved.
Agenda
• About us
• Our activities
• Standard data models in Robotics Domain
• Next steps for data model definition
2
Copyright © 2019 TIS Inc. All rights reserved.
About us
Copyright © 2018 TIS Inc. All rights reserved. 4
TIS is System Integration company
TIS has been developing systems in a wide range of industries.
Members of R&D sectors have several research themes, such as
Immersive technology, Biometric Device and Service robotics.
Immersive Technology
Service Robotics
Post ML
Admin Shell
Biometric Device
Copyright © 2018 TIS Inc. All rights reserved. 5
Our activities
Copyright © 2018 TIS Inc. All rights reserved. 6
RoboticBase
A platform for collaboration among Robots, People and Environments
Copyright © 2018 TIS Inc. All rights reserved. 7
Architecture
RoboticBase consist of FIWARE GEs managed by Kubernetes
We verified heterogeneous robots are collaborated on
RoboticBase during experiment
Copyright © 2018 TIS Inc. All rights reserved. 8
Experiment with University of Aizu (2018)
We and University of Aizu performed an experiment to guide a
visitor by collaborating with heterogeneous robots, IoT devices and
people through our Robot Platform on 6th - 8th Nov. 2018.
Copyright © 2018 TIS Inc. All rights reserved. 9
Standard data models in Robotics Domain
Copyright © 2018 TIS Inc. All rights reserved. 10
It is required for collaboration with FIWARE and Robots
When a robot send the data of location, developers need to consider
to:
Consideration for data structure
{
latitude: 1.0,
longitude: 2.0,
altitude: 3.0
}
{
lat : 1.0,
lon : 2.0,
alt : 3.0
}
{
xy_pair: [1.0, 2.0],
z: 3.0
}
{
coordinates: [1.0, 2.0, 3.0]
}
{
x: 1.0,
y: 2.0,
z: 3.0
}
or
or
Which attribute name is used?
In abbreviation?
What kind of structure?
At present, lack of standard data models is an issue
{
X: 1.0,
Y: 2.0,
Z: 3.0
}
Upper or lower?
Copyright © 2018 TIS Inc. All rights reserved. 11
1. robot developers to define new data models with reference to
standard data models
• need to consider original parts only
2. data scientists to utilize the robot context data from
heterogeneous robots
{
latitude: 1.0,
longitude: 2.0,
altitude: 3.0
battery state{…}
}
Standard data models in Robotics Domain
enable:
TIS is working to define the standard data model for robots.
{
latitude: 1.0,
longitude: 2.0,
altitude: 3.0
}
Standard data models
{
latitude: 1.0,
longitude: 2.0,
altitude: 3.0,Reference to
New data models
Integration AnalysisLearning
Developers can use the data for various ways
FIWARE
Context Broker Business Logic
Copyright © 2018 TIS Inc. All rights reserved. 12
Standard data models in Robotics Domain
Data models are composed of several building blocks
We believe that the data model used Robotics Domain can be realized
by combining various building blocks according to its use cases.
Common block A
…
location
Special block α
…
…
Mapping
Data
Degrees
Joint Trajectory
Common block B Special block β
A concrete data model
according to a use case
Data models should be define of various building blocks
Copyright © 2019 TIS Inc. All rights reserved.
Experiment with University of Aizu (2019)
Automation of logistics system by collaborating between Inventory
management systems and Autonomous mobile robots(AMRs)
13
2) AMRs pick up baggages in warehouse
3) AMRs deliver baggages to destinations
1) AMRs receive command
from a cloud server
TIS starts with defining the data model based on the scenario of
the experiment
Copyright © 2019 TIS Inc. All rights reserved.
For Autonomous mobile robots
1. Normal Command & Response
– Normal command includes coordinates of
all waypoint
2. Emergency Command & Response
3. Periodic state message
14
Normal command
Return message
FIWARE
Context Broker
Emergency command
Return message
Periodic state message
Standard data models in Robotics Domain
{
}
{ x, y, z, roll, pitch, yaw},
{ x, y, z, roll, pitch, yaw},
…
Copyright © 2019 TIS Inc. All rights reserved.
Standard data models in Robotics Domain
15
1. Command & Response
• Command AMR to move waypoints
Name Type Description
id string Unique ID of the robot
type string Entity name
time string
Send date(YYYY-MM-
DDThh:mm:ss.sssZ)
cmd string
Command:
["navi", "standby“, “refresh”]
waypoints array Positions of waypoints
point object Coordinates of each waypoint
x number x-coordinate
y number y-coordinate
z number z-coordinate
angle_optional object Angles of each waypoints
valid boolean Validate assignment of angle
angle object Angles of each waypoint
roll number Roll
pitch number Pitch
yaw number Yaw
• The return message from AMR
Name Type Description
id string Unique ID of the robot
type string Entity name
time string
Send date
(YYYY-MM-DDThh:mm:ss.sssZ)
received_time string
Received date
(YYYY-MM-DDThh:mm:ss.sssZ)
received_cmd string
Received command:
["navi", "standby“, “refresh”]
received_waypoints array Received positions of waypoints
point object Coordinates of each waypoint
x number x-coordinate
y number y-coordinate
z number z-coordinate
angle_optional object Angles of each waypoints
valid boolean Validate assignment of angle
angle object Angles of each waypoint
roll number Roll
pitch number Pitch
yaw number Yaw
result string
Result for the command:
["ack", "ignore", "error"]
errors array Lists of errors
Copyright © 2019 TIS Inc. All rights reserved.
Standard data models in Robotics Domain
16
2. Emergency command & Response
• Emergency command AMR to stop
Name Type Description
id string Unique ID of the robot
type string Entity name
time string Send date(YYYY-MM-DDThh:mm:ss.sssZ)
emergency_cmd string Emergency command: [“stop"]
Name Type Description
id string Unique ID of the robot
type string Entity name
time string Send date(YYYY-MM-DDThh:mm:ss.sssZ)
received_time string Received date(YYYY-MM-DDThh:mm:ss.sssZ)
received_emergency_cmd string received emergency command: ["stop"]
result string
Result for the emergency command["ack",
"error"]
errors array Lists of errors
• The return message from AMR
Copyright © 2019 TIS Inc. All rights reserved.
Standard data models in Robotics Domain
17
3. Periodic state message
• State message from AMR
Name Type Description
id string Unique ID of the robot
type string Entity name
time string
Send date(YYYY-MM-
DDThh:mm:ss.sssZ)
mode string
Status of the robot: ["navi",
"standby", "error"]
errors array Lists of errors
pose object Current position
point object Current coordinates
x number x-coordinate
y number y-coordinate
z number z-coordinate
angle object Current angles
roll number Roll
pitch number Pitch
yaw number Yaw
destination object Current destination
point object Coordinates of current destination
x number x-coordinate
y number y-coordinate
z number z-coordinate
angle_optio
nal
object Angles of current destination
valid boolean Validate assignment of angle
angle object Angles
roll number Roll
pit
ch
number Pitch
ya
w
number Yaw
covariance array
Error covariance matrix
minItems:36, maxItems:36
battery object Battery state
voltage number Voltage
current_opti
onal
object Current s
valid boolean Validate assignment of current
current number Current
Copyright © 2019 TIS Inc. All rights reserved.
Next steps for data model definition
Copyright © 2019 TIS Inc. All rights reserved.
Next steps for data model definition
19
2019 2020
Oct. Nov. Dec. Jan. Feb. Mar. Apr. May
Events
TIS Inc.
Members
of
Robotics
FIWARE
Tech
Roadmap
WG
▲
FIWARE
Global
Summit
▲
FIWARE
Global
Summit
▲
PoC(UoA)
▲
Web
Conf.
development of Data models
▲
Web
Conf.
▲
Web
Conf.
▲
Web
Conf.
FeedbackVerification of DMsReport the progress
▲
Draft2
▲
Release
Report
Robotics FIWARE Tech Roadmap WG
• Members
FIWARE Foundation
Atos
eProsima
Fraunhofer IML
TIS
▲
Web
Conf.
• Goals
Position paper on Robotics and FIWARE
Identify areas of potential collaboration
Identify areas of potential standardization
(e.g., data models)
Copyright © 2019 TIS Inc. All rights reserved.
Summary
RoboticBase is a platform among Robots, People and
Environment
TIS have been developed a platform to collaborate robot with people.
TIS verified collaboration of heterogeneous robots during experiment in
2018.
Consideration for data structure is required for collaboration
with FIWARE and Robots
TIS are concerned that robots have difficulty collaborating other robots via
FIWARE because standard data models for robots do not exist
Standard data models in Robotics Domain
TIS is defining the models for robots focused on Autonomous mobile
robots based on use case of experiment in 2019.
We will contribute our models to FIWARE data models until March.
20
RoboticBase is open sourced
https://github.com/RoboticBase/core

More Related Content

What's hot

Altitude NY 2018: What's next in edge computing?
Altitude NY 2018: What's next in edge computing?Altitude NY 2018: What's next in edge computing?
Altitude NY 2018: What's next in edge computing?Fastly
 
Algorithm Marketplace and the new "Algorithm Economy"
Algorithm Marketplace and the new "Algorithm Economy"Algorithm Marketplace and the new "Algorithm Economy"
Algorithm Marketplace and the new "Algorithm Economy"Diego Oppenheimer
 
Algorithmia at HackerNews Meetup Seattle
Algorithmia at HackerNews Meetup SeattleAlgorithmia at HackerNews Meetup Seattle
Algorithmia at HackerNews Meetup Seattledoppenhe
 
HPE Presentation on Internet of Things at IoT World 2016 - Dubai
HPE Presentation on Internet of Things at IoT World 2016 - DubaiHPE Presentation on Internet of Things at IoT World 2016 - Dubai
HPE Presentation on Internet of Things at IoT World 2016 - DubaiAlpha Data
 
IoT IMPLEMENTATION CHALLENGES and the future of IoT connectivity by Matija Pu...
IoT IMPLEMENTATION CHALLENGES and the future of IoT connectivity by Matija Pu...IoT IMPLEMENTATION CHALLENGES and the future of IoT connectivity by Matija Pu...
IoT IMPLEMENTATION CHALLENGES and the future of IoT connectivity by Matija Pu...Bosnia Agile
 
Bhadale group of companies edge intelligence services catalogue
Bhadale group of companies edge intelligence services catalogueBhadale group of companies edge intelligence services catalogue
Bhadale group of companies edge intelligence services catalogueVijayananda Mohire
 
Will Edge Computing IoT Solutions be a Real Trend in 2019?
Will Edge Computing IoT Solutions be a Real Trend in 2019?Will Edge Computing IoT Solutions be a Real Trend in 2019?
Will Edge Computing IoT Solutions be a Real Trend in 2019?Tyrone Systems
 
EDGE COMPUTING
EDGE COMPUTINGEDGE COMPUTING
EDGE COMPUTINGMosin A
 
Cheryl Wiebe - Advanced Analytics in the Industrial World
Cheryl Wiebe - Advanced Analytics in the Industrial WorldCheryl Wiebe - Advanced Analytics in the Industrial World
Cheryl Wiebe - Advanced Analytics in the Industrial WorldRehgan Avon
 
FIWARE Global Summit - The Digital Single Market - Benefits and Solutions for...
FIWARE Global Summit - The Digital Single Market - Benefits and Solutions for...FIWARE Global Summit - The Digital Single Market - Benefits and Solutions for...
FIWARE Global Summit - The Digital Single Market - Benefits and Solutions for...FIWARE
 
Accelerating analytics on the Sensor and IoT Data.
Accelerating analytics on the Sensor and IoT Data. Accelerating analytics on the Sensor and IoT Data.
Accelerating analytics on the Sensor and IoT Data. Keshav Murthy
 
Schema.fiware.org: FIWARE Harmonized Data Models
Schema.fiware.org: FIWARE Harmonized Data ModelsSchema.fiware.org: FIWARE Harmonized Data Models
Schema.fiware.org: FIWARE Harmonized Data ModelsFIWARE
 
Small startup, big impact in IoT by Mensur Đogić
Small startup, big impact in IoT by Mensur ĐogićSmall startup, big impact in IoT by Mensur Đogić
Small startup, big impact in IoT by Mensur ĐogićBosnia Agile
 
Key Data Management Requirements for the IoT
Key Data Management Requirements for the IoTKey Data Management Requirements for the IoT
Key Data Management Requirements for the IoTMongoDB
 
The State of Edge Computing for IoT
The State of Edge Computing for IoTThe State of Edge Computing for IoT
The State of Edge Computing for IoTIan Skerrett
 
Internet of Things introduction
Internet of Things introductionInternet of Things introduction
Internet of Things introductionVeselin Pizurica
 
Cognitive Digital Twin by Fariz Saračević
Cognitive Digital Twin by Fariz SaračevićCognitive Digital Twin by Fariz Saračević
Cognitive Digital Twin by Fariz SaračevićBosnia Agile
 
Internet of Things (IoT) overview powered by Red Hat
Internet of Things (IoT) overview powered by Red HatInternet of Things (IoT) overview powered by Red Hat
Internet of Things (IoT) overview powered by Red HatDavid Bericat
 

What's hot (20)

Altitude NY 2018: What's next in edge computing?
Altitude NY 2018: What's next in edge computing?Altitude NY 2018: What's next in edge computing?
Altitude NY 2018: What's next in edge computing?
 
Algorithm Marketplace and the new "Algorithm Economy"
Algorithm Marketplace and the new "Algorithm Economy"Algorithm Marketplace and the new "Algorithm Economy"
Algorithm Marketplace and the new "Algorithm Economy"
 
Algorithmia at HackerNews Meetup Seattle
Algorithmia at HackerNews Meetup SeattleAlgorithmia at HackerNews Meetup Seattle
Algorithmia at HackerNews Meetup Seattle
 
HPE Presentation on Internet of Things at IoT World 2016 - Dubai
HPE Presentation on Internet of Things at IoT World 2016 - DubaiHPE Presentation on Internet of Things at IoT World 2016 - Dubai
HPE Presentation on Internet of Things at IoT World 2016 - Dubai
 
IoT IMPLEMENTATION CHALLENGES and the future of IoT connectivity by Matija Pu...
IoT IMPLEMENTATION CHALLENGES and the future of IoT connectivity by Matija Pu...IoT IMPLEMENTATION CHALLENGES and the future of IoT connectivity by Matija Pu...
IoT IMPLEMENTATION CHALLENGES and the future of IoT connectivity by Matija Pu...
 
Bhadale group of companies edge intelligence services catalogue
Bhadale group of companies edge intelligence services catalogueBhadale group of companies edge intelligence services catalogue
Bhadale group of companies edge intelligence services catalogue
 
Will Edge Computing IoT Solutions be a Real Trend in 2019?
Will Edge Computing IoT Solutions be a Real Trend in 2019?Will Edge Computing IoT Solutions be a Real Trend in 2019?
Will Edge Computing IoT Solutions be a Real Trend in 2019?
 
Edge intelligence
Edge intelligenceEdge intelligence
Edge intelligence
 
EDGE COMPUTING
EDGE COMPUTINGEDGE COMPUTING
EDGE COMPUTING
 
Cheryl Wiebe - Advanced Analytics in the Industrial World
Cheryl Wiebe - Advanced Analytics in the Industrial WorldCheryl Wiebe - Advanced Analytics in the Industrial World
Cheryl Wiebe - Advanced Analytics in the Industrial World
 
FIWARE Global Summit - The Digital Single Market - Benefits and Solutions for...
FIWARE Global Summit - The Digital Single Market - Benefits and Solutions for...FIWARE Global Summit - The Digital Single Market - Benefits and Solutions for...
FIWARE Global Summit - The Digital Single Market - Benefits and Solutions for...
 
Accelerating analytics on the Sensor and IoT Data.
Accelerating analytics on the Sensor and IoT Data. Accelerating analytics on the Sensor and IoT Data.
Accelerating analytics on the Sensor and IoT Data.
 
Schema.fiware.org: FIWARE Harmonized Data Models
Schema.fiware.org: FIWARE Harmonized Data ModelsSchema.fiware.org: FIWARE Harmonized Data Models
Schema.fiware.org: FIWARE Harmonized Data Models
 
Small startup, big impact in IoT by Mensur Đogić
Small startup, big impact in IoT by Mensur ĐogićSmall startup, big impact in IoT by Mensur Đogić
Small startup, big impact in IoT by Mensur Đogić
 
Key Data Management Requirements for the IoT
Key Data Management Requirements for the IoTKey Data Management Requirements for the IoT
Key Data Management Requirements for the IoT
 
The State of Edge Computing for IoT
The State of Edge Computing for IoTThe State of Edge Computing for IoT
The State of Edge Computing for IoT
 
Internet of Things introduction
Internet of Things introductionInternet of Things introduction
Internet of Things introduction
 
Cognitive Digital Twin by Fariz Saračević
Cognitive Digital Twin by Fariz SaračevićCognitive Digital Twin by Fariz Saračević
Cognitive Digital Twin by Fariz Saračević
 
fog&Edge computing
fog&Edge computingfog&Edge computing
fog&Edge computing
 
Internet of Things (IoT) overview powered by Red Hat
Internet of Things (IoT) overview powered by Red HatInternet of Things (IoT) overview powered by Red Hat
Internet of Things (IoT) overview powered by Red Hat
 

Similar to FIWARE Global Summit - Standard Data Models for the Integration of FIWARE and Robotic Systems

Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData
Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData
Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData InfluxData
 
IoT at the Edge: Using AR & ML to Provide Real-Time Industrial Monitoring (AR...
IoT at the Edge: Using AR & ML to Provide Real-Time Industrial Monitoring (AR...IoT at the Edge: Using AR & ML to Provide Real-Time Industrial Monitoring (AR...
IoT at the Edge: Using AR & ML to Provide Real-Time Industrial Monitoring (AR...Amazon Web Services
 
Analyzing Streaming Data in Real Time
Analyzing Streaming Data in Real TimeAnalyzing Streaming Data in Real Time
Analyzing Streaming Data in Real TimeAmazon Web Services
 
Search Your DynamoDB Data with Amazon Elasticsearch Service (ANT302) - AWS re...
Search Your DynamoDB Data with Amazon Elasticsearch Service (ANT302) - AWS re...Search Your DynamoDB Data with Amazon Elasticsearch Service (ANT302) - AWS re...
Search Your DynamoDB Data with Amazon Elasticsearch Service (ANT302) - AWS re...Amazon Web Services
 
The Intelligent Edge for IoT: Help Customers Harness the Power of Connected I...
The Intelligent Edge for IoT: Help Customers Harness the Power of Connected I...The Intelligent Edge for IoT: Help Customers Harness the Power of Connected I...
The Intelligent Edge for IoT: Help Customers Harness the Power of Connected I...Amazon Web Services
 
Analyzing Streaming Data in Real-time - AWS Summit Cape Town 2018
Analyzing Streaming Data in Real-time - AWS Summit Cape Town 2018Analyzing Streaming Data in Real-time - AWS Summit Cape Town 2018
Analyzing Streaming Data in Real-time - AWS Summit Cape Town 2018Amazon Web Services
 
Announcing AWS RoboMaker: A New Cloud Robotics Service (ROB201-R1) - AWS re:I...
Announcing AWS RoboMaker: A New Cloud Robotics Service (ROB201-R1) - AWS re:I...Announcing AWS RoboMaker: A New Cloud Robotics Service (ROB201-R1) - AWS re:I...
Announcing AWS RoboMaker: A New Cloud Robotics Service (ROB201-R1) - AWS re:I...Amazon Web Services
 
AWS Smart Cities Webinar - April 2018
AWS Smart Cities Webinar - April 2018AWS Smart Cities Webinar - April 2018
AWS Smart Cities Webinar - April 2018Amazon Web Services
 
Implementing Multi-Region AWS IoT, ft. Analog Devices (IOT401) - AWS re:Inven...
Implementing Multi-Region AWS IoT, ft. Analog Devices (IOT401) - AWS re:Inven...Implementing Multi-Region AWS IoT, ft. Analog Devices (IOT401) - AWS re:Inven...
Implementing Multi-Region AWS IoT, ft. Analog Devices (IOT401) - AWS re:Inven...Amazon Web Services
 
DDD and Microservices: Like Peanut Butter and Jelly - Matt Stine
DDD and Microservices: Like Peanut Butter and Jelly - Matt StineDDD and Microservices: Like Peanut Butter and Jelly - Matt Stine
DDD and Microservices: Like Peanut Butter and Jelly - Matt StineVMware Tanzu
 
Offshore to Onshore: The role of software technology in the US Manufacturing ...
Offshore to Onshore: The role of software technology in the US Manufacturing ...Offshore to Onshore: The role of software technology in the US Manufacturing ...
Offshore to Onshore: The role of software technology in the US Manufacturing ...World Financial Symposiums
 
Domino and AWS: collaborative analytics and model governance at financial ser...
Domino and AWS: collaborative analytics and model governance at financial ser...Domino and AWS: collaborative analytics and model governance at financial ser...
Domino and AWS: collaborative analytics and model governance at financial ser...Domino Data Lab
 
Amazon Kinesis: Real-time Streaming Big data Processing Applications (BDT311)...
Amazon Kinesis: Real-time Streaming Big data Processing Applications (BDT311)...Amazon Kinesis: Real-time Streaming Big data Processing Applications (BDT311)...
Amazon Kinesis: Real-time Streaming Big data Processing Applications (BDT311)...Amazon Web Services
 
IoT Building Blocks_ From Edge Devices to Analytics in the Cloud
IoT Building Blocks_ From Edge Devices to Analytics in the Cloud IoT Building Blocks_ From Edge Devices to Analytics in the Cloud
IoT Building Blocks_ From Edge Devices to Analytics in the Cloud Amazon Web Services
 
AI Solutions with Macnica.ai - AI Expo 2018 Tokyo Japan
AI Solutions with Macnica.ai - AI Expo 2018 Tokyo JapanAI Solutions with Macnica.ai - AI Expo 2018 Tokyo Japan
AI Solutions with Macnica.ai - AI Expo 2018 Tokyo JapanAvkash Chauhan
 
AppSync in real world - pitfalls, unexpected benefits & lessons learnt
AppSync in real world - pitfalls, unexpected benefits & lessons learntAppSync in real world - pitfalls, unexpected benefits & lessons learnt
AppSync in real world - pitfalls, unexpected benefits & lessons learntAWS User Group Bengaluru
 
MongoDB and the Internet of Things
MongoDB and the Internet of ThingsMongoDB and the Internet of Things
MongoDB and the Internet of ThingsMongoDB
 
Building Your Robot using AWS Robomaker
Building Your Robot using AWS RobomakerBuilding Your Robot using AWS Robomaker
Building Your Robot using AWS RobomakerAlex Barbosa Coqueiro
 
Making Sense of Schema on Read
Making Sense of Schema on ReadMaking Sense of Schema on Read
Making Sense of Schema on ReadKent Graziano
 
Towards Digital Twin standards following an open source approach
Towards Digital Twin standards following an open source approachTowards Digital Twin standards following an open source approach
Towards Digital Twin standards following an open source approachFIWARE
 

Similar to FIWARE Global Summit - Standard Data Models for the Integration of FIWARE and Robotic Systems (20)

Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData
Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData
Creating and Using the Flux SQL Datasource | Katy Farmer | InfluxData
 
IoT at the Edge: Using AR & ML to Provide Real-Time Industrial Monitoring (AR...
IoT at the Edge: Using AR & ML to Provide Real-Time Industrial Monitoring (AR...IoT at the Edge: Using AR & ML to Provide Real-Time Industrial Monitoring (AR...
IoT at the Edge: Using AR & ML to Provide Real-Time Industrial Monitoring (AR...
 
Analyzing Streaming Data in Real Time
Analyzing Streaming Data in Real TimeAnalyzing Streaming Data in Real Time
Analyzing Streaming Data in Real Time
 
Search Your DynamoDB Data with Amazon Elasticsearch Service (ANT302) - AWS re...
Search Your DynamoDB Data with Amazon Elasticsearch Service (ANT302) - AWS re...Search Your DynamoDB Data with Amazon Elasticsearch Service (ANT302) - AWS re...
Search Your DynamoDB Data with Amazon Elasticsearch Service (ANT302) - AWS re...
 
The Intelligent Edge for IoT: Help Customers Harness the Power of Connected I...
The Intelligent Edge for IoT: Help Customers Harness the Power of Connected I...The Intelligent Edge for IoT: Help Customers Harness the Power of Connected I...
The Intelligent Edge for IoT: Help Customers Harness the Power of Connected I...
 
Analyzing Streaming Data in Real-time - AWS Summit Cape Town 2018
Analyzing Streaming Data in Real-time - AWS Summit Cape Town 2018Analyzing Streaming Data in Real-time - AWS Summit Cape Town 2018
Analyzing Streaming Data in Real-time - AWS Summit Cape Town 2018
 
Announcing AWS RoboMaker: A New Cloud Robotics Service (ROB201-R1) - AWS re:I...
Announcing AWS RoboMaker: A New Cloud Robotics Service (ROB201-R1) - AWS re:I...Announcing AWS RoboMaker: A New Cloud Robotics Service (ROB201-R1) - AWS re:I...
Announcing AWS RoboMaker: A New Cloud Robotics Service (ROB201-R1) - AWS re:I...
 
AWS Smart Cities Webinar - April 2018
AWS Smart Cities Webinar - April 2018AWS Smart Cities Webinar - April 2018
AWS Smart Cities Webinar - April 2018
 
Implementing Multi-Region AWS IoT, ft. Analog Devices (IOT401) - AWS re:Inven...
Implementing Multi-Region AWS IoT, ft. Analog Devices (IOT401) - AWS re:Inven...Implementing Multi-Region AWS IoT, ft. Analog Devices (IOT401) - AWS re:Inven...
Implementing Multi-Region AWS IoT, ft. Analog Devices (IOT401) - AWS re:Inven...
 
DDD and Microservices: Like Peanut Butter and Jelly - Matt Stine
DDD and Microservices: Like Peanut Butter and Jelly - Matt StineDDD and Microservices: Like Peanut Butter and Jelly - Matt Stine
DDD and Microservices: Like Peanut Butter and Jelly - Matt Stine
 
Offshore to Onshore: The role of software technology in the US Manufacturing ...
Offshore to Onshore: The role of software technology in the US Manufacturing ...Offshore to Onshore: The role of software technology in the US Manufacturing ...
Offshore to Onshore: The role of software technology in the US Manufacturing ...
 
Domino and AWS: collaborative analytics and model governance at financial ser...
Domino and AWS: collaborative analytics and model governance at financial ser...Domino and AWS: collaborative analytics and model governance at financial ser...
Domino and AWS: collaborative analytics and model governance at financial ser...
 
Amazon Kinesis: Real-time Streaming Big data Processing Applications (BDT311)...
Amazon Kinesis: Real-time Streaming Big data Processing Applications (BDT311)...Amazon Kinesis: Real-time Streaming Big data Processing Applications (BDT311)...
Amazon Kinesis: Real-time Streaming Big data Processing Applications (BDT311)...
 
IoT Building Blocks_ From Edge Devices to Analytics in the Cloud
IoT Building Blocks_ From Edge Devices to Analytics in the Cloud IoT Building Blocks_ From Edge Devices to Analytics in the Cloud
IoT Building Blocks_ From Edge Devices to Analytics in the Cloud
 
AI Solutions with Macnica.ai - AI Expo 2018 Tokyo Japan
AI Solutions with Macnica.ai - AI Expo 2018 Tokyo JapanAI Solutions with Macnica.ai - AI Expo 2018 Tokyo Japan
AI Solutions with Macnica.ai - AI Expo 2018 Tokyo Japan
 
AppSync in real world - pitfalls, unexpected benefits & lessons learnt
AppSync in real world - pitfalls, unexpected benefits & lessons learntAppSync in real world - pitfalls, unexpected benefits & lessons learnt
AppSync in real world - pitfalls, unexpected benefits & lessons learnt
 
MongoDB and the Internet of Things
MongoDB and the Internet of ThingsMongoDB and the Internet of Things
MongoDB and the Internet of Things
 
Building Your Robot using AWS Robomaker
Building Your Robot using AWS RobomakerBuilding Your Robot using AWS Robomaker
Building Your Robot using AWS Robomaker
 
Making Sense of Schema on Read
Making Sense of Schema on ReadMaking Sense of Schema on Read
Making Sense of Schema on Read
 
Towards Digital Twin standards following an open source approach
Towards Digital Twin standards following an open source approachTowards Digital Twin standards following an open source approach
Towards Digital Twin standards following an open source approach
 

More from FIWARE

Behm_Herne_NeMo_akt.pptx
Behm_Herne_NeMo_akt.pptxBehm_Herne_NeMo_akt.pptx
Behm_Herne_NeMo_akt.pptxFIWARE
 
Katharina Hogrebe Herne Digital Days.pdf
 Katharina Hogrebe Herne Digital Days.pdf Katharina Hogrebe Herne Digital Days.pdf
Katharina Hogrebe Herne Digital Days.pdfFIWARE
 
Christoph Mertens_IDSA_Introduction to Data Spaces.pptx
Christoph Mertens_IDSA_Introduction to Data Spaces.pptxChristoph Mertens_IDSA_Introduction to Data Spaces.pptx
Christoph Mertens_IDSA_Introduction to Data Spaces.pptxFIWARE
 
Behm_Herne_NeMo.pptx
Behm_Herne_NeMo.pptxBehm_Herne_NeMo.pptx
Behm_Herne_NeMo.pptxFIWARE
 
Evangelists + iHubs Promo Slides.pptx
Evangelists + iHubs Promo Slides.pptxEvangelists + iHubs Promo Slides.pptx
Evangelists + iHubs Promo Slides.pptxFIWARE
 
Lukas Künzel Smart City Operating System.pptx
Lukas Künzel Smart City Operating System.pptxLukas Künzel Smart City Operating System.pptx
Lukas Künzel Smart City Operating System.pptxFIWARE
 
Pierre Golz Der Transformationsprozess im Konzern Stadt.pptx
Pierre Golz Der Transformationsprozess im Konzern Stadt.pptxPierre Golz Der Transformationsprozess im Konzern Stadt.pptx
Pierre Golz Der Transformationsprozess im Konzern Stadt.pptxFIWARE
 
Dennis Wendland_The i4Trust Collaboration Programme.pptx
Dennis Wendland_The i4Trust Collaboration Programme.pptxDennis Wendland_The i4Trust Collaboration Programme.pptx
Dennis Wendland_The i4Trust Collaboration Programme.pptxFIWARE
 
Ulrich Ahle_FIWARE.pptx
Ulrich Ahle_FIWARE.pptxUlrich Ahle_FIWARE.pptx
Ulrich Ahle_FIWARE.pptxFIWARE
 
Aleksandar Vrglevski _FIWARE DACH_OSIH.pptx
Aleksandar Vrglevski _FIWARE DACH_OSIH.pptxAleksandar Vrglevski _FIWARE DACH_OSIH.pptx
Aleksandar Vrglevski _FIWARE DACH_OSIH.pptxFIWARE
 
Water Quality - Lukas Kuenzel.pdf
Water Quality - Lukas Kuenzel.pdfWater Quality - Lukas Kuenzel.pdf
Water Quality - Lukas Kuenzel.pdfFIWARE
 
Cameron Brooks_FGS23_FIWARE Summit_Keynote_Cameron.pptx
Cameron Brooks_FGS23_FIWARE Summit_Keynote_Cameron.pptxCameron Brooks_FGS23_FIWARE Summit_Keynote_Cameron.pptx
Cameron Brooks_FGS23_FIWARE Summit_Keynote_Cameron.pptxFIWARE
 
FiWareSummit.msGIS-Data-to-Value.2023.06.12.pptx
FiWareSummit.msGIS-Data-to-Value.2023.06.12.pptxFiWareSummit.msGIS-Data-to-Value.2023.06.12.pptx
FiWareSummit.msGIS-Data-to-Value.2023.06.12.pptxFIWARE
 
Boris Otto_FGS2023_Opening- EU Innovations from Data_PUB_V1_BOt.pptx
Boris Otto_FGS2023_Opening- EU Innovations from Data_PUB_V1_BOt.pptxBoris Otto_FGS2023_Opening- EU Innovations from Data_PUB_V1_BOt.pptx
Boris Otto_FGS2023_Opening- EU Innovations from Data_PUB_V1_BOt.pptxFIWARE
 
Bjoern de Vidts_FGS23_Opening_athumi - bjord de vidts - personal data spaces....
Bjoern de Vidts_FGS23_Opening_athumi - bjord de vidts - personal data spaces....Bjoern de Vidts_FGS23_Opening_athumi - bjord de vidts - personal data spaces....
Bjoern de Vidts_FGS23_Opening_athumi - bjord de vidts - personal data spaces....FIWARE
 
Abdulrahman Ibrahim_FGS23 Opening - Abdulrahman Ibrahim.pdf
Abdulrahman Ibrahim_FGS23 Opening - Abdulrahman Ibrahim.pdfAbdulrahman Ibrahim_FGS23 Opening - Abdulrahman Ibrahim.pdf
Abdulrahman Ibrahim_FGS23 Opening - Abdulrahman Ibrahim.pdfFIWARE
 
FGS2023_Opening_Red Hat Keynote Andrea Battaglia.pdf
FGS2023_Opening_Red Hat Keynote Andrea Battaglia.pdfFGS2023_Opening_Red Hat Keynote Andrea Battaglia.pdf
FGS2023_Opening_Red Hat Keynote Andrea Battaglia.pdfFIWARE
 
HTAG_Skalierung_Plattform_lokal_final_versand.pptx
HTAG_Skalierung_Plattform_lokal_final_versand.pptxHTAG_Skalierung_Plattform_lokal_final_versand.pptx
HTAG_Skalierung_Plattform_lokal_final_versand.pptxFIWARE
 
WE_LoRaWAN _ IoT.pptx
WE_LoRaWAN  _ IoT.pptxWE_LoRaWAN  _ IoT.pptx
WE_LoRaWAN _ IoT.pptxFIWARE
 
EU Opp_Clara Pezuela - German chapter.pptx
EU Opp_Clara Pezuela - German chapter.pptxEU Opp_Clara Pezuela - German chapter.pptx
EU Opp_Clara Pezuela - German chapter.pptxFIWARE
 

More from FIWARE (20)

Behm_Herne_NeMo_akt.pptx
Behm_Herne_NeMo_akt.pptxBehm_Herne_NeMo_akt.pptx
Behm_Herne_NeMo_akt.pptx
 
Katharina Hogrebe Herne Digital Days.pdf
 Katharina Hogrebe Herne Digital Days.pdf Katharina Hogrebe Herne Digital Days.pdf
Katharina Hogrebe Herne Digital Days.pdf
 
Christoph Mertens_IDSA_Introduction to Data Spaces.pptx
Christoph Mertens_IDSA_Introduction to Data Spaces.pptxChristoph Mertens_IDSA_Introduction to Data Spaces.pptx
Christoph Mertens_IDSA_Introduction to Data Spaces.pptx
 
Behm_Herne_NeMo.pptx
Behm_Herne_NeMo.pptxBehm_Herne_NeMo.pptx
Behm_Herne_NeMo.pptx
 
Evangelists + iHubs Promo Slides.pptx
Evangelists + iHubs Promo Slides.pptxEvangelists + iHubs Promo Slides.pptx
Evangelists + iHubs Promo Slides.pptx
 
Lukas Künzel Smart City Operating System.pptx
Lukas Künzel Smart City Operating System.pptxLukas Künzel Smart City Operating System.pptx
Lukas Künzel Smart City Operating System.pptx
 
Pierre Golz Der Transformationsprozess im Konzern Stadt.pptx
Pierre Golz Der Transformationsprozess im Konzern Stadt.pptxPierre Golz Der Transformationsprozess im Konzern Stadt.pptx
Pierre Golz Der Transformationsprozess im Konzern Stadt.pptx
 
Dennis Wendland_The i4Trust Collaboration Programme.pptx
Dennis Wendland_The i4Trust Collaboration Programme.pptxDennis Wendland_The i4Trust Collaboration Programme.pptx
Dennis Wendland_The i4Trust Collaboration Programme.pptx
 
Ulrich Ahle_FIWARE.pptx
Ulrich Ahle_FIWARE.pptxUlrich Ahle_FIWARE.pptx
Ulrich Ahle_FIWARE.pptx
 
Aleksandar Vrglevski _FIWARE DACH_OSIH.pptx
Aleksandar Vrglevski _FIWARE DACH_OSIH.pptxAleksandar Vrglevski _FIWARE DACH_OSIH.pptx
Aleksandar Vrglevski _FIWARE DACH_OSIH.pptx
 
Water Quality - Lukas Kuenzel.pdf
Water Quality - Lukas Kuenzel.pdfWater Quality - Lukas Kuenzel.pdf
Water Quality - Lukas Kuenzel.pdf
 
Cameron Brooks_FGS23_FIWARE Summit_Keynote_Cameron.pptx
Cameron Brooks_FGS23_FIWARE Summit_Keynote_Cameron.pptxCameron Brooks_FGS23_FIWARE Summit_Keynote_Cameron.pptx
Cameron Brooks_FGS23_FIWARE Summit_Keynote_Cameron.pptx
 
FiWareSummit.msGIS-Data-to-Value.2023.06.12.pptx
FiWareSummit.msGIS-Data-to-Value.2023.06.12.pptxFiWareSummit.msGIS-Data-to-Value.2023.06.12.pptx
FiWareSummit.msGIS-Data-to-Value.2023.06.12.pptx
 
Boris Otto_FGS2023_Opening- EU Innovations from Data_PUB_V1_BOt.pptx
Boris Otto_FGS2023_Opening- EU Innovations from Data_PUB_V1_BOt.pptxBoris Otto_FGS2023_Opening- EU Innovations from Data_PUB_V1_BOt.pptx
Boris Otto_FGS2023_Opening- EU Innovations from Data_PUB_V1_BOt.pptx
 
Bjoern de Vidts_FGS23_Opening_athumi - bjord de vidts - personal data spaces....
Bjoern de Vidts_FGS23_Opening_athumi - bjord de vidts - personal data spaces....Bjoern de Vidts_FGS23_Opening_athumi - bjord de vidts - personal data spaces....
Bjoern de Vidts_FGS23_Opening_athumi - bjord de vidts - personal data spaces....
 
Abdulrahman Ibrahim_FGS23 Opening - Abdulrahman Ibrahim.pdf
Abdulrahman Ibrahim_FGS23 Opening - Abdulrahman Ibrahim.pdfAbdulrahman Ibrahim_FGS23 Opening - Abdulrahman Ibrahim.pdf
Abdulrahman Ibrahim_FGS23 Opening - Abdulrahman Ibrahim.pdf
 
FGS2023_Opening_Red Hat Keynote Andrea Battaglia.pdf
FGS2023_Opening_Red Hat Keynote Andrea Battaglia.pdfFGS2023_Opening_Red Hat Keynote Andrea Battaglia.pdf
FGS2023_Opening_Red Hat Keynote Andrea Battaglia.pdf
 
HTAG_Skalierung_Plattform_lokal_final_versand.pptx
HTAG_Skalierung_Plattform_lokal_final_versand.pptxHTAG_Skalierung_Plattform_lokal_final_versand.pptx
HTAG_Skalierung_Plattform_lokal_final_versand.pptx
 
WE_LoRaWAN _ IoT.pptx
WE_LoRaWAN  _ IoT.pptxWE_LoRaWAN  _ IoT.pptx
WE_LoRaWAN _ IoT.pptx
 
EU Opp_Clara Pezuela - German chapter.pptx
EU Opp_Clara Pezuela - German chapter.pptxEU Opp_Clara Pezuela - German chapter.pptx
EU Opp_Clara Pezuela - German chapter.pptx
 

Recently uploaded

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentationphoebematthew05
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 

Recently uploaded (20)

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
costume and set research powerpoint presentation
costume and set research powerpoint presentationcostume and set research powerpoint presentation
costume and set research powerpoint presentation
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 

FIWARE Global Summit - Standard Data Models for the Integration of FIWARE and Robotic Systems

  • 1. Copyright © 2019 TIS Inc. All rights reserved. TIS Inc. FIWARE Global Summit 2019 23/Oct./2019 Strategic Technology Center Technology & Innovation SBU Kazuki Urabe Standard data models for the integration of FIWARE and robotic systems
  • 2. Copyright © 2019 TIS Inc. All rights reserved. Agenda • About us • Our activities • Standard data models in Robotics Domain • Next steps for data model definition 2
  • 3. Copyright © 2019 TIS Inc. All rights reserved. About us
  • 4. Copyright © 2018 TIS Inc. All rights reserved. 4 TIS is System Integration company TIS has been developing systems in a wide range of industries. Members of R&D sectors have several research themes, such as Immersive technology, Biometric Device and Service robotics. Immersive Technology Service Robotics Post ML Admin Shell Biometric Device
  • 5. Copyright © 2018 TIS Inc. All rights reserved. 5 Our activities
  • 6. Copyright © 2018 TIS Inc. All rights reserved. 6 RoboticBase A platform for collaboration among Robots, People and Environments
  • 7. Copyright © 2018 TIS Inc. All rights reserved. 7 Architecture RoboticBase consist of FIWARE GEs managed by Kubernetes We verified heterogeneous robots are collaborated on RoboticBase during experiment
  • 8. Copyright © 2018 TIS Inc. All rights reserved. 8 Experiment with University of Aizu (2018) We and University of Aizu performed an experiment to guide a visitor by collaborating with heterogeneous robots, IoT devices and people through our Robot Platform on 6th - 8th Nov. 2018.
  • 9. Copyright © 2018 TIS Inc. All rights reserved. 9 Standard data models in Robotics Domain
  • 10. Copyright © 2018 TIS Inc. All rights reserved. 10 It is required for collaboration with FIWARE and Robots When a robot send the data of location, developers need to consider to: Consideration for data structure { latitude: 1.0, longitude: 2.0, altitude: 3.0 } { lat : 1.0, lon : 2.0, alt : 3.0 } { xy_pair: [1.0, 2.0], z: 3.0 } { coordinates: [1.0, 2.0, 3.0] } { x: 1.0, y: 2.0, z: 3.0 } or or Which attribute name is used? In abbreviation? What kind of structure? At present, lack of standard data models is an issue { X: 1.0, Y: 2.0, Z: 3.0 } Upper or lower?
  • 11. Copyright © 2018 TIS Inc. All rights reserved. 11 1. robot developers to define new data models with reference to standard data models • need to consider original parts only 2. data scientists to utilize the robot context data from heterogeneous robots { latitude: 1.0, longitude: 2.0, altitude: 3.0 battery state{…} } Standard data models in Robotics Domain enable: TIS is working to define the standard data model for robots. { latitude: 1.0, longitude: 2.0, altitude: 3.0 } Standard data models { latitude: 1.0, longitude: 2.0, altitude: 3.0,Reference to New data models Integration AnalysisLearning Developers can use the data for various ways FIWARE Context Broker Business Logic
  • 12. Copyright © 2018 TIS Inc. All rights reserved. 12 Standard data models in Robotics Domain Data models are composed of several building blocks We believe that the data model used Robotics Domain can be realized by combining various building blocks according to its use cases. Common block A … location Special block α … … Mapping Data Degrees Joint Trajectory Common block B Special block β A concrete data model according to a use case Data models should be define of various building blocks
  • 13. Copyright © 2019 TIS Inc. All rights reserved. Experiment with University of Aizu (2019) Automation of logistics system by collaborating between Inventory management systems and Autonomous mobile robots(AMRs) 13 2) AMRs pick up baggages in warehouse 3) AMRs deliver baggages to destinations 1) AMRs receive command from a cloud server TIS starts with defining the data model based on the scenario of the experiment
  • 14. Copyright © 2019 TIS Inc. All rights reserved. For Autonomous mobile robots 1. Normal Command & Response – Normal command includes coordinates of all waypoint 2. Emergency Command & Response 3. Periodic state message 14 Normal command Return message FIWARE Context Broker Emergency command Return message Periodic state message Standard data models in Robotics Domain { } { x, y, z, roll, pitch, yaw}, { x, y, z, roll, pitch, yaw}, …
  • 15. Copyright © 2019 TIS Inc. All rights reserved. Standard data models in Robotics Domain 15 1. Command & Response • Command AMR to move waypoints Name Type Description id string Unique ID of the robot type string Entity name time string Send date(YYYY-MM- DDThh:mm:ss.sssZ) cmd string Command: ["navi", "standby“, “refresh”] waypoints array Positions of waypoints point object Coordinates of each waypoint x number x-coordinate y number y-coordinate z number z-coordinate angle_optional object Angles of each waypoints valid boolean Validate assignment of angle angle object Angles of each waypoint roll number Roll pitch number Pitch yaw number Yaw • The return message from AMR Name Type Description id string Unique ID of the robot type string Entity name time string Send date (YYYY-MM-DDThh:mm:ss.sssZ) received_time string Received date (YYYY-MM-DDThh:mm:ss.sssZ) received_cmd string Received command: ["navi", "standby“, “refresh”] received_waypoints array Received positions of waypoints point object Coordinates of each waypoint x number x-coordinate y number y-coordinate z number z-coordinate angle_optional object Angles of each waypoints valid boolean Validate assignment of angle angle object Angles of each waypoint roll number Roll pitch number Pitch yaw number Yaw result string Result for the command: ["ack", "ignore", "error"] errors array Lists of errors
  • 16. Copyright © 2019 TIS Inc. All rights reserved. Standard data models in Robotics Domain 16 2. Emergency command & Response • Emergency command AMR to stop Name Type Description id string Unique ID of the robot type string Entity name time string Send date(YYYY-MM-DDThh:mm:ss.sssZ) emergency_cmd string Emergency command: [“stop"] Name Type Description id string Unique ID of the robot type string Entity name time string Send date(YYYY-MM-DDThh:mm:ss.sssZ) received_time string Received date(YYYY-MM-DDThh:mm:ss.sssZ) received_emergency_cmd string received emergency command: ["stop"] result string Result for the emergency command["ack", "error"] errors array Lists of errors • The return message from AMR
  • 17. Copyright © 2019 TIS Inc. All rights reserved. Standard data models in Robotics Domain 17 3. Periodic state message • State message from AMR Name Type Description id string Unique ID of the robot type string Entity name time string Send date(YYYY-MM- DDThh:mm:ss.sssZ) mode string Status of the robot: ["navi", "standby", "error"] errors array Lists of errors pose object Current position point object Current coordinates x number x-coordinate y number y-coordinate z number z-coordinate angle object Current angles roll number Roll pitch number Pitch yaw number Yaw destination object Current destination point object Coordinates of current destination x number x-coordinate y number y-coordinate z number z-coordinate angle_optio nal object Angles of current destination valid boolean Validate assignment of angle angle object Angles roll number Roll pit ch number Pitch ya w number Yaw covariance array Error covariance matrix minItems:36, maxItems:36 battery object Battery state voltage number Voltage current_opti onal object Current s valid boolean Validate assignment of current current number Current
  • 18. Copyright © 2019 TIS Inc. All rights reserved. Next steps for data model definition
  • 19. Copyright © 2019 TIS Inc. All rights reserved. Next steps for data model definition 19 2019 2020 Oct. Nov. Dec. Jan. Feb. Mar. Apr. May Events TIS Inc. Members of Robotics FIWARE Tech Roadmap WG ▲ FIWARE Global Summit ▲ FIWARE Global Summit ▲ PoC(UoA) ▲ Web Conf. development of Data models ▲ Web Conf. ▲ Web Conf. ▲ Web Conf. FeedbackVerification of DMsReport the progress ▲ Draft2 ▲ Release Report Robotics FIWARE Tech Roadmap WG • Members FIWARE Foundation Atos eProsima Fraunhofer IML TIS ▲ Web Conf. • Goals Position paper on Robotics and FIWARE Identify areas of potential collaboration Identify areas of potential standardization (e.g., data models)
  • 20. Copyright © 2019 TIS Inc. All rights reserved. Summary RoboticBase is a platform among Robots, People and Environment TIS have been developed a platform to collaborate robot with people. TIS verified collaboration of heterogeneous robots during experiment in 2018. Consideration for data structure is required for collaboration with FIWARE and Robots TIS are concerned that robots have difficulty collaborating other robots via FIWARE because standard data models for robots do not exist Standard data models in Robotics Domain TIS is defining the models for robots focused on Autonomous mobile robots based on use case of experiment in 2019. We will contribute our models to FIWARE data models until March. 20
  • 21. RoboticBase is open sourced https://github.com/RoboticBase/core