[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Two-mile-high markup (data typing, etc.)XMLpipelines (LONG)


data typing software
Thomas B. Passin writes:

 > > <?xml version="1.0" encoding="UTF-8"?>
 > > <aircraft>
 > >     <elevation>12000</elevation>
 > > </aircraft>

 > Say I want to compare the elevation to the minimum allowed by FAA
 > regs for that location.

First, a pedantic note (not addressed to Thomas; I just happened to
pick his message to join the thread) -- the height of the ground, or
something sitting on the ground, is 'elevation'; the height of an
airplane, or something else not sitting on the ground, is 'altitude'.

Now, if I were looking at this in an archive 20 years from now, here
are the questions I would want to answer:

- feet or meters?
- above sea level or above ground level?
- indicated (pressure) altitude, density altitude, or absolute
  altitude?

If I have something like

  <aircraft>
   <altitude xml:type="int">12000</altitude>
  </aircraft>

(or the equivalent from an external schema) I'm really no further
ahead; in fact, I've come to the conclusion that raw datatyping like
this is close to useless for most applications.  You could make a much
better argument for xml:unit (or the external schema equivalent)

  <aircraft>
   <altitude xml:unit="ft">12000</altitude>
  </aircraft>

This kind of thing would avoid no end of confusion and bugs for
engineering, scientific, and financial XML applications (to name only
three fields), but even then, it leaves most of my questions
unanswered.  In the end, I need something human-readable, not
machine-readable, to help me make sense of this (we cannot fire the
technical writers yet):

  aircraft/altitude:
    The absolute altitude of the aircraft above sea level, in feet.

A version of that information could be crammed into the element type
name if you don't like put all your faith in external documentation:

  <aircraft>
   <absolute-altitude-ft-asl>12000</absolute-altitude-ft-asl>
  </aircraft>

That doesn't help software to read the data, but it helps me *write*
software to read the data (we cannot fire the coders yet, either).

In FlightGear, we've switched to using standard unit abbreviations on
the end of all element type names after some nasty bugs and a lot of
unnecessary confusion.  Here are the classic six degrees of freedom
serialized to XML:

 <PropertyList>

  <position>
   <longitude-deg>-75.5</longitude-deg>
   <latitude-deg>45.5</latitude-deg>
   <altitude-ft>5000</altitude-ft>
  </position>

  <orientation>
   <roll-deg>0</roll-deg>
   <pitch-deg>0</pitch-deg>
   <heading-deg>90</heading-deg>
  </orientation>

 </PropertyList>

 > On the other hand, with many of these strong-typing-desiring applications,
 > the data probably will not live on.  It is ephemeral, designed for one short
 > transaction and never to be seen again.

I agree.  Data typing may have some value in the specific field of
XML-based RPC.


All the best,


David

-- 
David Megginson, david@m..., http://www.megginson.com/

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.