SlideShare a Scribd company logo
1 of 100
Download to read offline
“XML-athon”
With Dean Hintz and Don Murray
Don Murray
Co-Founder
Dean Hintz
Senior FME Data Expert
Product Owner XML Technology
Presenters
Trent Kading
XML and FME
Expert on Q&A
Agenda
● Who we are and what do we do?
● XML & The FME Platform
● XML Highlights and Strategies
A dozen demos that just touch on what FME can do.
● CityGML, Simple Reading/Writing, Validation
● Using XSD documents to enhance XML Experience
● Metadata, OSM, Catalogs and Web API’s
● Complex XML & GML, Converting XML to JSON.
● Resources and Q&A
OUR MISSION
To help organizations
maximize the value of data.
FME Desktop FME Server FME Cloud
Build & Run Workflows Automate Workflows Hosted FME Server
FME® Integration Platform
Connect. Transform. Automate.
FME is the data integration solution with the best support for spatial data worldwide.
An extension for ArcGIS Pro and ArcMap developed by Safe Software.
FME Desktop functionality. Data Interop in 2.6 is exciting!!
Let’s Get Started and Have fun!!!
FME Supported Data Types - Slicing XML for ~ 20 years!
CAD
GIS
FME release by year
NumberofsupportedformatsinFME
1995
10500100300
20202015201020052000
TABULAR
DATABASE
RASTER
POINT
CLOUD
BIM
3D
WEB
XML/
JSON
CLOUD
BIG
DATA
IOT
BI
AR / VR
AI / ML
INDOOR
MAPPING
GAMING
XML Representations
FME support for XML is
Wide and Deep!
Let us know in the
chat what type of
XML data you are
working with.
XML Formats supported in FME
All are XML! FME wraps formats to help you.
XMLGMLCityGML
Adds Value
GeometryTextures
Adds Value
USE MOST
SPECIFIC
FORMAT
FME supports many XML variants
and there are many ways to work
with a specific file..
The best way is almost always
using the specific format.
Reader
Reader
Reader
Demo:
General -> Specific Format Support
(CityGML)
1.
Most General Reader : XML Reader
Read CityGML by XML
reader
Feature Path:
Building
No geometry - must
process in workspace
-> GreenBuildingXML
example
● Read CityGML with
GML Reader (no
schema mode)
● Reads features,
geometries
● Ignores textures
since these are not
part of GML standard
● Auto reader selection
More Specific Reader: GML Reader
Read CityGML with
CityGML Reader
Note textures and
citygml properties
read (LOD)
Richest support
when most
specific R/W
chosen
Most Specific Reader: CityGML Reader
{"employees":[
{ "firstName":"John", "lastName":"Doe" },
{ "firstName":"Anna", "lastName":"Smith" },
{ "firstName":"Peter", "lastName":"Jones" }
]}
JSON Formats
Note: IMDF, CityJSON, TopoJSON - some of the newer formats added recently
XML Format Highlights
XML GML
KML OGCWFS
XSD based XML 3D: CityGML, Indoor GML
GMLJP2000 INSPIRE GML
Geodatabase - xml metadata AIXM
Geo RSS UK OS Mastermap
AEC/CAD/BIM: 12dXML, IFCXML GML in JP2000
FME’s XML Power
● XSD based XML Reading and Writing
● Standard XML Reader / Writer
● List Processing
● GML Reader / Writer
● WFS Reader - complex GML support
● Writer validation / XMLValidator
● XSLT, XFMaps
● XML Transformers
Most of these will be highlighted within the examples below
XML
Does Zipster Run on XML
or Love XML?
Zipster runs on machine code called:
Xtraordinary Machine Language
XML
Zipster Loves XML!
But....
Useful XML transformers
XML Transformers - Favorites
XMLFragmenter / XMLFlattener
XMLValidator
XMLFormatter
XMLUpdater
ListExploder
Honorable mention:
● XMLXQueryExploder
Historical mention:
● XMLTemplater
XML Concepts
Tag <Course>
XML Element <Course>FME</Course>
Child element <Course><Id>101</Id>…
Element attribute <Course id=“101”>
GML Object
Object property
Object attribute
XML Schema - xsd's
Namespaces
<ps-f:geometry>
XML Data Structures: Object vs Relational
attribute1 attribute2 Active
Date_From
Active
Date_To
Coordinates
John Vancouver 11-22-99 12-11-09 -123.1,49.25
-122.9,49.15
June Surrey 02-25-05 9-15-10 -122.8,49.12
-122.5,49.0
XML Strategies
XML comes in many flavours so important to have a well
thought out approach to leverage the tools you have
and quickly get the data in the form you need
● Understand the type, logical structure and
meaning of your source data
● Understand your target data model and what
transforms are likely to be needed
● Choose the tools best suited
(Readers/Writers/Transformers) to do the work
XML Strategies: Reading
Use most specific format (Text or XML or GML or profile?)
● How to identify format type? (GML, XML, HTML, profile)
● Format clues? See namespace prefixes and header,
geometry types, xsd
● Use application schema if there is one (ask or search)
If XML not specific supported then use our generic XML tools:
● Don’t forget to inspect data first: Data Inspector, Notepad++
● Feature Paths
● XMLFragmenter / XMLFlattener
● List processing
● GeometryReplacer
XML Strategies: Writing
● Use most specific writer format (Text or XML or GML or profile?)
● Use XSD if it is available
● If XML not specifically supported then use our generic XML tools:
○ XMLTemplater
○ GeometryExtractor
○ List processing: ListRenamer (now supports manipulation of entire lists)
○ AttributeCreator, Aggregator to build lists
○ XMLFormatter and XMLValidator
○ Other writer parameters: namespace override
○ Destination schema: understand differences between xml data types
■ xml_buffer, xml_geometry, xml_xml
■ node level writing - new in 2019.2+
Demo:
Reading Simple XML
2.
Arbitrary XML/No schema: UNESCO World Heritage Sites
● Inspect first to determine type of xml
● Read with Feature Path: /query/row
https://whc.unesco.org/en/list/xml/
● Nested XML sliced
into flattened
features at selected
node
● Parent.child
notation within
features for nested
attributes
UNESCO World Heritage Sites: Read with Feature Path
1. Add XML reader:
a. Dataset:
https://whc.unesco.org/en/list/xml/
b. Elements to match query/row
2. VertexCreator: longitude,
latitude
3. CoordSystemSetter:LL84
4. KMLPropertySetter
a. Name: site
b. Title: Heritage Sites
c. Content: short_description
5. Drop xml format fields
6. Fanout: category
UNESCO World Heritage Sites: XML to KML Workspace
Set kml_name,
description,
folder
Geometry and
attribute
schema
Illustrates how
FME supports
easy extraction
from XML to
client friendly
formats like KML
UNESCO World Heritage Sites: KML Result
Q&A
Demo:
Writing Simple XML
(using XML Writer, XMLTemplater)
3.
Writing Flat XML
Database export with generic XML writer
Automatic schema definition based on
source or feature schema
Database export with generic XML writer
Default values for
most parameters
Make sure output
data and schema
not suppressed
Writing Flat XML: Workspace
FME generates namespaces as needed
Preview output in XML Editor
Writing Flat XML: Result
Writing Simple Flat XML: Result
Before FME 2020, could
validate using XSD but
had to read XML data with
feature paths and ignore
schema
Now output can be
checked with Data
Inspector using XSD
Write XML with XMLTemplater - Metadata
Insert attribute values using
fme:get-attribute{} functions
Write out XML document using Text File writer
Write XML with XMLTemplater - Metadata
Insert attribute values using
fme:get-attribute{} functions
Write out XML document using Text File writer
Demo:
Validation
4.
XML Validator
XML Validator
Possible Values:
● None
● Syntax
● Syntax and Namespace
● Syntax and Schema
New in 2020:
● Multiple XSD support
Also useful to check if data you
receive is valid
Test to see if data you produce is
valid!
Demo:
XSD Driven Reading
(BeerXML)
5.
XSD Driven XML Reading - BeerXML
Read XML feature types based
on application schema and
feature paths (different path).
Feature type attribute and
geometry definitions based
on XSD not data.
Similar to GML application
schema based reading
Prefix with namespace to
differentiate types
XSD Driven XML Reading - BeerXML
1. Set source XML dataset and
application schema paths
2. Set feature paths
(base:beer_xml)
3. Set XSD Types to be
features (all except units)
4. Max attributes per nested
attribute - becomes xml
fragment after that
XSD Driven XML Reading - BeerXML
Reading recipe additions (schemas from beerxml.com )
Demo:
XSD Driven Writing
(Emergency Alerts)
6.
● Cap 1.2 XML
● Write XML using Feature type
definitions based on XSD,
path.
● Set attribute values as you
would any typical FME format -
no templaters required.
● Similar to GML application
schema based writing
● Validation option
XSD Driven XML Writing: Common Alerting Protocol
XSD Driven XML Writing: Common Alerting Protocol
http://docs.oasis-open.org/emergency/cap/v1.2/CAP-v1.2.html
XSD Driven XML Writing: CAP - Validation Pt 2
Missing attribute msgType:
ERROR |XML Validation: Error in ‘6.EmergencyAlerts_CAP1.2 XMLcapOut.xml' on line 27, column
13: 'element 'source' is not allowed for content model
'(identifier,sender,sent,status,msgType,source?,scope,restriction?,addresses?,code*,note?,referen
ces?,incidents?,info*)
Missing attribute ‘severity’:
ERROR |XML Validation: Error in ‘6.EmergencyAlerts_CAP1.2 XMLcapOut.xml' on line 26, column
13: 'element 'certainty' is not allowed for content model
'(language?,category+,event,responseType*,urgency,severity,certainty,audience?,eventCode*,effe
ctive?,onset?,expires?,senderName?,headline?,description?,instruction?,web?,contact?,parameter
*,resource*,area*)
Messages from open source Apache Xerces parsing library
XSD Driven XML Writing: Common Alerting Protocol
OGC Open API: Features - WFS3 New, Updated Tutorials:
GML, XML, JSON
CityGML v3 GeoSciML*
S121 GML* CIM XML
ARML FXXM/WXXM*
List Processing Others?
What is Next for XML?
*Stay tuned!
Q&A
Choose your XML
Adventure
Vote on:
● Arbitrary XML
● Catalogues
● Metadata
Demo:
Metadata
7.
XSD Based XML R/W: ISO 19115 Metadata
XSD based reader /
writer new in FME 2020
Updates contact{0}
XSD Based XML R/W: ISO 19115 Metadata
Reader settings: Feature Path Writer settings: Feature Path
XSD Based XML: ISO 19115 Metadata: XMLTemplater
XSD Based XML R/W: ISO 19115
Metadata Result
source updated
Demo:
OSM 3D Buildings
8.
OSM XML: Generating 3D Buildings Workflow
OSM comprehensive
global coverage for
base map data
Full access to rich
property sets
OSM XML: 3D Buildings Visualization
FME can read all
available OSM
outputs: XML, PBF,
Geopackage and
GeoJSON.
Each format has its
own properties
Data from:
https://extract.bbbike.org/
Demo:
Catalogs / Web API
9.
OGC CSW Client Workspace
Series of HTTPCallers send requests to CSW service for Entries, Details and then WFS features based on user selection
CSW Client: Entries
CSW Client - Details: URI
CSW Details URI: WFS Feature Retrieval S-121 GML
Q&A
XML Resources
Tutorials & Articles
XML Tutorial
https://knowledge.safe.com/articles/29553/tutorial-getting-started-wit
h-xml.html
GML Tutorial - INSPIRE
https://knowledge.safe.com/articles/1321/eu-inspire-initiative-tutorial.
html
JSON Tutorial
https://knowledge.safe.com/articles/39188/tutorial-getting-started-wit
h-json.html
Reading XML/GML
https://knowledge.safe.com/articles/888/reading-xmlgml.html
GML - Writing
https://knowledge.safe.com/articles/812/gml-writing-with-application-
schemas.html
Title
Join us tomorrow!
Keeping Cool, Calm, and Connected with FME 2020.1
Choose your XML
Adventure
Vote on:
● XML Web APIs
● OSM
● XML to JSON
Demo:
Complex XML
10.
Power of XML Reader: GreenBuilding XML
Custom reader
available on FME Hub
XML reader assembles
object attributes and
geometries to construct
BIM components
gbXMLStandard Single
Family Residential
2016.xml
Power of XML Reader: GreenBuilding XML
ChapelHillOffice.xml
Power of XML Reader: GreenBuilding XML
Custom format
just looks like any
other format
when reading
from Data
Inspector or a
workspace
Data from
gbxml.org
Power of XML Reader: GreenBuilding XML
1.Explode to points elements 2.Generate point geometry 3. Build line, area and surfaces
Is there an easier way for Green Building XML?
hub.safe.com
XSLT Example: S-121 GML to HTML
● Option to specify XSLT path on
GML or XML writer
● Example from the OGC
Maritime Boundaries Pilot
● XSLT takes output S-121 GML
and transforms it into HTML
regulatory text representation
● Net result is a fully automated
DFO/CHS geodatabase to HTML
via GML to support their
regulation submission
workflow
Demo:
Complex GML
11.
Power of Generic GML R/W: Complex GML
These next 3 examples show the power of FME to support reading and writing complex GML,
such as that used for scientific applications and complex regulatory models.
GeoSciML: Just drag and drop demo dataset into DI - GML reader automatically gets the xsd
from the ns header - make sure you set axis order to 1,2. This is Australian data - geoscience
australia.
WXXM: need to specify the application schema in the folder provided: wxxm.xsd
S-121 GML: No need to specify app schema. This is because the xsi:schemaLocation points
to the local application schema which in this case is s121.xsd. This needs to be in the same
folder as the dataset.
Power of Generic GML R/W: GeoSciML
Open standard
for geologic
data. Submitted
as an OGC
standard.
Aligned with
INSPIRE
Weather
Information
Exchange Model
Interoperable
meteorological
information
exchange covering
the needs of the
aviation industry
eurocontrol.int
faa.gov
Power of Generic GML: WXXM
S-121 GML from OGC
Maritime Boundaries
Pilot
Collaboration between
IHO and OGC
S-121 generated from
DFO/CHS geodatabase
using FME
ogc.org
charts.gc.ca
Power of Generic GML: S-121
Demo:
XML to JSON
12.
XML/GML to JSON conversion / differences
GML schema driven directly from XSD.
Complex structures / nesting modelled
within the feature type definitions and
using parent / child ids.
Currently JSON writer requires the use
of JSONTemplater for complex
properties / nesting, such as for lists or
multi-part elements such as date
ranges.
JSON / GeoJSON Enhancements
New formats: CityJSON, TopoJSON, IMDF
update
Writing: New Feature Collection mode in
FME2020.1+. Choose how to assemble feature
types:
● Single feature collection
● Array of feature collection objects
● Object with feature type names as keys
Performance improvements
To come: nested schema writing. In meantime
use JSONTemplater to write to root objects
Preview GeoJSON on GitHub, geojson.io
Geojson is automatically rendered as an interactive map on GitHub
Use geojson.io to test your geojson with an external client
Let us know in the
chat…
[question]
Q&A
Other Topics to Explore
● Metadata -> AI/ML - metadata tags for training
● XML manipulation: XML Extraction & Updating:
XMLUpdater, XQueryExtractor
● XFMaps and XSLT - XML reader scripting,
dynamic schema, style sheets
● OGC Support
○ Web Services: OGC Service hosting
● Geometry extraction/ composition
● JSON parsing
● Other formats: Indoor, BIM (IFCXML), AEC:
12DXML, CIM XML
What do you want to hear /
learn more about?
Go to Knowledge Base for more
info on most of these topics
Summary - Key Takeaways
● XSD XML - Powerful new reader / writer: e.g. metadata 19115
● GML - XSD mode - very flexible and continues to evolve
● FME as your no-code XML solution: many XML tools
embedded in FME (Validation, Formatting, SampleGenerator,
XSLT, XML Update)
● FME constantly evolving: OpenAPI/WFS 3 etc - keep
upgrading to get latest functionality and performance
● JSON patterns very similar to XML ones
● FME’s XML and JSON support critical for web integration and
open standards support: W3C, OGC, EU INSPIRE, ISO, ITRF
Reach out to
us for Help
Q&A
And suggestion sharing!
Please share your XML ideas
in the chat panel.
XML Resources
Tutorials & Articles
XML Tutorial
https://knowledge.safe.com/articles/29553/tutorial-getting-started-wit
h-xml.html
GML Tutorial - INSPIRE
https://knowledge.safe.com/articles/1321/eu-inspire-initiative-tutorial.
html
JSON Tutorial
https://knowledge.safe.com/articles/39188/tutorial-getting-started-wit
h-json.html
Reading XML/GML
https://knowledge.safe.com/articles/888/reading-xmlgml.html
GML - Writing
https://knowledge.safe.com/articles/812/gml-writing-with-application-
schemas.html
Keep the XML conversation going!
We want to know what else you want to see
in FME to make XML easier.
Please reach out on safe.com/live-chat or
post on safe.com/community
Demo Links
And supporting articles
CityGML
https://knowledge.safe.com/articles/904/writing-citygml-example.html
XMLUpdater
https://knowledge.safe.com/articles/868/using-the-xmlupdater-transfo
rmer-to-manipulate-met.html
OGC Maritime Boundaries S-121 GML Pilot
https://knowledge.safe.com/articles/112578/ogc-maritime-limits-and-b
oundaries-s-121-gml-pilot.html
Writing to nested properties in AIXM:
https://knowledge.safe.com/questions/2949/aixm-annotations.html
https://knowledge.safe.com/questions/47251/how-to-transform-aixm-
45-to-aixm-51-xml-geometry-g.html
WFS Troubleshooting:
https://knowledge.safe.com/articles/19452/troubleshooting-wfs-errors.
html
Keep the XML conversation going!
We want to know what else you want to see
in FME to make XML easier.
Please reach out on safe.com/live-chat or
post on safe.com/community
Title
Join us tomorrow!
Keeping Cool, Calm, and Connected with FME 2020.1
Thank you!
Get a free trial of FME or live chat at safe.com

