Serialisation
DMPACK supports the following data serialisation formats:
- Atom XML
-
Export of log messages in Atom Syndication Format (RFC 4287), with optional XSLT style sheet.
- Block
-
Export of observation responses as X/Y data points in ASCII block format, consisting of time stamp (ISO 8601) and real value.
- CSV
-
Export and import of beat, log, node, observation, sensor, and target data, with custom field separator and quote character. A CSV header is added optionally.
- GeoJSON
-
Export of node, sensor, and target data as GeoJSON feature points.
- HDF5
-
Export and import of node, observation, sensor, and target data as HDF5 compound data types.
- JSON
-
Export of beat, log, node, observation, sensor, and target data as JSON objects or JSON arrays.
- JSON Lines
-
Export of beat, log, node, observation, sensor, and target data in JSON Lines/Newline Delimited JSON format.
- Lua
-
Converting observations from and to Lua tables: import of observations from Lua file or stack-based data exchange between Fortran and Lua. plain text format
- Namelist
-
Import from and export to Fortran 95 Namelist (NML) format of single beat, log, node, observation, sensor, and target types. The syntax is case-insensitive, line-breaks are optional. Default values are assumed for omitted attributes of data in Namelist format.
- Text
-
Status messages of the HTTP-RPC API are returned as key–value pairs in plain text format.
The JSON Lines format equals the JSON format, except that multiple records are separated by new line. All string attributes of the derived types are 8 bit only and limited to the ASCII character set, UUIDv4 identifiers and date-time strings in ISO 8601 format are always 32 characters long.
API Status
Derived Type
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
DMPACK application version. |
|
string |
32 |
DMPACK library version. |
|
string |
32 |
Server host name. |
|
string |
32 |
Server software (web server). |
|
string |
32 |
Server date and time in ISO 8601. |
|
string |
32 |
Server status message. |
|
integer |
4 |
Text
version=1.0.0 dmpack=1.0.0 host=localhost server=lighttpd/1.4.70 timestamp=1970-01-01T00:00:00.000000+00:00 message=online error=0
Beat
Derived Type
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
Node id ( |
|
string |
45 |
IPv4/IPv6 address of client. |
|
string |
32 |
Client software name and version. |
|
string |
32 |
Date and time heartbeat was sent (ISO 8601). |
|
string |
32 |
Date and time heartbeat was received (ISO 8601). |
|
integer |
4 |
Last client connection error. |
|
integer |
4 |
Emit interval in seconds. |
|
integer |
4 |
Client uptime in seconds. |
CSV
Column | Attribute | Description |
---|---|---|
1 |
|
Node id. |
2 |
|
IP address of client. |
3 |
|
Client software name and version. |
4 |
|
Date and time heartbeat was sent. |
5 |
|
Date and time heartbeat was received. |
6 |
|
Error code. |
7 |
|
Emit interval in seconds. |
8 |
|
Client uptime in seconds. |
JSON
{
"node_id": "dummy-node",
"address": "127.0.0.1",
"client": "dmbeat 1.0.0 (DMPACK 1.0.0)",
"time_sent": "1970-01-01T00:00:00.000000+00:00",
"time_recv": "1970-01-01T00:00:00.000000+00:00",
"error": 0,
"interval": 60,
"uptime": 3600
}
Namelist
&DMBEAT
BEAT%NODE_ID="dummy-node",
BEAT%ADDRESS="127.0.0.1",
BEAT%CLIENT="dmbeat 1.0.0 (DMPACK 1.0.0)",
BEAT%TIME_SENT="1970-01-01T00:00:00.000000+00:00",
BEAT%TIME_RECV="1970-01-01T00:00:00.000000+00:00",
BEAT%ERROR=0,
BEAT%INTERVAL=60,
BEAT%UPTIME=3600,
/
Data Point
Derived Type
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
X value (ISO 8601). |
|
double |
8 |
Y value. |
Block
1970-01-01T00:00:00.000000+00:00 0.00000000
CSV
Column | Attribute | Description |
---|---|---|
1 |
|
X value. |
2 |
|
Y value. |
JSON
{
"x": "1970-01-01T00:00:00.000000+00:00",
"y": 0.0
}
Log
Derived Type
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
Log id (UUIDv4). |
|
integer |
4 |
|
|
integer |
4 |
|
|
string |
32 |
Date and time (ISO 8601). |
|
string |
32 |
Node id (optional). |
|
string |
32 |
Sensor id (optional). |
|
string |
32 |
Target id (optional). |
|
string |
32 |
Observation id (optional). |
|
string |
32 |
Log source (optional). |
|
string |
512 |
Log message (ASCII). |
Atom XML
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<generator version="1.0">DMPACK</generator>
<title>DMPACK Logs</title>
<subtitle>Log Messages Feed</subtitle>
<id>urn:uuid:a6baaf1a-43b7-4e59-a18c-653e6ee61dfa</id>
<updated>1970-01-01T00:00:00.000000+00:00</updated>
<entry>
<title>DEBUG: dummy log message</title>
<id>urn:uuid:26462d27-d7ff-4ef1-b10e-0a2e921e638b</id>
<published>1970-01-01T00:00:00.000000+00:00</published>
<updated>1970-01-01T00:00:00.000000+00:00</updated>
<summary>DEBUG: dummy log message</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<table>
<tbody>
<tr><th>ID</th><td><code>26462d27d7ff4ef1b10e0a2e921e638b</code></td></tr>
<tr><th>Timestamp</th><td>1970-01-01T00:00:00.000000+00:00</td></tr>
<tr><th>Level</th><td>DEBUG (1)</td></tr>
<tr><th>Error</th><td>dummy error (2)</td></tr>
<tr><th>Node ID</th><td>dummy-node</td></tr>
<tr><th>Sensor ID</th><td>dummy-sensor</td></tr>
<tr><th>Target ID</th><td>dummy-target</td></tr>
<tr><th>Observation ID</th><td><code>9bb894c779e544dab1bd7e7a07ae507d</code></td></tr>
<tr><th>Source</th><td>dummy</td></tr>
<tr><th>Message</th><td>dummy log message</td></tr>
</tbody>
</table>
</div>
</content>
<author>
<name>dummy</name>
</author>
</entry>
</feed>
CSV
Column | Attribute | Description |
---|---|---|
1 |
|
Log id. |
2 |
|
Log level. |
3 |
|
Error code. |
4 |
|
Date and time. |
5 |
|
Node id. |
6 |
|
Sensor id. |
7 |
|
Target id. |
8 |
|
Observation id. |
9 |
|
Log source. |
10 |
|
Log message. |
JSON
{
"id": "26462d27d7ff4ef1b10e0a2e921e638b",
"level": 1,
"error": 2,
"timestamp": "1970-01-01T00:00:00.000000+00:00",
"node_id": "dummy-node",
"sensor_id": "dummy-sensor",
"target_id": "dummy-target",
"observ_id": "9bb894c779e544dab1bd7e7a07ae507d",
"message": "dummy log message"
}
Namelist
&DMLOG
LOG%ID="26462d27d7ff4ef1b10e0a2e921e638b",
LOG%LEVEL=1,
LOG%ERROR=2,
LOG%TIMESTAMP="1970-01-01T00:00:00.000000+00:00",
LOG%NODE_ID="dummy-node",
LOG%SENSOR_ID="dummy-sensor",
LOG%TARGET_ID="dummy-target",
LOG%OBSERV_ID="9bb894c779e544dab1bd7e7a07ae507d",
LOG%SOURCE="dummy",
LOG%MESSAGE="dummy log message",
/
Node
Derived Type
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
Node id ( |
|
string |
32 |
Node name. |
|
string |
32 |
Node description (optional). |
|
double |
8 |
Node local x (optional). |
|
double |
8 |
Node local y (optional). |
|
double |
8 |
Node local z (optional). |
|
double |
8 |
Node longitude (optional). |
|
double |
8 |
Node latitude (optional). |
|
double |
8 |
Node elevation (optional). |
CSV
Column | Attribute | Description |
---|---|---|
1 |
|
Node id. |
2 |
|
Node name. |
3 |
|
Node description. |
7 |
|
Node local x. |
8 |
|
Node local y. |
9 |
|
Node local z. |
4 |
|
Node longitude. |
5 |
|
Node latitude. |
6 |
|
Node elevation. |
GeoJSON
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 0.0, 0.0, 0.0 ]
},
"properties": {
"type": "node",
"properties": {
"id": "dummy-node",
"name": "Dummy Node",
"meta": "Description",
"x": 0.0,
"y": 0.0,
"z": 0.0,
"longitude": 0.0,
"latitude": 0.0,
"elevation": 0.0
}
}
}
HDF5
DATASET "node_type" {
DATATYPE H5T_COMPOUND {
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "id";
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "name";
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "meta";
H5T_IEEE_F64LE "x";
H5T_IEEE_F64LE "y";
H5T_IEEE_F64LE "z";
H5T_IEEE_F64LE "longitude";
H5T_IEEE_F64LE "latitude";
H5T_IEEE_F64LE "elevation";
}
DATASPACE SIMPLE { ( 8 ) / ( 8 ) }
}
JSON
{
"id": "dummy-node",
"name": "Dummy Node",
"meta": "Description",
"x": 0.0,
"y": 0.0,
"z": 0.0,
"longitude": 0.0,
"latitude": 0.0,
"elevation": 0.0
}
Namelist
&DMNODE
NODE%ID="dummy-node",
NODE%NAME="Dummy Node",
NODE%META="Description",
NODE%X=0.0,
NODE%Y=0.0,
NODE%Z=0.0,
NODE%LONGITUDE=0.0,
NODE%LATITUDE=0.0,
NODE%ELEVATION=0.0
/
Observation
Derived Type
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
Observation id (UUIDv4). |
|
string |
32 |
Node id ( |
|
string |
32 |
Sensor id ( |
|
string |
32 |
Target id ( |
|
string |
32 |
Observation name ( |
|
string |
32 |
Date and time of observation (ISO 8601). |
|
string |
32 |
Observation source or name of origin ( |
|
string |
32 |
Device (TTY/PTY path, IP address). |
|
integer |
4 |
Message queue priority (>= 0). |
|
integer |
4 |
Observation error code. |
|
integer |
4 |
Cursor of receiver list (0 to 16). |
|
integer |
4 |
Number of receivers (0 to 16). |
|
integer |
4 |
Number of sensor requests (0 to 8). |
|
array |
16 × 32 |
Array of receiver names (16). |
|
array |
8 × 1764 |
Array of requests (8). |
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
Request name ( |
|
string |
32 |
Date and time of request (ISO 8601). |
|
string |
256 |
Raw request to sensor. Non-printable characters have to be escaped. |
|
string |
256 |
Raw response of sensor. Non-printable characters will be escaped. |
|
string |
8 |
Request delimiter. Non-printable characters have to be escaped. |
|
string |
256 |
Regular expression pattern that describes the raw response using named groups. |
|
integer |
4 |
Delay in mseconds to wait after the request. |
|
integer |
4 |
Request error code. |
|
integer |
4 |
Request mode (unused, for future additions). |
|
integer |
4 |
Number of performed retries. |
|
integer |
4 |
Request state (unused, for future additions). |
|
integer |
4 |
Request timeout in mseconds. |
|
integer |
4 |
Number of responses (0 to 16). |
|
array |
16 × 56 |
Extracted values from the raw response (16). |
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
Response name ( |
|
string |
8 |
Response unit. |
|
integer |
4 |
Response value type. |
|
integer |
4 |
Response error code. |
|
double |
8 |
Response value. |
CSV
Column | Attribute | Description |
---|---|---|
1 |
|
Observation id. |
2 |
|
Node id. |
3 |
|
Sensor id. |
4 |
|
Target id. |
5 |
|
Observation name. |
6 |
|
Date and time of observation. |
7 |
|
Observation source. |
8 |
|
Device (TTY/PTY path). |
9 |
|
Message queue priority. |
10 |
|
Error code. |
11 |
|
Cursor of receiver list (0 to 16). |
12 |
|
Number of receivers (0 to 16). |
13 |
|
Number of sensor requests (0 to 8). |
14 – 29 |
|
Array of receiver names (16). |
14 |
|
Receiver 1. |
15 |
|
Receiver 2. |
16 |
|
Receiver 3. |
17 |
|
Receiver 4. |
18 |
|
Receiver 5. |
19 |
|
Receiver 6. |
20 |
|
Receiver 7. |
21 |
|
Receiver 8. |
22 |
|
Receiver 9. |
23 |
|
Receiver 10. |
24 |
|
Receiver 11. |
25 |
|
Receiver 12. |
26 |
|
Receiver 13. |
27 |
|
Receiver 14. |
28 |
|
Receiver 15. |
29 |
|
Receiver 16. |
30 – 773 |
|
Array of requests (8). |
30 – 105 |
|
Request 1. |
30 |
|
Request name. |
31 |
|
Date and time of request. |
32 |
|
Raw request to sensor. |
33 |
|
Raw response of sensor. |
34 |
|
Request delimiter. |
35 |
|
Regular expression pattern that describes the raw response. |
36 |
|
Delay in mseconds to wait after the request. |
37 |
|
Error code. |
38 |
|
Request mode. |
39 |
|
Number of retries performed. |
40 |
|
Request state. |
41 |
|
Request timeout in mseconds. |
42 |
|
Number of responses (0 to 16). |
43 – 122 |
|
Array of responses (16). |
43 – 47 |
|
Response 1. |
43 |
|
Response 1 name. |
44 |
|
Response 1 unit. |
45 |
|
Response 1 value type. |
46 |
|
Response 1 error. |
47 |
|
Response 1 value. |
48 – 52 |
|
Response 2. |
53 – 57 |
|
Response 3. |
58 – 62 |
|
Response 4. |
63 – 67 |
|
Response 5. |
68 – 72 |
|
Response 6. |
73 – 77 |
|
Response 7. |
78 – 82 |
|
Response 8. |
83 – 87 |
|
Response 9. |
88 – 92 |
|
Response 10. |
93 – 97 |
|
Response 11. |
98 – 102 |
|
Response 12. |
103 – 107 |
|
Response 13. |
108 – 112 |
|
Response 14. |
113 – 117 |
|
Response 15. |
118 – 122 |
|
Response 16. |
123 – 215 |
|
Request 2. |
216 – 308 |
|
Request 3. |
309 – 401 |
|
Request 4. |
402 – 494 |
|
Request 5. |
495 – 587 |
|
Request 6. |
588 – 680 |
|
Request 7. |
681 – 773 |
|
Request 8. |
HDF5
The HDF5 format description for observations is omitted due to length. You can
output the format from command-line. For example, if the file observ.hdf5
contains DMPACK observations:
$ h5dump -H -A 0 observ.hdf5
JSON
{
"id": "9273ab62f9a349b6a4da6dd274ee83e7",
"node_id": "dummy-node",
"sensor_id": "dummy-sensor",
"target_id": "dummy-target",
"name": "dummy-observ",
"timestamp": "1970-01-01T00:00:00.000000+00:00",
"source": "dmdummy",
"device": "/dev/null",
"priority": 0,
"error": 0,
"next": 0,
"nreceivers": 2,
"nrequests": 1,
"receivers": [
"dummy-receiver1",
"dummy-receiver2"
],
"requests": [
{
"name": "dummy",
"timestamp": "1970-01-01T00:00:00.000000+00:00",
"request": "?\\n",
"response": "10.0\\n",
"delimiter": "\\n",
"pattern": "(?<sample>[-+0-9\\.]+)",
"delay": 0,
"error": 0,
"mode": 0,
"retries": 0,
"state": 0,
"timeout": 0,
"nresponses": 1,
"responses": [
{
"name": "sample",
"unit": "none",
"type": 0,
"error": 0,
"value": 10.0
}
]
}
]
}
Lua
{
id = "9273ab62f9a349b6a4da6dd274ee83e7",
node_id = "dummy-node",
sensor_id = "dummy-sensor",
target_id = "dummy-target",
name = "dummy-observ",
timestamp = "1970-01-01T00:00:00.000000+00:00",
source = "dmdummy",
device = "/dev/null",
error = 0,
next = 1,
priority = 0,
nreceivers = 2,
nrequests = 1,
receivers = { "dummy-receiver1", "dummy-receiver2" },
requests = {
{
name = "dummy",
timestamp = "1970-01-01T00:00:00.000000+00:00",
request = "?\\n",
response = "10.0\\n",
pattern = "(?<sample>[-+0-9\\.]+)",
delimiter = "\\n",
delay = 0,
error = 0,
mode = 0,
retries = 0,
state = 0,
timeout = 0,
nresponses = 1,
responses = {
{
name = "sample",
unit = "none",
type = 0,
error = 0,
value = 10.0
}
}
}
}
}
Namelist
&DMOBSERV
OBSERV%ID="9273ab62f9a349b6a4da6dd274ee83e7",
OBSERV%NODE_ID="dummy-node",
OBSERV%SENSOR_ID="dummy-sensor",
OBSERV%TARGET_ID="dummy-target",
OBSERV%NAME="dummy-observ",
OBSERV%TIMESTAMP="1970-01-01T00:00:00.000000+00:00",
OBSERV%SOURCE="dmdummy",
OBSERV%PATH="/dev/null",
OBSERV%PRIORITY=0,
OBSERV%ERROR=0,
OBSERV%NEXT=0,
OBSERV%NRECEIVERS=2,
OBSERV%NREQUESTS=1,
OBSERV%RECEIVERS="dummy-receiver1","dummy-receiver2",
OBSERV%REQUESTS(1)%NAME="dummy",
OBSERV%REQUESTS(1)%TIMESTAMP="1970-01-01T00:00:00.000000+00:00",
OBSERV%REQUESTS(1)%REQUEST="?\n",
OBSERV%REQUESTS(1)%RESPONSE="10.0\n",
OBSERV%REQUESTS(1)%DELIMITER="\n",
OBSERV%REQUESTS(1)%PATTERN="(?<sample>[-+0-9\.]+)",
OBSERV%REQUESTS(1)%DELAY=0,
OBSERV%REQUESTS(1)%ERROR=0,
OBSERV%REQUESTS(1)%MODE=0,
OBSERV%REQUESTS(1)%RETRIES=0,
OBSERV%REQUESTS(1)%STATE=0,
OBSERV%REQUESTS(1)%TIMEOUT=0,
OBSERV%REQUESTS(1)%NRESPONSES=1,
OBSERV%REQUESTS(1)%RESPONSES(1)%NAME="sample",
OBSERV%REQUESTS(1)%RESPONSES(1)%UNIT="none",
OBSERV%REQUESTS(1)%RESPONSES(1)%TYPE=0,
OBSERV%REQUESTS(1)%RESPONSES(1)%ERROR=0,
OBSERV%REQUESTS(1)%RESPONSES(1)%VALUE=10.00000000000000,
/
Sensor
Derived Type
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
Sensor id ( |
|
string |
32 |
Node id ( |
|
integer |
4 |
|
|
string |
32 |
Sensor name. |
|
string |
32 |
Sensor serial number (optional). |
|
string |
32 |
Sensor description (optional). |
|
double |
8 |
Sensor x or easting (optional). |
|
double |
8 |
Sensor y or northing (optional). |
|
double |
8 |
Sensor z or elevation (optional). |
|
double |
8 |
Sensor longitude (optional). |
|
double |
8 |
Sensor latitude (optional). |
|
double |
8 |
Sensor elevation (optional). |
CSV
Column | Attribute | Description |
---|---|---|
1 |
|
Sensor id. |
2 |
|
Node id. |
3 |
|
Sensor type. |
4 |
|
Sensor name. |
5 |
|
Sensor serial number. |
6 |
|
Sensor description. |
7 |
|
Sensor x or easting. |
8 |
|
Sensor y or northing. |
9 |
|
Sensor z or elevation. |
10 |
|
Sensor longitude. |
11 |
|
Sensor latitude. |
12 |
|
Sensor elevation. |
GeoJSON
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 0.0, 0.0, 0.0 ]
},
"properties": {
"type": "sensor",
"properties": {
"id": "dummy-sensor",
"node_id": "dummy-node",
"type": 3,
"name": "Dummy Sensor",
"sn": "00000",
"meta": "Description",
"x": 0.0,
"y": 0.0,
"z": 0.0,
"longitude": 0.0,
"latitude": 0.0,
"elevation": 0.0
}
}
}
HDF5
DATASET "sensor_type" {
DATATYPE H5T_COMPOUND {
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "id";
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "node_id";
H5T_STD_I32LE "type";
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "name";
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "sn";
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "meta";
H5T_IEEE_F64LE "x";
H5T_IEEE_F64LE "y";
H5T_IEEE_F64LE "z";
H5T_IEEE_F64LE "longitude";
H5T_IEEE_F64LE "latitude";
H5T_IEEE_F64LE "elevation";
}
DATASPACE SIMPLE { ( 8 ) / ( 8 ) }
}
JSON
{
"id": "dummy-sensor",
"node_id": "dummy-node",
"type": 3,
"name": "Dummy Sensor",
"sn": "00000",
"meta": "Description",
"x": 0.0,
"y": 0.0,
"z": 0.0,
"longitude": 0.0,
"latitude": 0.0,
"elevation": 0.0
}
Namelist
&DMSENSOR
SENSOR%ID="dummy-sensor",
SENSOR%NODE_ID="dummy-node",
SENSOR%TYPE=3,
SENSOR%NAME="Dummy Sensor",
SENSOR%SN="00000",
SENSOR%META="Description",
SENSOR%X=0.0,
SENSOR%Y=0.0,
SENSOR%Z=0.0,
SENSOR%LONGITUDE=0.0,
SENSOR%LATITUDE=0.0,
SENSOR%ELEVATION=0.0
/
Target
Derived Type
Attribute | Type | Size | Description |
---|---|---|---|
|
string |
32 |
Target id ( |
|
string |
32 |
Target name. |
|
string |
32 |
Target description (optional). |
|
integer |
4 |
Target state (optional). |
|
double |
8 |
Target x or easting (optional). |
|
double |
8 |
Target y or northing (optional). |
|
double |
8 |
Target z or elevation (optional). |
|
double |
8 |
Target longitude (optional). |
|
double |
8 |
Target latitude (optional). |
|
double |
8 |
Target elevation (optional). |
CSV
Column | Attribute | Description |
---|---|---|
1 |
|
Target id. |
2 |
|
Target name. |
3 |
|
Target description. |
4 |
|
Target state. |
5 |
|
Target x or easting. |
6 |
|
Target y or northing. |
7 |
|
Target z or elevation. |
8 |
|
Target longitude. |
9 |
|
Target latitude. |
10 |
|
Target elevation. |
GeoJSON
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ 0.0, 0.0, 0.0 ]
},
"properties": {
"type": "target",
"properties": {
"id": "dummy-target",
"name": "Dummy Target",
"meta": "Description",
"state": 0,
"x": 0.0,
"y": 0.0,
"z": 0.0,
"longitude": 0.0,
"latitude": 0.0,
"elevation": 0.0
}
}
}
HDF5
DATASET "target_type" {
DATATYPE H5T_COMPOUND {
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "id";
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "name";
H5T_ARRAY { [32] H5T_STRING {
STRSIZE 1;
STRPAD H5T_STR_SPACEPAD;
CSET H5T_CSET_ASCII;
CTYPE H5T_C_S1;
} } "meta";
H5T_STD_I32LE "state";
H5T_IEEE_F64LE "x";
H5T_IEEE_F64LE "y";
H5T_IEEE_F64LE "z";
H5T_IEEE_F64LE "longitude";
H5T_IEEE_F64LE "latitude";
H5T_IEEE_F64LE "elevation";
}
DATASPACE SIMPLE { ( 8 ) / ( 8 ) }
}
JSON
{
"id": "dummy-target",
"name": "Dummy Target",
"meta": "Description",
"state": 0,
"x": 0.0,
"y": 0.0,
"z": 0.0,
"longitude": 0.0,
"latitude": 0.0,
"elevation": 0.0
}
Namelist
&DMTARGET
TARGET%ID="dummy-target",
TARGET%NAME="Dummy Target",
TARGET%META="Description",
TARGET%STATE=0,
TARGET%X=0.0,
TARGET%Y=0.0,
TARGET%Z=0.0,
TARGET%LONGITUDE=0.0,
TARGET%LATITUDE=0.0,
TARGET%ELEVATION=0.0
/