Changes between Initial Version and Version 1 of UCERF3TimeDepRateExtractor


Ignore:
Timestamp:
Jun 2, 2015, 1:06:14 PM (9 years ago)
Author:
Kevin Milner
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UCERF3TimeDepRateExtractor

    v1 v1  
     1This is a command line utility for extracting time dependent probabilities and equivalent annualized rates from a UCERF3 Fault System Solution.
     2
     3TODO: download instructions
     4
     5Usage:
     6{{{
     7usage: TimeDepRateExtractor [-a] [-b] -d <arg> [-h <arg>] -o <arg> -p
     8       <arg> -s <arg> [-y <arg>]
     9 -a,--filter-aftershocks               Apply aftershock filter
     10 -b,--binary                           Output equivalent annualized rates
     11                                       binary file in FSS rates.bin
     12                                       format. Otherwise CSV format.
     13 -d,--duration <arg>                   Forecast duration in years.
     14 -h,--hist-open-interval-basis <arg>   Year basis for historical
     15                                       openinterval. Default: 1875
     16 -o,--output-file <arg>                Output file name
     17 -p,--prob-model <arg>                 Probability model. One or more of
     18                                       U3_PREF_BLEND,POISSON,BPT_LOW,BPT_M
     19                                       ID,BPT_HIGH. Multiple entries can
     20                                       be comma separated.
     21 -s,--solution <arg>                   Input Fault System Solution zip
     22                                       file
     23 -y,--start-year <arg>                 Forecast start year. Default: 2014
     24
     25}}}
     26
     27Examples:
     28
     29To create a CSV file with probabilities and equivalent annualized rates for for each probability model and a 5 year duration:
     30
     31{{{
     32java -jar TimeDepRateExtractor.jar --duration 5 --start-year 2014 --solution /path/to/sol.zip --hist-open-interval-basis 1875 --prob-model  U3_PREF_BLEND,POISSON,BPT_LOW,BPT_MID,BPT_HIGH
     33}}}