pytuflow.FMTS.data_types#
- FMTS.data_types(filter_by=None)#
Returns all the available data types (result types) for the output given the filter.
The
filter_by
is an optional input that can be used to filter the return further. Available filters for theFMTS
class are:Domain filters:
1d
2d
(orpo
)rl
(or0d
)
Geometry filters:
node
channel
point
- (for 2d and rl domains only - usenode
for 1d domain)line
- (for 2d and rl domains only - usechannel
for 1d domain)polygon
(orregion
)
Location filters:
[location]
: The location to filter the data_types by.
Combine filters:
[filter1]/[filter2]/...
: (use/
to delim).
- Parameters:
filter_by (str, optional) – The string to filter the data types by.
- Returns:
The available data types.
- Return type:
list[str]
Examples