Skip to content

Commit

Permalink
local coordinates not existing as a key
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelleChapuis committed Oct 24, 2023
1 parent eb41a31 commit f76e29d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/loading_data/loading_raw_ephys_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,10 @@
"source": [
"from brainbox.io.one import load_channel_locations\n",
"channels = load_channel_locations(eid, probe)\n",
"channels[probe][\"localCoordinates\"]"
"print(channels[probe].keys())\n",
"# Use the axial and lateral coordinates ; Print example first 4 channels\n",
"print(channels[probe][\"axial_um\"][0:4])\n",
"print(channels[probe][\"lateral_um\"][0:4])"
],
"metadata": {
"collapsed": false
Expand Down

0 comments on commit f76e29d

Please sign in to comment.