Metadata-Version: 2.1
Name: trc-data-reader
Version: 0.1.1
Summary: A package for reading trc motion capture data.
Home-page: https://github.com/hsorby/trc-data-reader
Author: Hugh Sorby
Author-email: h.sorby@auckland.ac.nz
License: Apache 2.0
Description: 
        TRC Data Reader
        ===============
        
        Python package for reading trc motion capture data.
        TRC data reader captures the motion capture data and puts it into a dict like object.
        
        TRC data reader can read motion capture data from file or from a multi-line string.
        
        For a valid trc file or multi-line data string the following keys will be present (among others):
        
        - FileName
        - DataFormat
        - Markers
        - DataRate
        - NumFrames
        - NumMarkers
        
        Usage
        -----
        
        ::
         from trc import TRCData
        
         mocap_data = TRCData()
         mocap_data.load('/path/to/file/')
        
         num_frames = mocap_data['NumFrames']
        
Platform: UNKNOWN
Description-Content-Type: text/x-rst