More Related Content

What's hot

Building a Graph of all US Businesses Using Spark Technologies by Alexis Roos
Building a Graph of all US Businesses Using Spark Technologies by Alexis RoosBuilding a Graph of all US Businesses Using Spark Technologies by Alexis Roos
Building a Graph of all US Businesses Using Spark Technologies by Alexis RoosSpark Summit
 
Efficiently Building Machine Learning Models for Predictive Maintenance in th...
Efficiently Building Machine Learning Models for Predictive Maintenance in th...Efficiently Building Machine Learning Models for Predictive Maintenance in th...
Efficiently Building Machine Learning Models for Predictive Maintenance in th...Databricks
 
From HDFS to S3: Migrate Pinterest Apache Spark Clusters
From HDFS to S3: Migrate Pinterest Apache Spark ClustersFrom HDFS to S3: Migrate Pinterest Apache Spark Clusters
From HDFS to S3: Migrate Pinterest Apache Spark ClustersDatabricks
 
Practical Distributed Machine Learning Pipelines on Hadoop
Practical Distributed Machine Learning Pipelines on HadoopPractical Distributed Machine Learning Pipelines on Hadoop
Practical Distributed Machine Learning Pipelines on HadoopDataWorks Summit
 
Deploying End-to-End Deep Learning Pipelines with ONNX
Deploying End-to-End Deep Learning Pipelines with ONNXDeploying End-to-End Deep Learning Pipelines with ONNX
Deploying End-to-End Deep Learning Pipelines with ONNXDatabricks
 
