Skip to content

Commit

Permalink
fixed wrong header for QMode+ VisiTags
Browse files Browse the repository at this point in the history
  • Loading branch information
DrRobsAT committed Jun 11, 2024
1 parent aef8eda commit 830a734
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyceps/carto.py
Original file line number Diff line number Diff line change
Expand Up @@ -2140,9 +2140,9 @@ def import_visitag_sites(
session_index=int(site[q_sites_hdr.index('Session')]),
channel_id=int(site[q_sites_hdr.index('ChannelID')]),
coordinates=np.array(
[site[sites_hdr.index('X')],
site[sites_hdr.index('Y')],
site[sites_hdr.index('Z')]]
[site[q_sites_hdr.index('X')],
site[q_sites_hdr.index('Y')],
site[q_sites_hdr.index('Z')]]
).astype(np.float32),
avg_force=site[q_sites_hdr.index('AverageForce')],
fti=site[q_sites_hdr.index('FTI')],
Expand Down

0 comments on commit 830a734

Please sign in to comment.