We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We want to be able to store an aggregate disagg (e.g. typically, a mean of all disaggregations of a logic tree)
lat,, lon
levels
values
The diaggregation is a multi-dimensional matrix (typically 4 dimensions). In the example data provided the dimensions are
It is possible to have a disagg over a subset of those dimensions. It may also be possible that we have more or other dimensions (e.g. lat and lon)
sample_data.zip
For the sample data provided, the axis of the 4d disagg array are:
0
1
2
3
Similarly, bins[i] are the values of the bins for the dimension i bins[4] stores the value of the hazard level of shaking
bins[i]
i
bins[4]
vs30 = 750 location = lat: 39.000 lon:175.930 hazard_model_id = 'SLT_v8_gmm_v2_FINAL' annual probability = 0.038559172 IMT = 'SA(0.5)' agg = 'mean' deagg_SLT_v8_gmm_v2_FINAL_-39.000~175.930_750_SA(0.5)86_eps-dist-mag-trt.npy bins_SLT_v8_gmm_v2_FINAL-39.000~175.930_750_SA(0.5)_86_eps-dist-mag-trt.npy
vs30 = 400 location = lat:-42.780 lon:171.540' hazard_model_id = 'SLT_v8_gmm_v2_FINAL' annual probability = 0.019688642 IMT = 'SA(1.5)' agg = 'mean' deagg_SLT_v8_gmm_v2_FINAL_-42.780~171.540_400_SA(1.5)63_eps-dist-mag-trt.npy bins_SLT_v8_gmm_v2_FINAL-42.780~171.540_400_SA(1.5)_63_eps-dist-mag-trt.npy
The text was updated successfully, but these errors were encountered:
aggregate possibilities for Enum ["mean", "cov", "std", "0.005", "0.01", "0.025", "0.05", "0.1", "0.2", "0.3", "0.4", "0.5", "0.6", "0.7", "0.8", "0.9", "0.95", "0.975", "0.99", "0.995"]
Sorry, something went wrong.
probabilities
chrisbc
No branches or pull requests
We want to be able to store an aggregate disagg (e.g. typically, a mean of all disaggregations of a logic tree)
unique identifiers of a disaggregation are:
lat,, lon
Data to be stored
levels
in a hazard aggregationvalues
in a hazard aggregationData Structure
The diaggregation is a multi-dimensional matrix (typically 4 dimensions). In the example data provided the dimensions are
It is possible to have a disagg over a subset of those dimensions. It may also be possible that we have more or other dimensions (e.g. lat and lon)
Code References
Sample Data
sample_data.zip
For the sample data provided, the axis of the 4d disagg array are:
0
: magnitude1
: distance2
: trt3
: epsilonSimilarly,
bins[i]
are the values of the bins for the dimensioni
bins[4]
stores the value of the hazard level of shakingvs30 = 750
location = lat: 39.000 lon:175.930
hazard_model_id = 'SLT_v8_gmm_v2_FINAL'
annual probability = 0.038559172
IMT = 'SA(0.5)'
agg = 'mean'
deagg_SLT_v8_gmm_v2_FINAL_-39.000~175.930_750_SA(0.5)86_eps-dist-mag-trt.npy
bins_SLT_v8_gmm_v2_FINAL-39.000~175.930_750_SA(0.5)_86_eps-dist-mag-trt.npy
vs30 = 400
location = lat:-42.780 lon:171.540'
hazard_model_id = 'SLT_v8_gmm_v2_FINAL'
annual probability = 0.019688642
IMT = 'SA(1.5)'
agg = 'mean'
deagg_SLT_v8_gmm_v2_FINAL_-42.780~171.540_400_SA(1.5)63_eps-dist-mag-trt.npy
bins_SLT_v8_gmm_v2_FINAL-42.780~171.540_400_SA(1.5)_63_eps-dist-mag-trt.npy
The text was updated successfully, but these errors were encountered: