Revision 3592 branches/gvSIG_WMSv2/extensions/extWMS/src/com/iver/cit/gvsig/fmap/layers/TimeDimension.java

View differences:

TimeDimension.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.1.2.6  2006-01-10 11:33:31  jaume
46
* Revision 1.1.2.7  2006-01-11 12:20:30  jaume
47
* *** empty log message ***
48
*
49
* Revision 1.1.2.6  2006/01/10 11:33:31  jaume
47 50
* Time dimension working against Jet Propulsion Laboratory's WMS server
48 51
*
49 52
* Revision 1.1.2.5  2006/01/09 18:10:38  jaume
......
335 338
            isGeologic = false;
336 339
        } else if (dimensionExpression.matches(regexDateExtendedForBCE)) {
337 340
            
338
        } else throw new IllegalArgumentException(dimensionExpression);
341
        } else {
342
            System.err.println("Invalid dimension expression: "+expr+" (for "+this.getName()+")");
343
            //throw new IllegalArgumentException(dimensionExpression);
344
        }
339 345
        String[] s = dimensionExpression.split("/");
340 346
        minValue = valueOf(s[0]);
341 347
        maxValue = (s.length>1) ? valueOf(s[1]) : valueOf(s[0]);

Also available in: Unified diff