Using FME to support open data initiatives and INSPIRE
Using FME to support open data initiatives and INSPIREUsing FME to support open data initiatives and INSPIRE
Using FME to support open data initiatives and INSPIREIMGS
 
On Improving Broadcast Joins in Apache Spark SQL
On Improving Broadcast Joins in Apache Spark SQLOn Improving Broadcast Joins in Apache Spark SQL
On Improving Broadcast Joins in Apache Spark SQLDatabricks
 
Data Science Salon: A Journey of Deploying a Data Science Engine to Production
Data Science Salon: A Journey of Deploying a Data Science Engine to ProductionData Science Salon: A Journey of Deploying a Data Science Engine to Production
Data Science Salon: A Journey of Deploying a Data Science Engine to ProductionFormulatedby
 
AutoML Toolkit – Deep Dive
AutoML Toolkit – Deep DiveAutoML Toolkit – Deep Dive
AutoML Toolkit – Deep DiveDatabricks
 
Generating Pipeline Alignment Sheets Using FME
Generating Pipeline Alignment Sheets Using FMEGenerating Pipeline Alignment Sheets Using FME
Generating Pipeline Alignment Sheets Using FMESafe Software
 
GraphLab Conference 2014 Keynote - Carlos Guestrin
GraphLab Conference 2014 Keynote - Carlos GuestrinGraphLab Conference 2014 Keynote - Carlos Guestrin
GraphLab Conference 2014 Keynote - Carlos GuestrinTuri, Inc.
 
