static Pattern COORDINATE_PATTERN_OLD = Pattern
.compile("([-_.\\d\\w]+):([-_.\\d\\w]+)(?::([-_.\\d\\w]+))?(?:(.+))");
public static Coordinates getCoordinatesFromReq(Map<String, Object> ps) {
String filter = (String) ps.get(DIRECTIVE_FILTER);
Coordinates c = new Coordinates();
// String coordinates = (String) ps.get("name:");
// if (coordinates != null) {
// Matcher m2 = COORDINATE_PATTERN.matcher(coordinates);
// if (!m2.matches())
// m2 = COORDINATE_PATTERN_OLD.matcher(coordinates);