Dear Paddy, I have tested the polyphemus data from the training multidim and I can successfully get different elevations on GS 2.8.x. (On 2.9.x I had a data dir issue due to some garbage on my installation so I need to repeat the test again). What GeoServer version are you using? Can you share the getCapabilities section related to that layer? Please, let me know.
Cheers, Daniele On Tue, Apr 5, 2016 at 5:30 PM, Daniele Romagnoli < daniele.romagn...@geo-solutions.it> wrote: > Hi Paddy, > additional question on the topic: > which version of GeoServer did you use for these tests? > > Please, let me know. > Cheers, > Daniele > > On Wed, Mar 30, 2016 at 6:35 PM, Padhrig Mccarthy <pa...@ucar.edu> wrote: > >> Hi Danielle- >> >> Thanks again. If you can get the multidim training to work correctly, >> then it will prove it's a problem with my configuration. >> >> One question came to mind for me -- could this be related to the fact >> that my granules are in lambert conformal projection? The docs ( >> http://docs.geoserver.org/latest/en/user/extensions/netcdf/netcdf.html >> "Notes on Supported NetCDFs") say that NetCDF files with lat(x, y) and >> lon(x, y) are not supported. However, that's what we are using, and they >> work in all other ways. So I suspect those docs are out of date? >> >> I'm wondering if this issue might be due to the combination of the >> projection, and the use of the z dimension. Are you aware of any cases >> where the USA NOAA model output (in lambert projection) is in use, and is >> GeoServer able to return different elevation data? >> >> Best wishes, >> -Paddy. >> >> On Wed, Mar 30, 2016 at 12:14 PM, Daniele Romagnoli < >> daniele.romagn...@geo-solutions.it> wrote: >> >>> Hi Paddy, >>> I have tested elevation queries the past week for a customer and I was >>> getting proper values so I'm not sure about what's happening. >>> I'll retry with the multidim training dataset to figure out the issue in >>> the next days. >>> >>> Cheers, >>> Daniele >>> >>> >>> On Wed, Mar 30, 2016 at 5:24 PM, Padhrig Mccarthy <pa...@ucar.edu> >>> wrote: >>> >>>> Dear Danielle- >>>> >>>> Thank you for the reply. I changed the schema definition from z:Double >>>> to z:Float and it had no effect when I recreated the ImageMosaic. >>>> >>>> I looked around a little more, and I see that the polyphemus example in >>>> the GeoSolutions multidim training has the same issue -- requests for all >>>> elevations return the same data. However, in this case, the data returned >>>> is from the upper-most level. In my case the returned data is from the >>>> lower-most level. >>>> >>>> Please let me know if you can think of anything else for me to try. >>>> >>>> I've attached logs for: >>>> o Creation of the ImageMosaic Store >>>> o Publishing the layer, and enabling time and elevation dimensions >>>> o Requesting one of the valid elevations for the layer. >>>> >>>> Thank you so much for your help, >>>> >>>> -Paddy McCarthy >>>> National Center for Atmospheric Research >>>> Boulder, Colorado, USA >>>> >>>> On Tue, Mar 29, 2016 at 12:13 PM, Daniele Romagnoli < >>>> daniele.romagn...@geo-solutions.it> wrote: >>>> >>>>> Dear Paddy, >>>>> I see that your NetCDF declares the elevation (z) as float (single >>>>> precision). >>>>> >>>>> float z(z) ; >>>>> z:standard_name = "altitude" ; >>>>> z:long_name = "Specific altitude above mean sea level" ; >>>>> z:units = "km" ; >>>>> z:positive = "up" ; >>>>> z:axis = "Z" ; >>>>> >>>>> Whilst in your schema you have set: >>>>> <schema name="default" ><attributes>the_geom:Polygon, >>>>> location:String,time:java.util.Date,*z:Double*,fileDate: >>>>> java.util.Date</attributes> >>>>> >>>>> It may be the case that when the query for a specific elevation is >>>>> sent to the DB, no entries are found due to the different precision being >>>>> used. >>>>> Do you have any chance to try setting the attributes using a *z:Float* >>>>> instead and repeat your tests from scratch? >>>>> If that is the case, we can also consider checking the code to see if >>>>> it's using some range checks so that when you look for Z0, the query is >>>>> something like >>>>> "where z>= Z0-Epsilon and z <= Z0+Epsilon" (having set epsilon to >>>>> some very small number) or check what's happening in the query. >>>>> >>>>> Please, let us know. >>>>> Best Regards, >>>>> Daniele >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> On Mon, Mar 28, 2016 at 5:50 PM, Padhrig Mccarthy <pa...@ucar.edu> >>>>> wrote: >>>>> >>>>>> Dear GeoServer Users- >>>>>> >>>>>> I'm attempting to set up an ImageMosaic of NetCDF files, and I've got >>>>>> GeoServer to recognize the z dimension in my NetCDF files, but when I >>>>>> request different elevations in WMS, GeoServer alway returns data that >>>>>> corresponds to the lowest elevation in the file. Or when I make a WCS >>>>>> request, I get a NetCDF file back with all the appropriate levels, but >>>>>> the >>>>>> lowest level is again duplicated for each elevation. >>>>>> >>>>>> The main data variable in the NetCDF files is "CAT_GPML", and >>>>>> GeoServer generates a file called "CAT_GPML.properties" when I create the >>>>>> ImageMosaic store. This file looks suspect to me -- as if the levels in >>>>>> the >>>>>> NetCDF file are being interpreted incorrectly. However, the PostSQL table >>>>>> for this variable looks correct to me. >>>>>> >>>>>> Could you please take a look at my configuration and see if you can >>>>>> spot what I am doing wrong? I believe I have included all the relevant >>>>>> information below. >>>>>> >>>>>> Thank you very much for your help, >>>>>> >>>>>> Paddy McCarthy >>>>>> National Center for Atmospheric Research >>>>>> Boulder, Colorado, USA >>>>>> >>>>>> >>>>>> Here is a header dump of one of my two NetCDF files (each file >>>>>> contains a different time): >>>>>> >>>>>> netcdf lambert_sample_20160326T070000000Z_l_0064800 { >>>>>> >>>>>> dimensions: >>>>>> >>>>>> time = 1 ; >>>>>> >>>>>> x = 451 ; >>>>>> >>>>>> y = 337 ; >>>>>> >>>>>> z = 46 ; >>>>>> >>>>>> variables: >>>>>> >>>>>> double time(time) ; >>>>>> >>>>>> time:standard_name = "time" ; >>>>>> >>>>>> time:long_name = "data valid time" ; >>>>>> >>>>>> time:units = "seconds since 1970-01-01T00:00:00Z" ; >>>>>> >>>>>> time:calendar = "gregorian" ; >>>>>> >>>>>> time:axis = "T" ; >>>>>> >>>>>> time:reference_date = "2016-03-26T07:00:00Z" ; >>>>>> >>>>>> double forecast_period(time) ; >>>>>> >>>>>> forecast_period:standard_name = "forecast_period" ; >>>>>> >>>>>> forecast_period:long_name = "time interval between the forecast >>>>>> reference time and the valid time" ; >>>>>> >>>>>> forecast_period:units = "seconds" ; >>>>>> >>>>>> double forecast_reference_time(time) ; >>>>>> >>>>>> forecast_reference_time:standard_name = "forecast_reference_time" ; >>>>>> >>>>>> forecast_reference_time:long_name = "the time of the analysis from >>>>>> which the forecast was made" ; >>>>>> >>>>>> forecast_reference_time:units = "seconds since 1970-01-01T00:00:00Z" ; >>>>>> >>>>>> forecast_reference_time:calendar = "gregorian" ; >>>>>> >>>>>> forecast_reference_time:reference_date = "2016-03-25T13:00:00Z" ; >>>>>> >>>>>> float x(x) ; >>>>>> >>>>>> x:standard_name = "projection_x_coordinate" ; >>>>>> >>>>>> x:units = "km" ; >>>>>> >>>>>> x:axis = "X" ; >>>>>> >>>>>> float y(y) ; >>>>>> >>>>>> y:standard_name = "projection_y_coordinate" ; >>>>>> >>>>>> y:units = "km" ; >>>>>> >>>>>> y:axis = "Y" ; >>>>>> >>>>>> float lat(y, x) ; >>>>>> >>>>>> lat:standard_name = "latitude" ; >>>>>> >>>>>> lat:units = "degrees_north" ; >>>>>> >>>>>> float lon(y, x) ; >>>>>> >>>>>> lon:standard_name = "longitude" ; >>>>>> >>>>>> lon:units = "degrees_east" ; >>>>>> >>>>>> float z(z) ; >>>>>> >>>>>> z:standard_name = "altitude" ; >>>>>> >>>>>> z:long_name = "Specific altitude above mean sea level" ; >>>>>> >>>>>> z:units = "km" ; >>>>>> >>>>>> z:positive = "up" ; >>>>>> >>>>>> z:axis = "Z" ; >>>>>> >>>>>> int grid_mapping ; >>>>>> >>>>>> grid_mapping:grid_mapping_name = "lambert_conformal_conic" ; >>>>>> >>>>>> grid_mapping:longitude_of_central_meridian = -95.f ; >>>>>> >>>>>> grid_mapping:latitude_of_projection_origin = 25.f ; >>>>>> >>>>>> grid_mapping:standard_parallel = 25.f ; >>>>>> >>>>>> float CAT_GPML(time, z, y, x) ; >>>>>> >>>>>> CAT_GPML:valid_min = 0.f ; >>>>>> >>>>>> CAT_GPML:valid_max = 0.578f ; >>>>>> >>>>>> CAT_GPML:_FillValue = -9999.f ; >>>>>> >>>>>> CAT_GPML:long_name = "Clear Air Turbulence (CAT)" ; >>>>>> >>>>>> CAT_GPML:units = "%" ; >>>>>> >>>>>> CAT_GPML:coordinates = "lon lat" ; >>>>>> >>>>>> CAT_GPML:grid_mapping = "grid_mapping" ; >>>>>> >>>>>> >>>>>> // global attributes: >>>>>> >>>>>> :Conventions = "CF-1.6" ; >>>>>> >>>>>> :source = "US NWS - NCEP - Aviation Weather Center" ; >>>>>> >>>>>> :title = "Rapid Refresh (RAP)" ; >>>>>> >>>>>> :history = "Converted to NetCDF from Grib2 with Grib2toNc from >>>>>> NCAR-RAL." ; >>>>>> >>>>>> } >>>>>> >>>>>> >>>>>> Here is my indexer.xml file: >>>>>> >>>>>> Boulder, Colorado, USA >>>>>> >>>>>> <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> >>>>>> >>>>>> <Indexer> >>>>>> >>>>>> <domains> >>>>>> >>>>>> <domain name="time"> >>>>>> >>>>>> <attributes><attribute>time</attribute></attributes> >>>>>> >>>>>> </domain> >>>>>> >>>>>> <domain name="elevation"> >>>>>> >>>>>> <attributes><attribute>z</attribute></attributes> >>>>>> >>>>>> </domain> >>>>>> >>>>>> <domain name="fileDate"> >>>>>> >>>>>> <attributes><attribute >>>>>> ref="fileDateCollector">fileDate</attribute></attributes> >>>>>> >>>>>> </domain> >>>>>> >>>>>> </domains> >>>>>> >>>>>> <schemas> >>>>>> >>>>>> <schema name="default" > >>>>>> <attributes>the_geom:Polygon,location:String,time:java.util.Date,z:Double,fileDate:java.util.Date</attributes> >>>>>> >>>>>> </schema> >>>>>> >>>>>> </schemas> >>>>>> >>>>>> <coverages> >>>>>> >>>>>> <coverage> >>>>>> >>>>>> <name>CAT_GPML</name> >>>>>> >>>>>> <schema ref="default"></schema> >>>>>> >>>>>> <domains> >>>>>> >>>>>> <domain ref="time" /> >>>>>> >>>>>> <domain ref="elevation" /> >>>>>> >>>>>> <domain ref="fileDate" /> >>>>>> >>>>>> </domains> >>>>>> >>>>>> </coverage> >>>>>> >>>>>> </coverages> >>>>>> >>>>>> <collectors> >>>>>> >>>>>> <collector name="fileDateCollector"> >>>>>> >>>>>> <value>[0-9]{8}T[0-9]{9}Z</value> >>>>>> >>>>>> <spi>TimestampFileNameExtractorSPI</spi> >>>>>> >>>>>> <mapped>fileDate</mapped> >>>>>> >>>>>> </collector> >>>>>> >>>>>> </collectors> >>>>>> >>>>>> <parameters> >>>>>> >>>>>> <parameter name="AbsolutePath" value="true" /> >>>>>> >>>>>> </parameters> >>>>>> >>>>>> </Indexer> >>>>>> >>>>>> >>>>>> Here is the .properties file generated for the main data variable in >>>>>> the NetCDF file: >>>>>> >>>>>> #-Automagically created from GeoTools- >>>>>> >>>>>> #Fri Mar 25 19:27:48 GMT 2016 >>>>>> >>>>>> Levels=13545.086805555557,13545.08754185268 >>>>>> >>>>>> Heterogeneous=false >>>>>> >>>>>> AdditionalDomainAttributes=fileDate(fileDate) >>>>>> >>>>>> ElevationAttribute=z >>>>>> >>>>>> TimeAttribute=time >>>>>> >>>>>> AbsolutePath=true >>>>>> >>>>>> Name=CAT_GPML >>>>>> >>>>>> TypeName=CAT_GPML >>>>>> >>>>>> Caching=false >>>>>> >>>>>> ExpandToRGB=false >>>>>> >>>>>> LocationAttribute=location >>>>>> >>>>>> SuggestedSPI=org.geotools.imageio.netcdf.NetCDFImageReaderSpi >>>>>> >>>>>> CheckAuxiliaryMetadata=false >>>>>> >>>>>> LevelsNum=1 >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> Finally, these are the contents of the PostSQL table "CAT_GPML": >>>>>> "fid"|"the_geom"|"location"|"time"|"z"|"fileDate" >>>>>> 1|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|0.03|"2016-03-18 10:00:00" >>>>>> 2|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|0.304|"2016-03-18 10:00:00" >>>>>> 3|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|0.609|"2016-03-18 10:00:00" >>>>>> 4|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|0.914|"2016-03-18 10:00:00" >>>>>> 5|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|1.219|"2016-03-18 10:00:00" >>>>>> 6|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|1.524|"2016-03-18 10:00:00" >>>>>> 7|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|1.828|"2016-03-18 10:00:00" >>>>>> 8|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|2.133|"2016-03-18 10:00:00" >>>>>> 9|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|2.438|"2016-03-18 10:00:00" >>>>>> 10|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|2.743|"2016-03-18 10:00:00" >>>>>> 11|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|3.048|"2016-03-18 10:00:00" >>>>>> 12|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|3.352|"2016-03-18 10:00:00" >>>>>> 13|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|3.657|"2016-03-18 10:00:00" >>>>>> 14|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|3.962|"2016-03-18 10:00:00" >>>>>> 15|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|4.267|"2016-03-18 10:00:00" >>>>>> 16|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|4.572|"2016-03-18 10:00:00" >>>>>> 17|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|4.876|"2016-03-18 10:00:00" >>>>>> 18|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|5.181|"2016-03-18 10:00:00" >>>>>> 19|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|5.486|"2016-03-18 10:00:00" >>>>>> 20|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|5.791|"2016-03-18 10:00:00" >>>>>> 21|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|6.096|"2016-03-18 10:00:00" >>>>>> 22|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|6.4|"2016-03-18 10:00:00" >>>>>> 23|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|6.705|"2016-03-18 10:00:00" >>>>>> 24|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|7.01|"2016-03-18 10:00:00" >>>>>> 25|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|7.315|"2016-03-18 10:00:00" >>>>>> 26|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|7.62|"2016-03-18 10:00:00" >>>>>> 27|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|7.924|"2016-03-18 10:00:00" >>>>>> 28|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|8.229|"2016-03-18 10:00:00" >>>>>> 29|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|8.534|"2016-03-18 10:00:00" >>>>>> 30|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|8.839|"2016-03-18 10:00:00" >>>>>> 31|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|9.144|"2016-03-18 10:00:00" >>>>>> 32|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|9.448|"2016-03-18 10:00:00" >>>>>> 33|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|9.753|"2016-03-18 10:00:00" >>>>>> 34|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|10.058|"2016-03-18 10:00:00" >>>>>> 35|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|10.363|"2016-03-18 10:00:00" >>>>>> 36|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|10.668|"2016-03-18 10:00:00" >>>>>> 37|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|10.972|"2016-03-18 10:00:00" >>>>>> 38|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|11.277|"2016-03-18 10:00:00" >>>>>> 39|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|11.582|"2016-03-18 10:00:00" >>>>>> 40|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|11.887|"2016-03-18 10:00:00" >>>>>> 41|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|12.192|"2016-03-18 10:00:00" >>>>>> 42|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|12.496|"2016-03-18 10:00:00" >>>>>> 43|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|12.801|"2016-03-18 10:00:00" >>>>>> 44|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|13.106|"2016-03-18 10:00:00" >>>>>> 45|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|13.411|"2016-03-18 10:00:00" >>>>>> 46|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160318T100000000Z_l_0064800.nc"|"2016-03-18 >>>>>> 10:00:00"|13.716|"2016-03-18 10:00:00" >>>>>> 47|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|0.03|"2016-03-26 07:00:00" >>>>>> 48|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|0.304|"2016-03-26 07:00:00" >>>>>> 49|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|0.609|"2016-03-26 07:00:00" >>>>>> 50|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|0.914|"2016-03-26 07:00:00" >>>>>> 51|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|1.219|"2016-03-26 07:00:00" >>>>>> 52|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|1.524|"2016-03-26 07:00:00" >>>>>> 53|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|1.828|"2016-03-26 07:00:00" >>>>>> 54|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|2.133|"2016-03-26 07:00:00" >>>>>> 55|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|2.438|"2016-03-26 07:00:00" >>>>>> 56|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|2.743|"2016-03-26 07:00:00" >>>>>> 57|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|3.048|"2016-03-26 07:00:00" >>>>>> 58|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|3.352|"2016-03-26 07:00:00" >>>>>> 59|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|3.657|"2016-03-26 07:00:00" >>>>>> 60|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|3.962|"2016-03-26 07:00:00" >>>>>> 61|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|4.267|"2016-03-26 07:00:00" >>>>>> 62|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|4.572|"2016-03-26 07:00:00" >>>>>> 63|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|4.876|"2016-03-26 07:00:00" >>>>>> 64|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|5.181|"2016-03-26 07:00:00" >>>>>> 65|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|5.486|"2016-03-26 07:00:00" >>>>>> 66|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|5.791|"2016-03-26 07:00:00" >>>>>> 67|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|6.096|"2016-03-26 07:00:00" >>>>>> 68|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|6.4|"2016-03-26 07:00:00" >>>>>> 69|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|6.705|"2016-03-26 07:00:00" >>>>>> 70|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|7.01|"2016-03-26 07:00:00" >>>>>> 71|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|7.315|"2016-03-26 07:00:00" >>>>>> 72|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|7.62|"2016-03-26 07:00:00" >>>>>> 73|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|7.924|"2016-03-26 07:00:00" >>>>>> 74|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|8.229|"2016-03-26 07:00:00" >>>>>> 75|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|8.534|"2016-03-26 07:00:00" >>>>>> 76|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|8.839|"2016-03-26 07:00:00" >>>>>> 77|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|9.144|"2016-03-26 07:00:00" >>>>>> 78|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|9.448|"2016-03-26 07:00:00" >>>>>> 79|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|9.753|"2016-03-26 07:00:00" >>>>>> 80|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|10.058|"2016-03-26 07:00:00" >>>>>> 81|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|10.363|"2016-03-26 07:00:00" >>>>>> 82|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|10.668|"2016-03-26 07:00:00" >>>>>> 83|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|10.972|"2016-03-26 07:00:00" >>>>>> 84|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|11.277|"2016-03-26 07:00:00" >>>>>> 85|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|11.582|"2016-03-26 07:00:00" >>>>>> 86|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|11.887|"2016-03-26 07:00:00" >>>>>> 87|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|12.192|"2016-03-26 07:00:00" >>>>>> 88|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|12.496|"2016-03-26 07:00:00" >>>>>> 89|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|12.801|"2016-03-26 07:00:00" >>>>>> 90|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|13.106|"2016-03-26 07:00:00" >>>>>> 91|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|13.411|"2016-03-26 07:00:00" >>>>>> 92|"010300002019D40E000100000005000000E4384E6D668049C1922469969F3222C1E4384E6D668049C126499A5AC3464E41E438CEA5EA1A454126499A5AC3464E41E438CEA5EA1A4541922469969F3222C1E4384E6D668049C1922469969F3222C1"|"/d1/nnew/GeoServer/8089_server/test_nc_mosaic_orig_height_xml/lambert_sample_20160326T070000000Z_l_0064800.nc"|"2016-03-26 >>>>>> 07:00:00"|13.716|"2016-03-26 07:00:00" >>>>>> >>>>>> >>>>>> >>>>>> ------------------------------------------------------------------------------ >>>>>> Transform Data into Opportunity. >>>>>> Accelerate data analysis in your applications with >>>>>> Intel Data Analytics Acceleration Library. >>>>>> Click to learn more. >>>>>> http://pubads.g.doubleclick.net/gampad/clk?id=278785471&iu=/4140 >>>>>> _______________________________________________ >>>>>> Geoserver-users mailing list >>>>>> Geoserver-users@lists.sourceforge.net >>>>>> https://lists.sourceforge.net/lists/listinfo/geoserver-users >>>>>> >>>>>> >>>>> >>>>> >>>>> -- >>>>> == >>>>> GeoServer Professional Services from the experts! Visit >>>>> http://goo.gl/it488V for more information. >>>>> == >>>>> >>>>> Ing. Daniele Romagnoli >>>>> Senior Software Engineer >>>>> >>>>> GeoSolutions S.A.S. >>>>> Via di Montramito 3/A >>>>> 55054 Massarosa (LU) >>>>> Italy >>>>> phone: +39 0584 962313 >>>>> fax: +39 0584 1660272 >>>>> >>>>> http://www.geo-solutions.it >>>>> http://twitter.com/geosolutions_it >>>>> >>>>> ------------------------------------------------------- >>>>> >>>>> *AVVERTENZE AI SENSI DEL D.Lgs. 196/2003* >>>>> >>>>> Le informazioni contenute in questo messaggio di posta elettronica e/o >>>>> nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il >>>>> loro utilizzo è consentito esclusivamente al destinatario del messaggio, >>>>> per le finalità indicate nel messaggio stesso. Qualora riceviate questo >>>>> messaggio senza esserne il destinatario, Vi preghiamo cortesemente di >>>>> darcene notizia via e-mail e di procedere alla distruzione del messaggio >>>>> stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso, >>>>> divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od >>>>> utilizzarlo per finalità diverse, costituisce comportamento contrario ai >>>>> principi dettati dal D.Lgs. 196/2003. >>>>> >>>>> >>>>> >>>>> The information in this message and/or attachments, is intended solely >>>>> for the attention and use of the named addressee(s) and may be >>>>> confidential >>>>> or proprietary in nature or covered by the provisions of privacy act >>>>> (Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection >>>>> Code).Any use not in accord with its purpose, any disclosure, >>>>> reproduction, >>>>> copying, distribution, or either dissemination, either whole or partial, >>>>> is >>>>> strictly forbidden except previous formal approval of the named >>>>> addressee(s). If you are not the intended recipient, please contact >>>>> immediately the sender by telephone, fax or e-mail and delete the >>>>> information in this message that has been received in error. The sender >>>>> does not give any warranty or accept liability as the content, accuracy or >>>>> completeness of sent messages and accepts no responsibility for changes >>>>> made after they were sent or for other risks which arise as a result of >>>>> e-mail transmission, viruses, etc. >>>>> >>>>> >>>> >>> >>> >>> -- >>> == >>> GeoServer Professional Services from the experts! Visit >>> http://goo.gl/it488V for more information. >>> == >>> >>> Ing. Daniele Romagnoli >>> Senior Software Engineer >>> >>> GeoSolutions S.A.S. >>> Via di Montramito 3/A >>> 55054 Massarosa (LU) >>> Italy >>> phone: +39 0584 962313 >>> fax: +39 0584 1660272 >>> >>> http://www.geo-solutions.it >>> http://twitter.com/geosolutions_it >>> >>> ------------------------------------------------------- >>> >>> *AVVERTENZE AI SENSI DEL D.Lgs. 196/2003* >>> >>> Le informazioni contenute in questo messaggio di posta elettronica e/o >>> nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il >>> loro utilizzo è consentito esclusivamente al destinatario del messaggio, >>> per le finalità indicate nel messaggio stesso. Qualora riceviate questo >>> messaggio senza esserne il destinatario, Vi preghiamo cortesemente di >>> darcene notizia via e-mail e di procedere alla distruzione del messaggio >>> stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso, >>> divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od >>> utilizzarlo per finalità diverse, costituisce comportamento contrario ai >>> principi dettati dal D.Lgs. 196/2003. >>> >>> >>> >>> The information in this message and/or attachments, is intended solely >>> for the attention and use of the named addressee(s) and may be confidential >>> or proprietary in nature or covered by the provisions of privacy act >>> (Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection >>> Code).Any use not in accord with its purpose, any disclosure, reproduction, >>> copying, distribution, or either dissemination, either whole or partial, is >>> strictly forbidden except previous formal approval of the named >>> addressee(s). If you are not the intended recipient, please contact >>> immediately the sender by telephone, fax or e-mail and delete the >>> information in this message that has been received in error. The sender >>> does not give any warranty or accept liability as the content, accuracy or >>> completeness of sent messages and accepts no responsibility for changes >>> made after they were sent or for other risks which arise as a result of >>> e-mail transmission, viruses, etc. >>> >>> >> > > > -- > == > GeoServer Professional Services from the experts! Visit > http://goo.gl/it488V for more information. > == > > Ing. Daniele Romagnoli > Senior Software Engineer > > GeoSolutions S.A.S. > Via di Montramito 3/A > 55054 Massarosa (LU) > Italy > phone: +39 0584 962313 > fax: +39 0584 1660272 > > http://www.geo-solutions.it > http://twitter.com/geosolutions_it > > ------------------------------------------------------- > > *AVVERTENZE AI SENSI DEL D.Lgs. 196/2003* > > Le informazioni contenute in questo messaggio di posta elettronica e/o > nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il > loro utilizzo è consentito esclusivamente al destinatario del messaggio, > per le finalità indicate nel messaggio stesso. Qualora riceviate questo > messaggio senza esserne il destinatario, Vi preghiamo cortesemente di > darcene notizia via e-mail e di procedere alla distruzione del messaggio > stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso, > divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od > utilizzarlo per finalità diverse, costituisce comportamento contrario ai > principi dettati dal D.Lgs. 196/2003. > > > > The information in this message and/or attachments, is intended solely for > the attention and use of the named addressee(s) and may be confidential or > proprietary in nature or covered by the provisions of privacy act > (Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection > Code).Any use not in accord with its purpose, any disclosure, reproduction, > copying, distribution, or either dissemination, either whole or partial, is > strictly forbidden except previous formal approval of the named > addressee(s). If you are not the intended recipient, please contact > immediately the sender by telephone, fax or e-mail and delete the > information in this message that has been received in error. The sender > does not give any warranty or accept liability as the content, accuracy or > completeness of sent messages and accepts no responsibility for changes > made after they were sent or for other risks which arise as a result of > e-mail transmission, viruses, etc. > > -- == GeoServer Professional Services from the experts! Visit http://goo.gl/it488V for more information. == Ing. Daniele Romagnoli Senior Software Engineer GeoSolutions S.A.S. Via di Montramito 3/A 55054 Massarosa (LU) Italy phone: +39 0584 962313 fax: +39 0584 1660272 http://www.geo-solutions.it http://twitter.com/geosolutions_it ------------------------------------------------------- *AVVERTENZE AI SENSI DEL D.Lgs. 196/2003* Le informazioni contenute in questo messaggio di posta elettronica e/o nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il loro utilizzo è consentito esclusivamente al destinatario del messaggio, per le finalità indicate nel messaggio stesso. Qualora riceviate questo messaggio senza esserne il destinatario, Vi preghiamo cortesemente di darcene notizia via e-mail e di procedere alla distruzione del messaggio stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso, divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od utilizzarlo per finalità diverse, costituisce comportamento contrario ai principi dettati dal D.Lgs. 196/2003. The information in this message and/or attachments, is intended solely for the attention and use of the named addressee(s) and may be confidential or proprietary in nature or covered by the provisions of privacy act (Legislative Decree June, 30 2003, no.196 - Italy's New Data Protection Code).Any use not in accord with its purpose, any disclosure, reproduction, copying, distribution, or either dissemination, either whole or partial, is strictly forbidden except previous formal approval of the named addressee(s). If you are not the intended recipient, please contact immediately the sender by telephone, fax or e-mail and delete the information in this message that has been received in error. The sender does not give any warranty or accept liability as the content, accuracy or completeness of sent messages and accepts no responsibility for changes made after they were sent or for other risks which arise as a result of e-mail transmission, viruses, etc.
------------------------------------------------------------------------------
_______________________________________________ Geoserver-users mailing list Geoserver-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/geoserver-users