- Common ways to obtain GridCoordSys
private void myMethod () {GridCoordSys g =
CoordinateSystem cs;new GridCoordSys(cs, null)
CoordinateSystem cs;Formatter sbuff;new GridCoordSys(cs, sbuff)
Formatter sbuff;CoordinateSystem cs;VariableEnhanced v;GridCoordSys.makeGridCoordSys(sbuff, cs, v)
- Smart code suggestions by Codota
}
/** * true if x and y axes are CoordinateAxis1D and are regular */ @Override public boolean isRegularSpatial() { if (!isRegularSpatial(getXHorizAxis())) return false; if (!isRegularSpatial(getYHorizAxis())) return false; //if (!isRegularSpatial(getVerticalAxis())) return false; LOOK removed July 30, 2006 for WCS return true; }
/** * true if x and y axes are CoordinateAxis1D and are regular */ @Override public boolean isRegularSpatial() { if (!isRegularSpatial(getXHorizAxis())) return false; if (!isRegularSpatial(getYHorizAxis())) return false; //if (!isRegularSpatial(getVerticalAxis())) return false; LOOK removed July 30, 2006 for WCS return true; }
/** * true if x and y axes are CoordinateAxis1D and are regular */ @Override public boolean isRegularSpatial() { if (!isRegularSpatial(getXHorizAxis())) return false; if (!isRegularSpatial(getYHorizAxis())) return false; //if (!isRegularSpatial(getVerticalAxis())) return false; LOOK removed July 30, 2006 for WCS return true; }