On 5/28/2013 12:34 PM, Kevin Manross wrote:
Hello John,
I am still getting the same error ["Variable name (Pressure_surface)
must be unique within Group"] as before with this current WAR file
[Version 4.3.17-SNAPSHOT - 20130522.1910]
As a workaround I attempted a regex "upstream" of the "scan all
subdirectories" flag /**/. I.e.,
<collection name="FNLCollection"
spec="/glade/p/rda/data/ds083.2/grib1/2*/**/"/>
but the path was not recognized.
sorry, you cant put regular expressions in the directory names.
but if you could,
2* would mean "any number of the char '2'
you probably meant 2.*
a 2 followed by any number of chars
?