This page summarizes the archiving of some of the current CyberShake results.

v17p9

Aka the first batch of faults for the South Island. This version was archived on the RCC legacy storage in a very naive way. Every fault was saved in a single tar file. Thus every tar file has all the realizations, and for each realization we have a LF, HF and BB. This archived version needs to be cleaned to reduce the file size and have easier access to the waveforms.

v18p4

This is the batch that completes all the inland faults on the South Island. Note that both results need to be aggregated to have everything. To archive this version, we decided that we would zip the three components of the waveform for a given station into a single file. The way this was archived is very simple as it can be shown in the following block:

wdl16@dev01-quakecore:/rcc/home/projects/quakecore/cybershake/v18p4$ tree -L 4
.
├── IMs
│   └── database.db
├── metadata.json
└── Runs
    ├── AhuririR
    │   ├── AhuririR_HYP01-03_S1244
    │   │   ├── Acc
    │   │   ├── Vel
    │   │   └── xyts
    .....
    ├── Akatore
    │   ├── Akatore_HYP01-04_S1244
    │   │   ├── Acc
    │   │   ├── Vel
    │   │   └── xyts
    .....

This means that every fault has the realizations. For each realization we have an Acc, Vel and xyts directories, where we have the accelerations, velocities and e3d files respectively. Please note that only the Acc and Vel files are zipped. There is also a simple metadata.json file and the IM database for that particular version is also archived. The metadata file has the following contents:

{
    CyberShakeVersion : 'v18p4',
    Path : '/rcc/home/projects/quakecore/cybershake/v18p4',
    AccPath : '/rcc/home/projects/quakecore/cybershake/v18p4/Runs/*/*/Acc',
    VelPath : '/rcc/home/projects/quakecore/cybershake/v18p4/Runs/*/*/Vel',
    HasXYTS : 'yes',
    XYTSPath ; '/rcc/home/projects/quakecore/cybershake/v18p4/Runs/*/*/xyts',
    WaveFormSize : '423GB',
    SizePlusXYTS : '475GB',
    WaveFormCompression : 'zip'
    IMDBSize : '8.2GB',
    FaultNumber : 107,
    Description : 'Rest of South Island faults. v17p9 + v18p4 are all the faults on the SI'
}

This file was generated manually, but we could have some way to automate the generation after the archiving has finished.

v18p5

This version completes the NZ faults by adding the North Island faults. This is the next archiving to be done, and it will follow the same structure as v18p4.

TODO

Future