Conference 2014: Rajat Arya - Deployment with GraphLab Create
Conference 2014: Rajat Arya - Deployment with GraphLab Create Conference 2014: Rajat Arya - Deployment with GraphLab Create
Conference 2014: Rajat Arya - Deployment with GraphLab Create Turi, Inc.
 
Ray: Enterprise-Grade, Distributed Python
Ray: Enterprise-Grade, Distributed PythonRay: Enterprise-Grade, Distributed Python
Ray: Enterprise-Grade, Distributed PythonDatabricks
 
Oracle BI Publsiher Using Data Template
Oracle BI Publsiher Using Data TemplateOracle BI Publsiher Using Data Template
Oracle BI Publsiher Using Data TemplateEdi Yanto
 
Scaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark PipelinesScaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark PipelinesDatabricks
 
Spark SQL Beyond Official Documentation
Spark SQL Beyond Official DocumentationSpark SQL Beyond Official Documentation
Spark SQL Beyond Official DocumentationDatabricks
 

What's hot (20)

Xml Publisher
Xml PublisherXml Publisher
Xml Publisher
 
Building a Graph of all US Businesses Using Spark Technologies by Alexis Roos
Building a Graph of all US Businesses Using Spark Technologies by Alexis RoosBuilding a Graph of all US Businesses Using Spark Technologies by Alexis Roos
Building a Graph of all US Businesses Using Spark Technologies by Alexis Roos
 
Efficiently Building Machine Learning Models for Predictive Maintenance in th...
Efficiently Building Machine Learning Models for Predictive Maintenance in th...Efficiently Building Machine Learning Models for Predictive Maintenance in th...
Efficiently Building Machine Learning Models for Predictive Maintenance in th...
 
From HDFS to S3: Migrate Pinterest Apache Spark Clusters
From HDFS to S3: Migrate Pinterest Apache Spark ClustersFrom HDFS to S3: Migrate Pinterest Apache Spark Clusters
From HDFS to S3: Migrate Pinterest Apache Spark Clusters
 
Adam
AdamAdam
Adam
 
Practical Distributed Machine Learning Pipelines on Hadoop
Practical Distributed Machine Learning Pipelines on HadoopPractical Distributed Machine Learning Pipelines on Hadoop
Practical Distributed Machine Learning Pipelines on Hadoop
 
Deploying End-to-End Deep Learning Pipelines with ONNX
Deploying End-to-End Deep Learning Pipelines with ONNXDeploying End-to-End Deep Learning Pipelines with ONNX
Deploying End-to-End Deep Learning Pipelines with ONNX
 
Using FME to support open data initiatives and INSPIRE
Using FME to support open data initiatives and INSPIREUsing FME to support open data initiatives and INSPIRE
Using FME to support open data initiatives and INSPIRE
 
On Improving Broadcast Joins in Apache Spark SQL
On Improving Broadcast Joins in Apache Spark SQLOn Improving Broadcast Joins in Apache Spark SQL
On Improving Broadcast Joins in Apache Spark SQL
 
Data Science Salon: A Journey of Deploying a Data Science Engine to Production
Data Science Salon: A Journey of Deploying a Data Science Engine to ProductionData Science Salon: A Journey of Deploying a Data Science Engine to Production
Data Science Salon: A Journey of Deploying a Data Science Engine to Production
 
AutoML Toolkit – Deep Dive
AutoML Toolkit – Deep DiveAutoML Toolkit – Deep Dive
AutoML Toolkit – Deep Dive
 
MLeap: Release Spark ML Pipelines
MLeap: Release Spark ML PipelinesMLeap: Release Spark ML Pipelines
MLeap: Release Spark ML Pipelines
 
Generating Pipeline Alignment Sheets Using FME
Generating Pipeline Alignment Sheets Using FMEGenerating Pipeline Alignment Sheets Using FME
Generating Pipeline Alignment Sheets Using FME
 
GraphLab Conference 2014 Keynote - Carlos Guestrin
GraphLab Conference 2014 Keynote - Carlos GuestrinGraphLab Conference 2014 Keynote - Carlos Guestrin
GraphLab Conference 2014 Keynote - Carlos Guestrin
 
Conference 2014: Rajat Arya - Deployment with GraphLab Create
Conference 2014: Rajat Arya - Deployment with GraphLab Create Conference 2014: Rajat Arya - Deployment with GraphLab Create
Conference 2014: Rajat Arya - Deployment with GraphLab Create
 
Ray: Enterprise-Grade, Distributed Python
Ray: Enterprise-Grade, Distributed PythonRay: Enterprise-Grade, Distributed Python
Ray: Enterprise-Grade, Distributed Python
 
Introduction to RDF*
Introduction to RDF*Introduction to RDF*
Introduction to RDF*
 
Oracle BI Publsiher Using Data Template
Oracle BI Publsiher Using Data TemplateOracle BI Publsiher Using Data Template
Oracle BI Publsiher Using Data Template
 
Scaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark PipelinesScaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark Pipelines
 
Spark SQL Beyond Official Documentation
Spark SQL Beyond Official DocumentationSpark SQL Beyond Official Documentation
Spark SQL Beyond Official Documentation
 

Similar to XML-athon with Don and Dean

