Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
XSF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
fleet
formats
XSF
Commits
a4175b0c
Commit
a4175b0c
authored
Nov 13, 2020
by
Cyrille Poncelet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update in vendor groups for reson files
parent
00f2efdc
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
369 additions
and
981 deletions
+369
-981
sources/xsf.generator/Environment.json
sources/xsf.generator/Environment.json
+25
-751
sources/xsf.generator/Platform.json
sources/xsf.generator/Platform.json
+21
-83
sources/xsf.generator/Sonar.json
sources/xsf.generator/Sonar.json
+320
-147
sources/xsf.generator/src/main/java/fr/ifremer/fr/xsf/generator/model/SCAttributeAdapter.java
...fr/ifremer/fr/xsf/generator/model/SCAttributeAdapter.java
+3
-0
No files found.
sources/xsf.generator/Environment.json
View file @
a4175b0c
This diff is collapsed.
Click to expand it.
sources/xsf.generator/Platform.json
View file @
a4175b0c
...
...
@@ -1525,32 +1525,7 @@
}
]
},
{
"name"
:
"samples_array_count"
,
"dims"
:
[
"time"
],
"type"
:
"ushort"
,
"attributes"
:
[
{
"name"
:
"long_name"
,
"value"
:
"number of KM binary samples"
}
]
},
{
"name"
:
"bytes_per_sample_count"
,
"dims"
:
[
"time"
],
"type"
:
"ushort"
,
"attributes"
:
[
{
"name"
:
"long_name"
,
"value"
:
"number of bytes per sample"
}
]
},
{
"name"
:
"dgm_version"
,
"dims"
:
[
...
...
@@ -2256,24 +2231,7 @@
],
"types"
:
[],
"attributes"
:
[],
"variables"
:
[
{
"name"
:
"system_serial_number"
,
"dims"
:
[
"runtime_count"
],
"type"
:
"ushort"
,
"attributes"
:
[
{
"name"
:
"long_name"
,
"value"
:
"System Serial Number"
},
{
"name"
:
"valid_min"
,
"value"
:
"100"
}
]
},
"variables"
:
[
{
"name"
:
"time"
,
"comment"
:
"Timestamp at which each ping occurred. "
,
...
...
@@ -2907,45 +2865,6 @@
}
]
},
{
"name"
:
"system_id"
,
"dims"
:
[
"runtime_count"
],
"type"
:
"ubyte"
,
"attributes"
:
[
{
"name"
:
"long_name"
,
"value"
:
"system id"
}
]
},
{
"name"
:
"info"
,
"dims"
:
[
"runtime_count"
],
"type"
:
"ushort"
,
"attributes"
:
[
{
"name"
:
"long_name"
,
"value"
:
"info"
}
]
},
{
"name"
:
"status"
,
"dims"
:
[
"runtime_count"
],
"type"
:
"ushort"
,
"attributes"
:
[
{
"name"
:
"long_name"
,
"value"
:
"status"
}
]
},
{
"name"
:
"runtime_txt"
,
"dims"
:
[
...
...
@@ -3194,6 +3113,25 @@
}
]
},
{
"name"
:
"water_line_vertical_offset"
,
"dims"
:
[
"installation"
],
"comment"
:
"Vertical offset from reference point to waterline"
,
"type"
:
"float"
,
"attributes"
:
[
{
"name"
:
"unit"
,
"value"
:
"m"
},
{
"name"
:
"long_name"
,
"value"
:
"Vertical offset from reference point to waterline in meters. "
}
]
},
{
"name"
:
"MRU_time_delay"
,
"dims"
:
[
...
...
sources/xsf.generator/Sonar.json
View file @
a4175b0c
This diff is collapsed.
Click to expand it.
sources/xsf.generator/src/main/java/fr/ifremer/fr/xsf/generator/model/SCAttributeAdapter.java
View file @
a4175b0c
...
...
@@ -30,6 +30,8 @@ public class SCAttributeAdapter {
case
"short"
:
case
"ushort"
:
return
Arrays
.
asList
(
String
.
format
(
"setShortFillValue(%s);"
,
formatAttribute
(
attribute
,
variable
.
getType
())));
case
"ubyte"
:
return
Arrays
.
asList
(
String
.
format
(
"setByteFillValue((byte) %s);"
,
formatAttribute
(
attribute
,
variable
.
getType
())));
case
"byte"
:
return
Arrays
.
asList
(
String
.
format
(
"setByteFillValue((byte) %s);"
,
formatAttribute
(
attribute
,
variable
.
getType
())));
case
"uint"
:
...
...
@@ -90,6 +92,7 @@ public class SCAttributeAdapter {
case
"short"
:
case
"ushort"
:
return
String
.
format
(
"(short) %s"
,
attribute
.
value
==
null
?
"0"
:
attribute
.
value
);
case
"ubyte"
:
case
"byte"
:
return
String
.
format
(
"(byte) %s"
,
attribute
.
value
==
null
?
"0"
:
attribute
.
value
);
case
"uint"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment