package org.esa.beam.smos.ee2netcdf.variable; import com.bc.ceres.binio.CompoundData; import com.bc.ceres.binio.SequenceData; import org.esa.beam.dataio.netcdf.nc.NVariable; import ucar.ma2.Array; import java.io.IOException; class ShortStructMemberWriter extends AbstractVariableWriter { private final int memberIndex; ShortStructMemberWriter(NVariable variable, int memberIndex, int arraySize, short fillValue) { this.memberIndex = memberIndex; final short[] shortVector = VariableHelper.getShortVector(arraySize, fillValue); array = Array.factory(shortVector); this.variable = variable; } @Override public void write(CompoundData gridPointData, SequenceData btDataList, int index) throws IOException { final short gpShort = gridPointData.getShort(memberIndex); array.setShort(index, gpShort); } }