gsissh ldas-pcdev1.ligo.caltech.edu
$ export PYTHONPATH=$PYTHONPATH:/home/losc/py
$ ipython
> import readligo as rl
> strain, meta, dq = rl.getstrain(860000000, 860005000,'H1')
> print strain
That's it! You got some data!
The variable strain
is
now a numpy array of strain values, between gps meta['start']
and
meta['stop']
. The time between samples (in seconds) can be
seen in the variable meta['dt']
. Currently, GWOSC data is sampled
at 4096 Hz. For more examples and documentation, try typing help(rl)
or follow the links below.
What's next?