|
static void | write (const TimeSeriesTable_< T > &table, const std::string &fileName) |
| Write a STO file. More...
|
|
static const std::string | tableString () |
| Key used for table associative array returned/accepted by write/read. More...
|
|
static std::string | dataTypeName () |
| Name of the data type T (template parameter). More...
|
|
static void | writeFile (const InputTables &tables, const std::string &fileName) |
| Write a collection of tables to the given file. More...
|
|
static std::string | findExtension (const std::string &filename) |
| Find the extension from a filename. More...
|
|
static std::vector< std::string > | getNextLine (std::istream &stream, const std::string &delims) |
| Get the next line from the stream and tokenize/split the line using the given delimiters. More...
|
|
static std::vector< std::string > | tokenize (const std::string &str, const std::string &delims) |
| Tokenize/split a given string using the given delimiters. More...
|
|
static std::shared_ptr< DataAdapter > | createAdapterFromExtension (const std::string &fileName) |
| Create a concerte FileAdapter based on the extension of the passed in file and return it. More...
|
|
static bool | registerDataAdapter (const std::string &identifier, const DataAdapter &adapter) |
| Register a concrete DataAdapter by its unique string identifier. More...
|
|
template<typename T>
class OpenSim::STOFileAdapter_< T >
STOFileAdapter is a DelimFileAdapter that presets the delimiters appropriately for STO files.
The format of the file is as follows:
.................................
.................................
........ <metadata> .............
.................................
.................................
endheader
time colname1 colname2 ..........
.................................
.................................
............ <data-rows> ........
.................................
.................................
For example a TimeSeriesTable_<SimTK::Vec3> could look like:
units=m
DataType=Vec3
endheader
time r_shoulder l_shoulder r_leg l_leg
0.1 0.11,0.22,0.33 0.44,0.55,0.66 0.77,0.88,0.99 0.10,0.11,0.12
0.2 0.22,0.44,0.66 0.88,0.99,0.35 0.75,0.65,0.43 0.47,0.57,0.67
Columns are delimited by tab character. Elements within a column are delimited by comma character. STOFileAdapter allows reading/writing following tables:
TimeSeriesTable_<double> | DataType=double |
TimeSeriesTable_<SimTK::Vec2> | DataType=Vec2 |
TimeSeriesTable_<SimTK::Vec3> | DataType=Vec3 |
TimeSeriesTable_<SimTK::Vec4> | DataType=Vec4 |
TimeSeriesTable_<SimTK::Vec5> | DataType=Vec5 |
TimeSeriesTable_<SimTK::Vec6> | DataType=Vec6 |
TimeSeriesTable_<SimTK::Vec7> | DataType=Vec7 |
TimeSeriesTable_<SimTK::Vec8> | DataType=Vec8 |
TimeSeriesTable_<SimTK::Vec9> | DataType=Vec9 |
TimeSeriesTable_<SimTK::Vec<10>> | DataType=Vec10 |
TimeSeriesTable_<SimTK::Vec<11>> | DataType=Vec11 |
TimeSeriesTable_<SimTK::Vec<12>> | DataType=Vec12 |
TimeSeriesTable_<SimTK::UnitVec3> | DataType=UnitVec3 |
TimeSeriesTable_<SimTK::Quaternion> | DataType=Quaternion |
TimeSeriesTable_<SimTK::SpatialVec> | DataType=SpatialVec |
Files contain metadata (in form of "DataType=<something>" as shown above) indicating the type of the table they contain.