File: names_with_spaces2.dmr

package info (click to toggle)
libdap 3.20.11-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 24,568 kB
  • sloc: cpp: 50,809; sh: 41,536; xml: 23,511; ansic: 20,030; yacc: 2,508; exp: 1,544; makefile: 990; lex: 309; perl: 52; fortran: 8
file content (33 lines) | stat: -rw-r--r-- 698 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>

<!-- Example in the CE section of the DAP4 spec. jhrg 12/30/13 -->

<Dataset name="vol_1_ce_2" dapVersion="4.0" dmrVersion="1.0" xml:base="file:dap4/vol_1_ce_2.xml"
  xmlns="http://xml.opendap.org/ns/DAP/4.0#" xmlns:dap="http://xml.opendap.org/ns/DAP/4.0#">
  
  <Dimension name="d" size="5"/>
  
  <Int32 name="u">
      <Dim name="d"/>
  </Int32>
  <Int32 name="v"/>

  <Group name="inst2">
    <Int32 name="u">
        <Dim size="2"/>
    </Int32>
    
    <Int32 name="v"/>

    <Structure name="Point Break">
      <Int32 name="x">
          <Dim name="/d"/>
      </Int32>
      
      <Int32 name="y"/>
      
    </Structure>
  </Group>

</Dataset>