Organization of attributes: Difference between revisions

From OPeNDAP Documentation
⧼opendap2-jumptonavigation⧽
Line 164: Line 164:


[[User:Jimg|jimg]] 10:15, 14 January 2009 (PST) OK, I think this idea combines things, let me know what you all think.
[[User:Jimg|jimg]] 10:15, 14 January 2009 (PST) OK, I think this idea combines things, let me know what you all think.
[[User:Jimg|jimg]] 16:22, 14 January 2009 (PST) We've chosen this syntax!


I suggest that we keep the current DDX syntax for attributes since it save us from having to do text processing in the handlers.  
I suggest that we keep the current DDX syntax for attributes since it save us from having to do text processing in the handlers.  

Revision as of 00:22, 15 January 2009

From: benno@iri.columbia.edu

  Subject: DAP 4.0 Schema
  Date: May 12, 2005 8:50:02 AM MDT
  To: dods-tech@unidata.ucar.edu

My apologies for making these comments so late: I was trying to monitor the DAP 4.0 progress, but the document I was looking at did not mention the schema, and somehow I missed it when the document got improved.

Essentially DAP 4.0 as it currently stands uses XML to carry an improved dataset with attributes structure not unlike DAP 2.0. In particular, it defines an attribute cell which has a name and type and contents. This is awfully close to defining a structure within XML to carry the exact same information that XML is designed to carry (shades of GMT and netcdf ...).

I was thinking that it would be awfully nice if a set of attributes that belong to a convention (say CF) got translated to a set of XML tags with a CF schema, i.e. the tags would be defined in a namespace CF. So we would see

<dataset name=test xmlns:cf="http://unidata.ucar.edu/2005/CF">
    <cf:title>A wonderful test dataset</cf:title>
    <cf:institution>the great beyond</cf:institution>
    <cf:references>dods-tech@unidata.ucar.edu<cf:references>
     ...
</dataset>

This way we would truly be using XML to transmit the information. The implication of this is that we would split the DAP schema into two parts: a organizational part (datasets and variables), and a concrete data-typing part (most of the rest of the current DAP4.0 schema). The DAP core would only use the concrete data-typing part, (except maybe for the nesting of the organizational part to create dot-separated names in the constraints, though in this example that is explicit in the Blob url so perhaps it is not even an issue).

 <variable name=sst>
     <cf:long_name>sea surface temperature</cf:long_name>
     <cf:units>Celsius_scale</cf:units>
     <dap:Array>
         <dap:Float32/>
         <dap:dimension size="16" name="latitude"/>
         <dap:dimension size="17" name="longitude"/>
         <dap:dimension size="21" name="time"/>
     </dap:Array>
     <dap:Blob URL="http://dcz.opendap.org/dap/data/nc/fnoc1.nc?u"/>
 </variable>

This is only a rough idea -- there are others out there that could make better syntactic choices (like a single dap container that resets the default name space for its contents), I am just trying to make a general point. The reason for doing this is two-fold: 1) the core core could be simpler and more stable, because almost everything outside the hopefully small core namespace would not affect the OpenDAP core, and 2) OpenDAP xml could simply be inserted in an XML document following whatever specific metadata conventions and data structures to create a document with accessible data. (GML perhaps?) It seems pretty clear that the future is metadata transmission in XML (with many different standards for metadata), and OpenDAP has always been a transmission mechanism that avoided constraining the metadata, it would be really nice to turn over the metadata responsibility to XML.

Benno


Added to this wiki: jimg 14:06, 24 June 2008 (PDT)

More ideas about this syntax

Some other ideas; a mixture of syntaxes:

 <variable name="sst">
     <cf:long_name>sea surface temperature</cf:long_name>
     <cf:units>Celsius_scale</cf:units>

     <dap:attribute name="long_name" type="string">sea surface temperature</dap:attribute >

     <dap:attribute name="coefs" type="float64"><value>0.01</value> <value>-1.5</value> </dap:attribute>

     <att:units type="string">Celsius_scale</att:units >
     <att:foo type="string">bar</att:foo>

     <dap:Array>
         <dap:Float32/>
         <dap:dimension size="16" name="latitude"/>
         <dap:dimension size="17" name="longitude"/>
         <dap:dimension size="21" name="time"/>
     </dap:Array>
 </variable>

