Skip to content
Snippets Groups Projects
Commit a2f4ed9f authored by Altekruse, Jason Morgan's avatar Altekruse, Jason Morgan
Browse files

only add index for site class to origin and shape vectors if there is more than one site class

parent feb51bf3
No related branches found
No related tags found
2 merge requests!131Production Release | nshmp-ws-static,!129Handle singleton site class dimension
...@@ -124,21 +124,24 @@ public class BoundingReaderHazardCurves extends BoundingReader<StaticDataHazardC ...@@ -124,21 +124,24 @@ public class BoundingReaderHazardCurves extends BoundingReader<StaticDataHazardC
for (int iImt = 0; iImt < netcdfData.imts().size(); iImt++) { for (int iImt = 0; iImt < netcdfData.imts().size(); iImt++) {
var imt = netcdfData.imts().get(iImt); var imt = netcdfData.imts().get(iImt);
// Build origin array, e.g [0, imt, siteClass] // origin array builder, e.g [0, imt, siteClass]
var origin = netcdf.netcdfShape().buildShape() var origin_builder = netcdf.netcdfShape().buildShape()
.add(IndexKey.IML, 0) .add(IndexKey.IML, 0)
.add(IndexKey.IMT, iImt) .add(IndexKey.IMT, iImt);
.add(IndexKey.SITE_CLASS, iSiteClass)
.reduce()
.build();
// Build shape array, e.g. [nIML, 1, 1] // shape array builder, e.g. [nIML, 1, 1]
var shape = netcdf.netcdfShape().buildShape() var shape_builder = netcdf.netcdfShape().buildShape()
.add(IndexKey.IML, netcdfData.nIml()) .add(IndexKey.IML, netcdfData.nIml())
.add(IndexKey.IMT, 1) .add(IndexKey.IMT, 1);
.add(IndexKey.SITE_CLASS, 1)
.reduce() // Only add index for siteClass if this is not a singleton dimension
.build(); if (netcdfData.siteClasses().size() > 1) {
origin_builder.add(IndexKey.SITE_CLASS, iSiteClass);
shape_builder.add(IndexKey.SITE_CLASS, 1);
}
var origin = origin_builder.reduce().build();
var shape = shape_builder.reduce().build();
try { try {
var xySequence = XySequence.create( var xySequence = XySequence.create(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment