Hi @crockpotveggies—all data is recorded to the SD card, and saved for 7 days by default, under /opt/data/archive. The easiest and most reliable thing to do may be to pull that data over SSH.
You can increase the days saved by default in the web front end settings. For a 4D with an 8GB card I wouldn’t recommend much over 60 days as the card will fill up.
Yes, rsudp will also work locally, however because it relies on UDP it is not as reliable as grabbing the data directly from disk. If you do want to try using rsudp to retrieve data and save to disk, the following settings configuration will work for you (although I recommend changing "station": "Z0000", to your own station callsign, Rxxxx). Data will be recorded to daily miniseed files (same format as on disk) in the ~/rsudp directory on your local machine:
{
"settings": {
"port": 8888,
"station": "Z0000",
"output_dir": "~/rsudp",
"debug": true},
"printdata": {
"enabled": false},
"write": {
"enabled": true,
"channels": "all"},
"plot": {
"enabled": false,
"duration": 300,
"spectrogram": true,
"fullscreen": true,
"kiosk": false,
"eq_screenshots": true,
"channels": ["HZ", "HDF"],
"deconvolve": true,
"units": "ACC"},
"forward": {
"enabled": false,
"address": "127.0.0.1",
"port": 13000,
"channels": ["EHZ"]},
"alert": {
"enabled": false,
"highpass": 0,
"lowpass": 8,
"deconvolve": false,
"units": "ACC",
"sta": 6,
"lta": 30,
"threshold": 1.581,
"reset": 1.574,
"exec": "eqAlert",
"channel": "HZ",
"win_override": false},
"alertsound": {
"enabled": false,
"mp3file": "doorbell"},
"tweets": {
"enabled": false,
"tweet_images": true,
"api_key": "n/a",
"api_secret": "n/a",
"access_token": "n/a",
"access_secret": "n/a"}
}
And of course you will need to forward data to port 8888 on your local machine by changing the UDP datacast settings in the Shake’s web front end.