oasislmf.pytools.common.input_files¶
Attributes¶
Functions¶
|
Reads event rates from a CSV file |
|
Generate a quantile interval Dictionary based on sample size and quantile binary file |
|
Read the occurrence binary file and returns an occurrence map |
|
Returns an array of period weights for each period between 1 and no_of_periods inclusive (with no gaps). |
|
Returns an array of return periods decreasing order with no duplicates. |
Module Contents¶
- oasislmf.pytools.common.input_files.read_event_rates(run_dir, filename=EVENTRATES_FILE)[source]¶
Reads event rates from a CSV file Args:
run_dir (str | os.PathLike): Path to input files dir filename (str | os.PathLike): event rates csv file name
- Returns:
unique_event_ids (ndarray[oasis_int]): unique event ids event_rates (ndarray[oasis_float]): event rates
- oasislmf.pytools.common.input_files.read_quantile(sample_size, run_dir, filename=QUANTILE_FILE, return_empty=False)[source]¶
Generate a quantile interval Dictionary based on sample size and quantile binary file Args:
sample_size (int): Sample size run_dir (str | os.PathLike): Path to input files dir filename (str | os.PathLike): quantile binary file name return_empty (bool): return an empty intervals array regardless of the existence of the quantile binary
- Returns:
intervals (quantile_interval_dtype): Numpy array emulating a dictionary for numba
- oasislmf.pytools.common.input_files.read_occurrence(run_dir, filename=OCCURRENCE_FILE)[source]¶
Read the occurrence binary file and returns an occurrence map Args:
run_dir (str | os.PathLike): Path to input files dir filename (str | os.PathLike): occurrence binary file name
- Returns:
occ_map (ndarray[occ_map_dtype]): numpy map of event_id, period_no, occ_date_id from the occurrence file
- oasislmf.pytools.common.input_files.read_periods(no_of_periods, run_dir, filename=PERIODS_FILE)[source]¶
Returns an array of period weights for each period between 1 and no_of_periods inclusive (with no gaps). Args:
no_of_periods (int): Number of periods run_dir (str | os.PathLike): Path to input files dir filename (str | os.PathLike): periods binary file name
- Returns:
period_weights (ndarray[period_weights_dtype]): Period weights
- oasislmf.pytools.common.input_files.read_return_periods(use_return_period_file, run_dir, filename=RETURNPERIODS_FILE)[source]¶
Returns an array of return periods decreasing order with no duplicates. Args:
use_return_period_file (bool): Bool to use Return Period File run_dir (str | os.PathLike): Path to input files dir filename (str | os.PathLike): return periods binary file name
- Returns:
return_periods (ndarray[np.int32]): Return Periods use_return_period_file (bool): Bool to use Return Period File