System.out.printf("%s%n", spec);
assert spec.section.equals(v.getShapeAsSection());
spec = ParsedSectionSpec.parseVariableSection(ncfile, "temperature(1,0:127:2)");
System.out.printf("%s%n", spec);
Section s = new Section("1,0:127:2");
assert spec.section.equals(s) : spec.section + " != " + s;
spec = ParsedSectionSpec.parseVariableSection(ncfile, "temperature(:,0:127:2)");
System.out.printf("%s%n", spec);
s = new Section("0:63,0:127:2");
assert spec.section.equals(s) : spec.section + " != " + s;
ncfile.close();
}