Disagg to use nshmp-haz
Redirect the disagg application to use the recently updated disagg service nshmp-haz!588 (merged)
The structure of the disagg data needed to generate the plot, summary table, and contributors table has not changed, but is nested differently in the response object. The service call changes are documented on staging.
Disagg response changes:
OLD
"response": [
{ // one member per imt
"metadata": { ... }, // verbose metadata
"data": [ ... ] // array of disagg components
},{ // one per IMT, response was array so could have
... // more than one, but never did in practice
NEW
"response": {
"metadata": { ... }, // one per response
"disaggs": [
{
"imt": { "PGA", "PGA"},
"data": [ ... ] // array of disagg components, same as above
},{
...