How to load a raw timestream from a session ID #360
-
Hi All! For a novice on sotodolib: Does anyone have a code example of how to access a raw timestream (including converting to pA) from a session ID? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi sam! If you have the stream-id and the session-id, you can use the
If the data has already been transferred and you are running this on a server that's not the smurf-server, you need to set the base directory where the timestreams are saved, and pass that in as the
If you have a G3tSmurf database setup, there are other ways that we use to interact with archival data, which are documented here. Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hi sam! If you have the stream-id and the session-id, you can use the
load_session
function insodetlib.stream
to load an axis manager. This is loaded into the basesodetlib
package, so you can do something like:If the data has already been transferred and you are running this on a server that's not the smurf-server, you need to set the base directory where the timestreams are saved, and pass that in as the
base_dir
kwarg. For example:If you have a G3tSmurf database setup, the…