But, the question I would like to understand better is How does having an XML document with a potentially infinite number of elements affect systems? That is, when we take an attribute from a netcdf file (or any other file type...) and make an element name from the attribute's name, since there's no limit to the names of attributes, there's a potentially infinite numer of element names in the DDX.

Other issues:

  1. It's possible to have attributes in netcdf (and other?) formats that have colons in their names. That means that when a handler sees these names, it must remove the colon in order to make that attribute name an element name that's legal XML.
  2. There are other characters that are not allowed in QNames, and these would all have to be removed for this attribute-name --> element-name scheme to work in general.
  3. Is it realistic to think that a handler (netcdf or otherwise) is going to be rewritten in such a way that it can distinguish which dap:Attribute@name values that contain colons need to be interpreted as namespace prefixed names vs which ones that contain colons must have their colons removed/changed so that they become a vaild QName? (If you do have modify it how do you accurately store the real name of the element? Add an attribute called "name" to store the Name? At that point we're back to where we were with dap:Attribute)

An alternative is to use the existing DDX syntax but add an optional namespace attribute which provides the handler with an opportunity to say it knows this attribute belongs to a particular namespace. The handler would have to take care of assigning a prefix for the namespace in many situations - work out the details...

Proposed alternative syntax

The idea behind all of this is to have the handlers build responses that can include information about the conventions/standards followed by the dataset

jimg 09:57, 14 January 2009 (PST) read this over but also see below where I have a 'Second Proposed Alternative syntax'

The current (DAP 3.2) DDX syntax for attributes looks like:

    <Grid name="temp">
        <Attribute name="long_name" type="String">
            <value>temperature</value>
        </Attribute>
        <Attribute name="units" type="String">
            <value>K</value>
        </Attribute>
        <Attribute name="grid_mapping" type="String">
            <value>crs</value>
        </Attribute>
        <Attribute name="wcs:gridCRS" type="String">
            <value>crs</value>
        </Attribute>
        <Array name="temp">
        ...

And I'd suggest that we adopt the following addition to that syntax: That the Attribute element support an optional namespace xml attribute (dap:attribute@namespace) and that xml attribute be used to indicate that a particular dap:attribute belongs to a given convention/standard. Like this:

<Attribute name="long_name" type="string" nsPrefix="cf">
<Attribute name="long_name" type="string" namespace="http://ns.ucar.edu/xml/ns/cf-1.0">

where we would declare the string "cf" to be a namespace prefix in the usual XML way, or simply use the namespace attribute to inject the full namespace name

Pro:

  1. This will be possible to implement in our handlers. We will not have to divine new names for data set attributes that contain characters that are not allowed in QNames.
  2. The dap:attribute@namespace is a bit of a hack, but it's a recognizable one that should provide the needed information to XSLT and other code
  3. encoding the namespace & its prefix (i.e., "cf" in this example) using the XML notation for such a beast is something that the handler can do and that XSLT and otehr code should also be able to access

Con:

  1. In order to get the attributes represented in the form they take on in their namespaces (when attributes are in a namespace; e.g. CF-1.0), we will have to transform the DDX using XSLT.

Other Changes

Other XML

Another change to the DAP 3.2 DDX is that we should allow any XML element to be present at certain locations in the DDX. These elements might (probably will) be ignored by most DAP-aware code, but they will be transported by the document. The 'particular place' will be right before any place where an Attribute element may appear.

The schema change would look like this:

   <xs:complexType name="BaseType">
       <xs:annotation>
           <xs:documentation>DODS Base Type</xs:documentation>
       </xs:annotation>
       <xs:sequence>
           <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="strict"/>
           <xs:element ref="Attribute" minOccurs="0" maxOccurs="unbounded"/>
           <xs:element ref="Alias" minOccurs="0" maxOccurs="unbounded"/>
       </xs:sequence>
       <xs:attribute name="name" type="xs:string"/>
   </xs:complexType>

OR,

We could demand that arbitrary XML be wrapped in a special type of dap:Attribute:


   <xs:complexType name="DASAttribute">
       <xs:annotation>
           <xs:documentation>DAS Attribute Type</xs:documentation>
       </xs:annotation>
       <xs:choice>
           <xs:sequence>
               <xs:element name="value" type="xs:string" maxOccurs="unbounded"/>
           </xs:sequence>
           <xs:sequence>
               <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="strict"/>
               <xs:element ref="Attribute" minOccurs="0" maxOccurs="unbounded"/>
               <xs:element ref="Alias" minOccurs="0" maxOccurs="unbounded"/>
           </xs:sequence>
       
       </xs:choice>
       <xs:attribute name="name" type="xs:string" use="required"/>
       <xs:attribute name="type" type="dap2:DataType" use="required"/>
   </xs:complexType>

jimg 09:56, 14 January 2009 (PST) I don't know enough about XML Schema to understand what a document would like if it used this schema. However, the important thing about wrapping the 'foreign' XML in a DAP Attribute container is that we can use existing tools like NCML to inject that foreign XML without changing NCML much. That's the important thing: Can we do what's proposed without changing or adding to NCML? We will need to tweak NCML just a little to build new DAP Attributes that contain foreign XML, but only a very little. If we want to insert those elements 'naked' then I'll have to move just a bit farther from the current NCML 2.2. In NCML I'll probably actually use the 'add a new attribute' syntax and just overload it with a new XML attribute type like 'xml'.

dap:Aliases

Remove the Alias data type from the DAP/DDX

Second Proposed Alternative Syntax

jimg 10:15, 14 January 2009 (PST) OK, I think this idea combines things, let me know what you all think.

jimg 16:22, 14 January 2009 (PST) We've chosen this syntax!

I suggest that we keep the current DDX syntax for attributes since it save us from having to do text processing in the handlers.

The problem with representing all DAP attributes using a syntax like <att:attribute name ...> is that attribute name can easily contain characters that are not allowed in what XML calls a QName. This will be a real problem when we apply this representation to data sets which use HDF4 and HDF5. In those you can find examples of attributes with colons and other odd characters. So we'd have to adopt a syntax like <att:modified attribute name real_name="attribute name" ...>.

And that we augment this with the idea that we can inject arbitrary XML into a DDX anyplace we can also have attributes (Nathan, smooth over the rough edges here). This way we can represent WCS info in the short term and we can build handlers that can include elements like <cf:long_name ...> all with out having a schema that requires client to parse/understand a potentially infinite set of elements for DAP.

An example would look like:

<Grid name="temp">
        <!-- This stuff is what's new. Despite my earlier comments about NCML
             modifications, I can code this w/o much more effort than I can code
             a NCML handler in the first place. And of course the handler would
             use its own knowledge about long_name and units to make the CF elements.
             We'd also need to add the smarts to include the correct xmlns things
             at the start of the document. --> 
        <cf:long_name>temperature</cf:long_name>
        <cf:units>K</cf:units>
        <wcs:CoverageDescription>
               ...
        </wcs:CoverageDescription >
        <wcs:CoverageSummary>
               ...
        </wcs:CoverageSummary >
        
        <!-- All of the original attributes are here, using the current 
             syntax and a client needs to only grok a finite set of elements 
             to use them with no character content issues we're not currently
             dealing with  -->
        <Attribute name="long_name" type="String">
            <value>temperature</value>
        </Attribute>
        <Attribute name="units" type="String">
            <value>K</value>
        </Attribute>
        <Attribute name="grid_mapping" type="String">
            <value>crs</value>
        </Attribute>
        <Attribute name="wcs:gridCRS" type="String">
            <value>crs</value>
        </Attribute>
        <Array name="temp">
        ...

Development Plan

jimg 10:01, 14 January 2009 (PST) Please hack as you all see fit...

How to implement this change:

  1. Adopt this syntax for DAP 3.3
  2. Local attribute namespace must be made
    1. Cast all attributes into this namespace
    2. Then figure out how to allow other namespaces
    3. Must be clear about how to organize the stuff in the DDX - make a schema or schema sniplet
    4. Also adjust schema to allow foreign content

How this will be used by the WCS interface:

  1. Use an AIS to inject new attributes into the DDX
  2. These attributes will not be in the DAP attribute namespace

jimg 13:41, 13 January 2009 (PST)