Mazda Use of Third Generation Xml Tools
Mazda Use of Third Generation Xml ToolsMazda Use of Third Generation Xml Tools
Mazda Use of Third Generation Xml ToolsCardinaleWay Mazda
 
Document Object Model
Document Object ModelDocument Object Model
Document Object Modelchomas kandar
 
Document Object Model
Document Object ModelDocument Object Model
Document Object Modelchomas kandar
 
FME and Complex GML: INSPIRE and AIXM
FME and Complex GML: INSPIRE and AIXMFME and Complex GML: INSPIRE and AIXM
FME and Complex GML: INSPIRE and AIXMSafe Software
 
Overcoming the Complexities of AIXM with Model Based Data Integration
Overcoming the Complexities of AIXM with Model Based Data IntegrationOvercoming the Complexities of AIXM with Model Based Data Integration
Overcoming the Complexities of AIXM with Model Based Data IntegrationSafe Software
 
Overcoming the Complexities of AIXM with Model Based Data Integration
Overcoming the Complexities of AIXM with Model Based Data IntegrationOvercoming the Complexities of AIXM with Model Based Data Integration
Overcoming the Complexities of AIXM with Model Based Data IntegrationSafe Software
 
Inroduction to XSLT with PHP4
Inroduction to XSLT with PHP4Inroduction to XSLT with PHP4
Inroduction to XSLT with PHP4Stephan Schmidt
 
FME and Complex GML
FME and Complex GMLFME and Complex GML
FME and Complex GMLIMGS
 
AD215 - Practical Magic with DXL
AD215 - Practical Magic with DXLAD215 - Practical Magic with DXL
AD215 - Practical Magic with DXLStephan H. Wissel
 
Xml in bio medical field
Xml in bio medical fieldXml in bio medical field
Xml in bio medical fieldJuman Ghazi
 
buildingxmlbasedapplications-180322042009.pptx
buildingxmlbasedapplications-180322042009.pptxbuildingxmlbasedapplications-180322042009.pptx
buildingxmlbasedapplications-180322042009.pptxNKannanCSE
 
Xml and xml processor
Xml and xml processorXml and xml processor
Xml and xml processorHimanshu Soni
 

Similar to XML-athon with Don and Dean (20)

Standards / XML / Validation / Transformation / ESRI
Standards / XML / Validation / Transformation / ESRIStandards / XML / Validation / Transformation / ESRI
Standards / XML / Validation / Transformation / ESRI
 
Mazda Use of Third Generation Xml Tools
Mazda Use of Third Generation Xml ToolsMazda Use of Third Generation Xml Tools
Mazda Use of Third Generation Xml Tools
 
Document Object Model
Document Object ModelDocument Object Model
Document Object Model
 
Document Object Model
Document Object ModelDocument Object Model
Document Object Model
 
Xml
XmlXml
Xml
 
FME and Complex GML: INSPIRE and AIXM
FME and Complex GML: INSPIRE and AIXMFME and Complex GML: INSPIRE and AIXM
FME and Complex GML: INSPIRE and AIXM
 
Overcoming the Complexities of AIXM with Model Based Data Integration
Overcoming the Complexities of AIXM with Model Based Data IntegrationOvercoming the Complexities of AIXM with Model Based Data Integration
Overcoming the Complexities of AIXM with Model Based Data Integration
 
Overcoming the Complexities of AIXM with Model Based Data Integration
Overcoming the Complexities of AIXM with Model Based Data IntegrationOvercoming the Complexities of AIXM with Model Based Data Integration
Overcoming the Complexities of AIXM with Model Based Data Integration
 
93 peter butterfield
93 peter butterfield93 peter butterfield
93 peter butterfield
 
test
testtest
test
 
6 311 W
6 311 W6 311 W
6 311 W
 
6 311 W
6 311 W6 311 W
6 311 W
 
Inroduction to XSLT with PHP4
Inroduction to XSLT with PHP4Inroduction to XSLT with PHP4
Inroduction to XSLT with PHP4
 
FME and Complex GML
FME and Complex GMLFME and Complex GML
FME and Complex GML
 
XML
XMLXML
XML
 
AD215 - Practical Magic with DXL
AD215 - Practical Magic with DXLAD215 - Practical Magic with DXL
AD215 - Practical Magic with DXL
 
Xml in bio medical field
Xml in bio medical fieldXml in bio medical field
Xml in bio medical field
 
buildingxmlbasedapplications-180322042009.pptx
buildingxmlbasedapplications-180322042009.pptxbuildingxmlbasedapplications-180322042009.pptx
buildingxmlbasedapplications-180322042009.pptx
 
Processing XML with Java
Processing XML with JavaProcessing XML with Java
Processing XML with Java
 
Xml and xml processor
Xml and xml processorXml and xml processor
Xml and xml processor
 

More from Safe Software

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsSafe Software
 
The Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemThe Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemSafe Software
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataSafe Software
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsSafe Software
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightSafe Software
 
Mastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GISMastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GISSafe Software
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & EsriGeospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & EsriSafe Software
 
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfIntroducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfSafe Software
 
Breaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI TechnologyBreaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI TechnologySafe Software
 
Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...Safe Software
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataSafe Software
 
New Year's Fireside Chat with Safe Software’s Founders
New Year's Fireside Chat with Safe Software’s FoundersNew Year's Fireside Chat with Safe Software’s Founders
New Year's Fireside Chat with Safe Software’s FoundersSafe Software
 
Taking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New HeightsTaking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New HeightsSafe Software
 
Initiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategySafe Software
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Safe Software
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...Safe Software
 
Mastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FMEMastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FMESafe Software
 
Identification of landscape features eligible for EU subsidy - Analysis of la...
Identification of landscape features eligible for EU subsidy - Analysis of la...Identification of landscape features eligible for EU subsidy - Analysis of la...
Identification of landscape features eligible for EU subsidy - Analysis of la...Safe Software
 
Utilizing FME as an API Test Framework
Utilizing FME as an API Test Framework Utilizing FME as an API Test Framework
Utilizing FME as an API Test Framework Safe Software
 

More from Safe Software (20)

Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Powering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data StreamsPowering Real-Time Decisions with Continuous Data Streams
Powering Real-Time Decisions with Continuous Data Streams
 
The Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data EcosystemThe Critical Role of Spatial Data in Today's Data Ecosystem
The Critical Role of Spatial Data in Today's Data Ecosystem
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Mastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GISMastering MicroStation DGN: How to Integrate CAD and GIS
Mastering MicroStation DGN: How to Integrate CAD and GIS
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & EsriGeospatial Synergy: Amplifying Efficiency with FME & Esri
Geospatial Synergy: Amplifying Efficiency with FME & Esri
 
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdfIntroducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
Introducing the New FME Community Webinar - Feb 21, 2024 (2).pdf
 
Breaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI TechnologyBreaking Barriers & Leveraging the Latest Developments in AI Technology
Breaking Barriers & Leveraging the Latest Developments in AI Technology
 
Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...Best Practices to Navigating Data and Application Integration for the Enterpr...
Best Practices to Navigating Data and Application Integration for the Enterpr...
 
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial DataCloud Revolution: Exploring the New Wave of Serverless Spatial Data
Cloud Revolution: Exploring the New Wave of Serverless Spatial Data
 
New Year's Fireside Chat with Safe Software’s Founders
New Year's Fireside Chat with Safe Software’s FoundersNew Year's Fireside Chat with Safe Software’s Founders
New Year's Fireside Chat with Safe Software’s Founders
 
Taking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New HeightsTaking Off with FME: Elevating Airport Operations to New Heights
Taking Off with FME: Elevating Airport Operations to New Heights
 
Initiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
 
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
Geospatial Synergy: Amplifying Efficiency with FME & Esri ft. Peak Guest Spea...
 
Mastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FMEMastering DevOps-Driven Data Integration with FME
Mastering DevOps-Driven Data Integration with FME
 
Identification of landscape features eligible for EU subsidy - Analysis of la...
Identification of landscape features eligible for EU subsidy - Analysis of la...Identification of landscape features eligible for EU subsidy - Analysis of la...
Identification of landscape features eligible for EU subsidy - Analysis of la...
 
Utilizing FME as an API Test Framework
Utilizing FME as an API Test Framework Utilizing FME as an API Test Framework
Utilizing FME as an API Test Framework
 

Recently uploaded

Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 
What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....kzayra69
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)jennyeacort
 
Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Hr365.us smith
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Matt Ray
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noidabntitsolutionsrishis
 

Recently uploaded (20)

Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 
What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
 
Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in NoidaBuds n Tech IT Solutions: Top-Notch Web Services in Noida
Buds n Tech IT Solutions: Top-Notch Web Services in Noida
 

