0.1.1#
Updated variable array access and other improvements.
Added#
tecio.ZoneList/tecio.VariableListcontainer types forRead.zoneandReadZone.variable, with slicing and exact-name lookup.ReadZone.get_array(key)for direct array access by index, name, or list of names.tec2matcommand line tool to convert input Tecplot file to MATLAB compatible.matfile format. Importable as a MATLAB structure with all zones, variables, and metadata.
Changed#
Read.zone/ReadZone.variablenow returnZoneList/VariableListinstead of plainlist.Read tests rewritten to match writer-test conventions (fixtures,
pytest.raises, class grouping).
Fixed#
Legacy style unstructured zone headers in ASCII files use different keywords for data packing and zone type resulting in
teciointerpreting these as single point ordered zone. These special cases have been added.
Removed#
Breaking: attribute-style variable access (
zone.x) — was broken (infinite recursion) on SZL and case-insensitive on PLT. Usezone.get_array("x")instead.