Documentation
File Format
The GTA file format has the following features:
- GTAs can store any kind of data in multidimensional arrays.
- GTAs can optionally use simple tags to store rich metadata.
- GTAs are streamable, which allows direct reading from and writing to pipes, network sockets, and other non-seekable media.
- GTA files allow easy out-of-core data access for very large arrays.
File format documentation:
Libgta
Libgta manual, including full API reference and examples.
For autoconf-based projects, use
PKG_CHECK_MODULES([libgta], [gta >= 1.0.0])
to detect libgta.
For CMake-based projects, just use
find_package(GTA)
.
Gtatool
Use gta help
to get a list of all available commands, and
gta help <cmd>
to get help for the command
<cmd>
.