XML-athon with Don and Dean

  • 2. Don Murray Co-Founder Dean Hintz Senior FME Data Expert Product Owner XML Technology Presenters Trent Kading XML and FME Expert on Q&A
  • 3. Agenda ● Who we are and what do we do? ● XML & The FME Platform ● XML Highlights and Strategies A dozen demos that just touch on what FME can do. ● CityGML, Simple Reading/Writing, Validation ● Using XSD documents to enhance XML Experience ● Metadata, OSM, Catalogs and Web API’s ● Complex XML & GML, Converting XML to JSON. ● Resources and Q&A
  • 4. OUR MISSION To help organizations maximize the value of data.
  • 5. FME Desktop FME Server FME Cloud Build & Run Workflows Automate Workflows Hosted FME Server FME® Integration Platform Connect. Transform. Automate. FME is the data integration solution with the best support for spatial data worldwide.
  • 6. An extension for ArcGIS Pro and ArcMap developed by Safe Software. FME Desktop functionality. Data Interop in 2.6 is exciting!!
  • 7. Let’s Get Started and Have fun!!!
  • 8. FME Supported Data Types - Slicing XML for ~ 20 years! CAD GIS FME release by year NumberofsupportedformatsinFME 1995 10500100300 20202015201020052000 TABULAR DATABASE RASTER POINT CLOUD BIM 3D WEB XML/ JSON CLOUD BIG DATA IOT BI AR / VR AI / ML INDOOR MAPPING GAMING XML Representations
  • 9. FME support for XML is Wide and Deep!
  • 10. Let us know in the chat what type of XML data you are working with.
  • 12. All are XML! FME wraps formats to help you. XMLGMLCityGML Adds Value GeometryTextures Adds Value
  • 13. USE MOST SPECIFIC FORMAT FME supports many XML variants and there are many ways to work with a specific file.. The best way is almost always using the specific format. Reader Reader Reader
  • 14. Demo: General -> Specific Format Support (CityGML) 1.
  • 15. Most General Reader : XML Reader Read CityGML by XML reader Feature Path: Building No geometry - must process in workspace -> GreenBuildingXML example
  • 16. ● Read CityGML with GML Reader (no schema mode) ● Reads features, geometries ● Ignores textures since these are not part of GML standard ● Auto reader selection More Specific Reader: GML Reader
  • 17. Read CityGML with CityGML Reader Note textures and citygml properties read (LOD) Richest support when most specific R/W chosen Most Specific Reader: CityGML Reader
  • 18. {"employees":[ { "firstName":"John", "lastName":"Doe" }, { "firstName":"Anna", "lastName":"Smith" }, { "firstName":"Peter", "lastName":"Jones" } ]}
  • 19.
  • 20. JSON Formats Note: IMDF, CityJSON, TopoJSON - some of the newer formats added recently
  • 21. XML Format Highlights XML GML KML OGCWFS XSD based XML 3D: CityGML, Indoor GML GMLJP2000 INSPIRE GML Geodatabase - xml metadata AIXM Geo RSS UK OS Mastermap AEC/CAD/BIM: 12dXML, IFCXML GML in JP2000
  • 22. FME’s XML Power ● XSD based XML Reading and Writing ● Standard XML Reader / Writer ● List Processing ● GML Reader / Writer ● WFS Reader - complex GML support ● Writer validation / XMLValidator ● XSLT, XFMaps ● XML Transformers Most of these will be highlighted within the examples below XML
  • 23. Does Zipster Run on XML or Love XML? Zipster runs on machine code called: Xtraordinary Machine Language XML Zipster Loves XML! But....
  • 25. XML Transformers - Favorites XMLFragmenter / XMLFlattener XMLValidator XMLFormatter XMLUpdater ListExploder Honorable mention: ● XMLXQueryExploder Historical mention: ● XMLTemplater
  • 26. XML Concepts Tag <Course> XML Element <Course>FME</Course> Child element <Course><Id>101</Id>… Element attribute <Course id=“101”> GML Object Object property Object attribute XML Schema - xsd's Namespaces <ps-f:geometry>
  • 27. XML Data Structures: Object vs Relational attribute1 attribute2 Active Date_From Active Date_To Coordinates John Vancouver 11-22-99 12-11-09 -123.1,49.25 -122.9,49.15 June Surrey 02-25-05 9-15-10 -122.8,49.12 -122.5,49.0
  • 28. XML Strategies XML comes in many flavours so important to have a well thought out approach to leverage the tools you have and quickly get the data in the form you need ● Understand the type, logical structure and meaning of your source data ● Understand your target data model and what transforms are likely to be needed ● Choose the tools best suited (Readers/Writers/Transformers) to do the work
  • 29. XML Strategies: Reading Use most specific format (Text or XML or GML or profile?) ● How to identify format type? (GML, XML, HTML, profile) ● Format clues? See namespace prefixes and header, geometry types, xsd ● Use application schema if there is one (ask or search) If XML not specific supported then use our generic XML tools: ● Don’t forget to inspect data first: Data Inspector, Notepad++ ● Feature Paths ● XMLFragmenter / XMLFlattener ● List processing ● GeometryReplacer
  • 30. XML Strategies: Writing ● Use most specific writer format (Text or XML or GML or profile?) ● Use XSD if it is available ● If XML not specifically supported then use our generic XML tools: ○ XMLTemplater ○ GeometryExtractor ○ List processing: ListRenamer (now supports manipulation of entire lists) ○ AttributeCreator, Aggregator to build lists ○ XMLFormatter and XMLValidator ○ Other writer parameters: namespace override ○ Destination schema: understand differences between xml data types ■ xml_buffer, xml_geometry, xml_xml ■ node level writing - new in 2019.2+
  • 32. Arbitrary XML/No schema: UNESCO World Heritage Sites ● Inspect first to determine type of xml ● Read with Feature Path: /query/row https://whc.unesco.org/en/list/xml/
  • 33. ● Nested XML sliced into flattened features at selected node ● Parent.child notation within features for nested attributes UNESCO World Heritage Sites: Read with Feature Path
  • 34. 1. Add XML reader: a. Dataset: https://whc.unesco.org/en/list/xml/ b. Elements to match query/row 2. VertexCreator: longitude, latitude 3. CoordSystemSetter:LL84 4. KMLPropertySetter a. Name: site b. Title: Heritage Sites c. Content: short_description 5. Drop xml format fields 6. Fanout: category UNESCO World Heritage Sites: XML to KML Workspace
  • 35. Set kml_name, description, folder Geometry and attribute schema Illustrates how FME supports easy extraction from XML to client friendly formats like KML UNESCO World Heritage Sites: KML Result
  • 36. Q&A
  • 37. Demo: Writing Simple XML (using XML Writer, XMLTemplater) 3.
  • 38. Writing Flat XML Database export with generic XML writer Automatic schema definition based on source or feature schema Database export with generic XML writer
  • 39. Default values for most parameters Make sure output data and schema not suppressed Writing Flat XML: Workspace
  • 40. FME generates namespaces as needed Preview output in XML Editor Writing Flat XML: Result
  • 41. Writing Simple Flat XML: Result Before FME 2020, could validate using XSD but had to read XML data with feature paths and ignore schema Now output can be checked with Data Inspector using XSD
  • 42. Write XML with XMLTemplater - Metadata Insert attribute values using fme:get-attribute{} functions Write out XML document using Text File writer
  • 43. Write XML with XMLTemplater - Metadata Insert attribute values using fme:get-attribute{} functions Write out XML document using Text File writer
  • 46. XML Validator Possible Values: ● None ● Syntax ● Syntax and Namespace ● Syntax and Schema New in 2020: ● Multiple XSD support Also useful to check if data you receive is valid Test to see if data you produce is valid!
  • 48. XSD Driven XML Reading - BeerXML Read XML feature types based on application schema and feature paths (different path). Feature type attribute and geometry definitions based on XSD not data. Similar to GML application schema based reading Prefix with namespace to differentiate types
  • 49. XSD Driven XML Reading - BeerXML 1. Set source XML dataset and application schema paths 2. Set feature paths (base:beer_xml) 3. Set XSD Types to be features (all except units) 4. Max attributes per nested attribute - becomes xml fragment after that
  • 50. XSD Driven XML Reading - BeerXML Reading recipe additions (schemas from beerxml.com )
  • 52. ● Cap 1.2 XML ● Write XML using Feature type definitions based on XSD, path. ● Set attribute values as you would any typical FME format - no templaters required. ● Similar to GML application schema based writing ● Validation option XSD Driven XML Writing: Common Alerting Protocol
  • 53. XSD Driven XML Writing: Common Alerting Protocol http://docs.oasis-open.org/emergency/cap/v1.2/CAP-v1.2.html
  • 54. XSD Driven XML Writing: CAP - Validation Pt 2 Missing attribute msgType: ERROR |XML Validation: Error in ‘6.EmergencyAlerts_CAP1.2 XMLcapOut.xml' on line 27, column 13: 'element 'source' is not allowed for content model '(identifier,sender,sent,status,msgType,source?,scope,restriction?,addresses?,code*,note?,referen ces?,incidents?,info*) Missing attribute ‘severity’: ERROR |XML Validation: Error in ‘6.EmergencyAlerts_CAP1.2 XMLcapOut.xml' on line 26, column 13: 'element 'certainty' is not allowed for content model '(language?,category+,event,responseType*,urgency,severity,certainty,audience?,eventCode*,effe ctive?,onset?,expires?,senderName?,headline?,description?,instruction?,web?,contact?,parameter *,resource*,area*) Messages from open source Apache Xerces parsing library
  • 55. XSD Driven XML Writing: Common Alerting Protocol
  • 56. OGC Open API: Features - WFS3 New, Updated Tutorials: GML, XML, JSON CityGML v3 GeoSciML* S121 GML* CIM XML ARML FXXM/WXXM* List Processing Others? What is Next for XML? *Stay tuned!
  • 57. Q&A
  • 58. Choose your XML Adventure Vote on: ● Arbitrary XML ● Catalogues ● Metadata
  • 60. XSD Based XML R/W: ISO 19115 Metadata XSD based reader / writer new in FME 2020 Updates contact{0}
  • 61. XSD Based XML R/W: ISO 19115 Metadata Reader settings: Feature Path Writer settings: Feature Path
  • 62. XSD Based XML: ISO 19115 Metadata: XMLTemplater
  • 63. XSD Based XML R/W: ISO 19115 Metadata Result source updated
  • 65. OSM XML: Generating 3D Buildings Workflow OSM comprehensive global coverage for base map data Full access to rich property sets
  • 66. OSM XML: 3D Buildings Visualization FME can read all available OSM outputs: XML, PBF, Geopackage and GeoJSON. Each format has its own properties Data from: https://extract.bbbike.org/
  • 68. OGC CSW Client Workspace Series of HTTPCallers send requests to CSW service for Entries, Details and then WFS features based on user selection
  • 70. CSW Client - Details: URI
  • 71. CSW Details URI: WFS Feature Retrieval S-121 GML
  • 72. Q&A
  • 73. XML Resources Tutorials & Articles XML Tutorial https://knowledge.safe.com/articles/29553/tutorial-getting-started-wit h-xml.html GML Tutorial - INSPIRE https://knowledge.safe.com/articles/1321/eu-inspire-initiative-tutorial. html JSON Tutorial https://knowledge.safe.com/articles/39188/tutorial-getting-started-wit h-json.html Reading XML/GML https://knowledge.safe.com/articles/888/reading-xmlgml.html GML - Writing https://knowledge.safe.com/articles/812/gml-writing-with-application- schemas.html
  • 74. Title Join us tomorrow! Keeping Cool, Calm, and Connected with FME 2020.1
  • 75. Choose your XML Adventure Vote on: ● XML Web APIs ● OSM ● XML to JSON
  • 77. Power of XML Reader: GreenBuilding XML Custom reader available on FME Hub XML reader assembles object attributes and geometries to construct BIM components gbXMLStandard Single Family Residential 2016.xml
  • 78. Power of XML Reader: GreenBuilding XML ChapelHillOffice.xml
  • 79. Power of XML Reader: GreenBuilding XML Custom format just looks like any other format when reading from Data Inspector or a workspace Data from gbxml.org
  • 80. Power of XML Reader: GreenBuilding XML 1.Explode to points elements 2.Generate point geometry 3. Build line, area and surfaces
  • 81. Is there an easier way for Green Building XML? hub.safe.com
  • 82. XSLT Example: S-121 GML to HTML ● Option to specify XSLT path on GML or XML writer ● Example from the OGC Maritime Boundaries Pilot ● XSLT takes output S-121 GML and transforms it into HTML regulatory text representation ● Net result is a fully automated DFO/CHS geodatabase to HTML via GML to support their regulation submission workflow
  • 84. Power of Generic GML R/W: Complex GML These next 3 examples show the power of FME to support reading and writing complex GML, such as that used for scientific applications and complex regulatory models. GeoSciML: Just drag and drop demo dataset into DI - GML reader automatically gets the xsd from the ns header - make sure you set axis order to 1,2. This is Australian data - geoscience australia. WXXM: need to specify the application schema in the folder provided: wxxm.xsd S-121 GML: No need to specify app schema. This is because the xsi:schemaLocation points to the local application schema which in this case is s121.xsd. This needs to be in the same folder as the dataset.
  • 85. Power of Generic GML R/W: GeoSciML Open standard for geologic data. Submitted as an OGC standard. Aligned with INSPIRE
  • 86. Weather Information Exchange Model Interoperable meteorological information exchange covering the needs of the aviation industry eurocontrol.int faa.gov Power of Generic GML: WXXM
  • 87. S-121 GML from OGC Maritime Boundaries Pilot Collaboration between IHO and OGC S-121 generated from DFO/CHS geodatabase using FME ogc.org charts.gc.ca Power of Generic GML: S-121
  • 89. XML/GML to JSON conversion / differences GML schema driven directly from XSD. Complex structures / nesting modelled within the feature type definitions and using parent / child ids. Currently JSON writer requires the use of JSONTemplater for complex properties / nesting, such as for lists or multi-part elements such as date ranges.
  • 90. JSON / GeoJSON Enhancements New formats: CityJSON, TopoJSON, IMDF update Writing: New Feature Collection mode in FME2020.1+. Choose how to assemble feature types: ● Single feature collection ● Array of feature collection objects ● Object with feature type names as keys Performance improvements To come: nested schema writing. In meantime use JSONTemplater to write to root objects
  • 91. Preview GeoJSON on GitHub, geojson.io Geojson is automatically rendered as an interactive map on GitHub Use geojson.io to test your geojson with an external client
  • 92. Let us know in the chat… [question]
  • 93. Q&A
  • 94. Other Topics to Explore ● Metadata -> AI/ML - metadata tags for training ● XML manipulation: XML Extraction & Updating: XMLUpdater, XQueryExtractor ● XFMaps and XSLT - XML reader scripting, dynamic schema, style sheets ● OGC Support ○ Web Services: OGC Service hosting ● Geometry extraction/ composition ● JSON parsing ● Other formats: Indoor, BIM (IFCXML), AEC: 12DXML, CIM XML What do you want to hear / learn more about? Go to Knowledge Base for more info on most of these topics
  • 95. Summary - Key Takeaways ● XSD XML - Powerful new reader / writer: e.g. metadata 19115 ● GML - XSD mode - very flexible and continues to evolve ● FME as your no-code XML solution: many XML tools embedded in FME (Validation, Formatting, SampleGenerator, XSLT, XML Update) ● FME constantly evolving: OpenAPI/WFS 3 etc - keep upgrading to get latest functionality and performance ● JSON patterns very similar to XML ones ● FME’s XML and JSON support critical for web integration and open standards support: W3C, OGC, EU INSPIRE, ISO, ITRF Reach out to us for Help
  • 96. Q&A And suggestion sharing! Please share your XML ideas in the chat panel.
  • 97. XML Resources Tutorials & Articles XML Tutorial https://knowledge.safe.com/articles/29553/tutorial-getting-started-wit h-xml.html GML Tutorial - INSPIRE https://knowledge.safe.com/articles/1321/eu-inspire-initiative-tutorial. html JSON Tutorial https://knowledge.safe.com/articles/39188/tutorial-getting-started-wit h-json.html Reading XML/GML https://knowledge.safe.com/articles/888/reading-xmlgml.html GML - Writing https://knowledge.safe.com/articles/812/gml-writing-with-application- schemas.html Keep the XML conversation going! We want to know what else you want to see in FME to make XML easier. Please reach out on safe.com/live-chat or post on safe.com/community
  • 98. Demo Links And supporting articles CityGML https://knowledge.safe.com/articles/904/writing-citygml-example.html XMLUpdater https://knowledge.safe.com/articles/868/using-the-xmlupdater-transfo rmer-to-manipulate-met.html OGC Maritime Boundaries S-121 GML Pilot https://knowledge.safe.com/articles/112578/ogc-maritime-limits-and-b oundaries-s-121-gml-pilot.html Writing to nested properties in AIXM: https://knowledge.safe.com/questions/2949/aixm-annotations.html https://knowledge.safe.com/questions/47251/how-to-transform-aixm- 45-to-aixm-51-xml-geometry-g.html WFS Troubleshooting: https://knowledge.safe.com/articles/19452/troubleshooting-wfs-errors. html Keep the XML conversation going! We want to know what else you want to see in FME to make XML easier. Please reach out on safe.com/live-chat or post on safe.com/community
  • 99. Title Join us tomorrow! Keeping Cool, Calm, and Connected with FME 2020.1
  • 100. Thank you! Get a free trial of FME or live chat at safe.com