* @param property
* @param classNumber
* @return
*/
public List<Rule> equalIntervalClassification(FeatureCollection features, String property, int classNumber, boolean open) {
Classifier groups = null;
try {
final Function classify = ff.function("EqualInterval", ff.property(property), ff.literal(classNumber));
groups = (Classifier) classify.evaluate(features);
//System.out.println(groups.getSize());
if (groups instanceof RangedClassifier)