int dimlng;
@Override
protected void makeOptions(Parameterization config) {
super.makeOptions(config);
final IntParameter dimlatP = new IntParameter(LATDIM_ID, new GreaterEqualConstraint(1));
if(config.grab(dimlatP)) {
dimlat = dimlatP.getValue();
}
final IntParameter dimlngP = new IntParameter(LNGDIM_ID, new GreaterEqualConstraint(1));
if(config.grab(dimlngP)) {
dimlng = dimlngP.getValue();
}
config.checkConstraint(new NoDuplicateValueGlobalConstraint(dimlatP, dimlngP));
}