diff options
| author | Roland Green <[email protected]> | 2018-09-25 14:30:56 -0400 |
|---|---|---|
| committer | Roland Green <[email protected]> | 2018-09-25 14:30:56 -0400 |
| commit | 9d3817451409c4cfc8d702a3ef36e60de658305d (patch) | |
| tree | e74277bbd232eeeb0d56020e42d369affd64295d | |
| parent | 4fe699e5fb37041a27eb9c95ae27c4f9fe6fbc27 (diff) | |
fix overflow issue with large visualizer files
| -rw-r--r-- | aerialvision/organizedata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aerialvision/organizedata.py b/aerialvision/organizedata.py index 090b90f..ea947cd 100644 --- a/aerialvision/organizedata.py +++ b/aerialvision/organizedata.py @@ -97,7 +97,7 @@ def organizedata(fileVars): 'sparse':OrganizeSparse, # Vector data with 2D index (used by DRAM access stats) 'custom':0 } - data_type_char = {int:'I', float:'f'} + data_type_char = {int:'L', float:'d'} print "Organizing data into internal format..." |
