You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/converters/vision_converter.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,8 @@ An examplery usage can be found in the example notebook as well as in the test c
91
91
92
92
## Optional extra columns
93
93
94
-
When working with Vision Excel exports, some metadata columns (like `GUID` or `StationID`) may not always be present, especially in partial exports. The `optional_extra` feature allows you to specify columns that should be included in `extra_info` if present, but won't cause conversion failure if missing.
94
+
When working with Vision Excel exports, some metadata columns (like `GUID` or `StationID`) may not always be present, especially in partial exports.
95
+
The `optional_extra` feature allows you to specify columns that should be included in `extra_info` if present, but won't cause conversion failure if missing.
95
96
96
97
**Syntax:**
97
98
```yaml
@@ -117,7 +118,8 @@ grid:
117
118
- This feature is particularly useful for handling different Vision export configurations or versions
118
119
119
120
**Duplicate handling:**
120
-
When a column appears in both the regular `extra` list and within `optional_extra`, the regular `extra` entry takes precedence and duplicates are automatically eliminated from `optional_extra`:
121
+
When a column appears in both the regular `extra` list and within `optional_extra`,
122
+
the regular `extra` entry takes precedence and duplicates are automatically eliminated from `optional_extra`:
121
123
122
124
```yaml
123
125
extra:
@@ -129,7 +131,8 @@ extra:
129
131
- StationID # Unique optional - processed if present
130
132
```
131
133
132
-
In this example, `ID` will only be processed once (from the regular `extra` list), while `GUID` and `StationID` are processed as optional columns. This prevents duplicate data in the resulting `extra_info` and ensures consistent behavior regardless of column ordering.
134
+
In this example, `ID` will only be processed once (from the regular `extra` list), while `GUID` and `StationID` are processed as optional columns.
135
+
This prevents duplicate data in the resulting `extra_info` and ensures consistent behavior regardless of column ordering.
0 commit comments