Dear Geoserver-Team. I am trying to ingest netCDF as image mosaic with custom dimensions. Apparently I am getting several error messages, which are not clear for me. Currently I am testing H2, but also Postgres JNDI is not successful.
Filenaming like following, with different wavelengths and versions: knmi_333_PMD_v31_knmi_minler.nc ... Files are following CF-standard. Single File can be succesfully ingested. ImageMosaic of many files is instead failing. Has the Geoserver-team and idea about the issue causing the problem? Can anybody translate the error-message, what is the problem? Any help is appreciated. Many thanks and kind regards Miriam ---------------------------------------------- ncdump -c knmi_333_PMD_v31_knmi_minler.nc netcdf knmi_333_PMD_v31_knmi_minler { dimensions: time = UNLIMITED ; // (12 currently) longitude = 1440 ; latitude = 720 ; variables: double time(time) ; time:standard_name = "time" ; time:units = "days since 2007-01-01T00:00:00.0Z" ; time:calendar = "standard" ; time:axis = "T" ; float longitude(longitude) ; longitude:standard_name = "longitude" ; longitude:long_name = "longitude of the centre of the grid cell" ; longitude:units = "degrees_east" ; longitude:axis = "X" ; float latitude(latitude) ; latitude:standard_name = "latitude" ; latitude:long_name = "latitude of the centre of the grid cell" ; latitude:units = "degrees_north" ; latitude:axis = "Y" ; float minimum_LER(time, latitude, longitude) ; minimum_LER:long_name = "surface LER retrieved according to the MIN-LER approach" ; minimum_LER:units = "1" ; minimum_LER:_FillValue = NaNf ; minimum_LER:missing_value = NaNf ; minimum_LER:cell_methods = "month: mean wavelength: mean" ; ---------------------------------------------- datastore.properties: user=geotools passwd=geotools url=jdbc:h2:dummy database=netcdf driver=org.h2.Driver SPI=org.geotools.data.h2.H2DataStoreFactory ---------------------------------------------- indexer.xml: <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <Indexer> <domains> <domain name="wavelength"> <attributes><attribute ref="wavelengthCollector">wavelength</attribute></attributes> </domain> <domain name="time"> <attributes><attribute>time</attribute></attributes> </domain> <domain name="version"> <attributes><attribute ref="versionCollector">version</attribute></attributes> </domain> </domains> <schemas> <schema name="default" > <attributes>the_geom:Polygon,location:String,imageindex:Integer,wavelength:java.lang.Integer,time:java.util.Date,version:java.lang.String</attributes> </schema> </schemas> <coverages> <coverage> <name>minimum_LER</name> <schema ref="default"></schema> <domains> <domain ref="wavelength" /> <domain ref="time" /> <domain ref="version" /> </domains> </coverage> </coverages> <collectors> <collector name="wavelengthCollector"> <value>[0-9]{3}(?=\_)</value> <spi>IntegerFileNameExtractorSPI</spi> <mapped>wavelength</mapped> </collector> <collector name="versionCollector"> <value>[A-Z]{3}(?=\_)</value> <spi>StringFileNameExtractorSPI</spi> <mapped>version</mapped> </collector> </collectors> <parameters> <parameter name="AuxiliaryFile" value="_knmi_minler.xml" /> <parameter name="AbsolutePath" value="true" /> <parameter name="IndexingDirectories" value="/opt/geoserver/data/datastore-properties/knmi_ler_all/knmi_minler" /> </parameters> </Indexer> ---------------------------------------------- _knmi_minler.xml: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <Indexer> <schemas> <schema name="default" > <attributes> the_geom:Polygon,location:String,imageindex:Integer,wavelength:java.lang.Integer,time:java.util.Date,version:java.lang.String </attributes> </schema> </schemas> <coverages> <coverage> <name>minimum_LER</name> <schema ref="default"></schema> <origName>minimum_LER</origName> </coverage> </coverages> </Indexer> ---------------------------------------------- ERROR-log excerpt: 2020-11-03 17:29:38,968 TRACE [org.geotools.util.factory] - RETURN (FeatureTypeFactory, FEATURE_TYPE_FACTORY): found implementation Optional. 2020-11-03 17:29:38,968 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:38,969 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:38,969 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:38,970 DEBUG [org.geotools.jdbc] - Create schema: CREATE TABLE "minimum_LER" ( "fid" int AUTO_INCREMENT(1) PRIMARY KEY, "the_geom" BYTEA COMMENT 'POLYGON', "location" VARCHAR(255), "imageindex" INTEGER, "wavelength" INTEGER, "time" TIMESTAMP, "version" VARCHAR(255) ) 2020-11-03 17:29:38,971 DEBUG [org.geotools.jdbc] - CALL AddGeometryColumn('PUBLIC', 'minimum_LER', 'the_geom', 4326, 'Polygon', 2) 2020-11-03 17:29:38,972 DEBUG [org.geotools.jdbc] - CALL CreateSpatialIndex('PUBLIC','minimum_LER','the_geom','4326') 2020-11-03 17:29:38,982 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:38,983 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:38,984 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:38,984 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:38,985 DEBUG [org.geotools.jdbc] - Getting information about primary keys of minimum_LER 2020-11-03 17:29:38,985 DEBUG [org.geotools.jdbc] - Grabbing table pk metadata: SELECT "fid" FROM "minimum_LER" WHERE 0=1 2020-11-03 17:29:38,986 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:38,986 TRACE [org.geotools.util.factory] - ENTRY (FeatureTypeFactory, FEATURE_TYPE_FACTORY) 2020-11-03 17:29:38,986 TRACE [org.geotools.util.factory] - RETURN (FeatureTypeFactory, FEATURE_TYPE_FACTORY): found implementation Optional. 2020-11-03 17:29:38,986 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:38,986 DEBUG [org.geotools.jdbc] - SELECT type FROM geometry_columns WHERE f_table_schema = 'PUBLIC' AND f_table_name = 'minimum_LER' AND f_geometry_column = 'the_geom' 2020-11-03 17:29:38,987 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:38,988 DEBUG [org.geotools.imageio.netcdf] - Unable to parse the unit:1 No unit will be assigned 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,989 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,990 DEBUG [org.geotools.data.util] - CRSConverterFactory can be applied from Strings to CRS only. 2020-11-03 17:29:38,990 DEBUG [org.geotools.data.util] - InterpolationConverterFactory can be applied from Strings to Interpolation only. 2020-11-03 17:29:38,990 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:38,990 DEBUG [org.geotools.jdbc] - SELECT "fid","the_geom" as "the_geom","location","imageindex","wavelength","time","version" FROM "minimum_LER" WHERE 0 = 1 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:38,991 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:38,992 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:38,992 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,1) 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:38,994 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:38,994 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,2) 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:38,995 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:38,996 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:38,996 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:38,996 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:38,996 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,3) 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:38,997 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:38,997 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,4) 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:38,998 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:38,999 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:38,999 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,5) 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:39,000 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:39,001 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,6) 2020-11-03 17:29:39,001 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,001 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:39,002 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:39,002 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,7) 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:39,003 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:39,003 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,8) 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:39,004 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:39,005 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:39,005 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,9) 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:39,006 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:39,006 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,10) 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:39,007 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:39,008 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:39,008 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,11) 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting the_geom to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting 0 to POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90)) 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting location to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting 1 to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting imageindex to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting 2 to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting wavelength to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting 3 to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting time to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting 4 to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting version to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Setting 5 to null 2020-11-03 17:29:39,009 DEBUG [org.geotools.data.jdbc] - exporting LiteralExpression 2020-11-03 17:29:39,009 DEBUG [org.geotools.jdbc] - Inserting new feature: INSERT INTO "minimum_LER" ( "the_geom","location","imageindex","wavelength","time","version","fid" ) VALUES ( ST_GeomFromText ('POLYGON ((-180 -90, -180 90, 180 90, 180 -90, -180 -90))',4326),null,null,null,null,null,12) 2020-11-03 17:29:39,012 DEBUG [org.geotools.imageio.netcdf] - Committing changes to the DB 2020-11-03 17:29:39,012 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:39,012 INFO [org.geotools.coverage.io.netcdf] - ACCEPTED: /opt/geoserver/data/datastore-properties/knmi_ler_all/knmi_minler/knmi_333_PMD_v31_knmi_minler.nc 2020-11-03 17:29:39,013 DEBUG [org.geotools.imageio.netcdf] - Found a valid FileImageInputStream 2020-11-03 17:29:39,055 TRACE [org.geotools.util.factory] - ENTRY (FeatureTypeFactory, FEATURE_TYPE_FACTORY) 2020-11-03 17:29:39,055 TRACE [org.geotools.util.factory] - RETURN (FeatureTypeFactory, FEATURE_TYPE_FACTORY): found implementation Optional. 2020-11-03 17:29:39,055 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:39,150 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:39,150 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:39,152 DEBUG [org.geotools.jdbc] - Create schema: CREATE TABLE "minimum_LER" ( "fid" int AUTO_INCREMENT(1) PRIMARY KEY, "the_geom" BYTEA COMMENT 'POLYGON', "location" VARCHAR(255), "imageindex" INTEGER, "wavelength" INTEGER, "time" TIMESTAMP, "version" VARCHAR(255) ) 2020-11-03 17:29:39,155 DEBUG [org.geotools.jdbc] - CALL AddGeometryColumn('PUBLIC', 'minimum_LER', 'the_geom', 4326, 'Polygon', 2) 2020-11-03 17:29:39,156 DEBUG [org.geotools.jdbc] - CALL CreateSpatialIndex('PUBLIC','minimum_LER','the_geom','4326') 2020-11-03 17:29:39,166 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:39,166 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:39,166 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:39,167 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:39,169 DEBUG [org.geotools.jdbc] - Getting information about primary keys of minimum_LER 2020-11-03 17:29:39,169 DEBUG [org.geotools.jdbc] - Grabbing table pk metadata: SELECT "fid" FROM "minimum_LER" WHERE 0=1 2020-11-03 17:29:39,169 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:39,169 TRACE [org.geotools.util.factory] - ENTRY (FeatureTypeFactory, FEATURE_TYPE_FACTORY) 2020-11-03 17:29:39,170 TRACE [org.geotools.util.factory] - RETURN (FeatureTypeFactory, FEATURE_TYPE_FACTORY): found implementation Optional. 2020-11-03 17:29:39,170 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:39,170 DEBUG [org.geotools.jdbc] - SELECT type FROM geometry_columns WHERE f_table_schema = 'PUBLIC' AND f_table_name = 'minimum_LER' AND f_geometry_column = 'the_geom' 2020-11-03 17:29:39,171 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:39,171 DEBUG [org.geotools.gce.imagemosaic.catalog] - BBOXFilterExtractor::extractBasicProperties(): geometryPropertyName is set to 'the_geom'. 2020-11-03 17:29:39,171 DEBUG [org.geotools.jdbc] - CREATE CONNECTION 2020-11-03 17:29:39,172 DEBUG [org.geotools.jdbc] - SELECT "fid","the_geom" as "the_geom","location","imageindex","wavelength","time","version" FROM "minimum_LER" 2020-11-03 17:29:39,172 DEBUG [org.geotools.coverage.io.catalog] - Index Loaded 2020-11-03 17:29:39,172 DEBUG [org.geotools.jdbc] - CLOSE CONNECTION 2020-11-03 17:29:39,172 ERROR [org.geotools.gce.imagemosaic] - java.io.IOException at org.geotools.coverage.io.catalog.CoverageSlicesCatalog.getGranules(CoverageSlicesCatalog.java:515) at org.geotools.coverage.io.catalog.CoverageSlicesCatalogSource.getGranules(CoverageSlicesCatalogSource.java:58) at org.geotools.gce.imagemosaic.ImageMosaicConfigHandler.handleStructuredGridCoverage(ImageMosaicConfigHandler.java:649) at org.geotools.gce.imagemosaic.ImageMosaicConfigHandler.updateCatalog(ImageMosaicConfigHandler.java:591) ... -- Sent from: http://osgeo-org.1560.x6.nabble.com/GeoServer-User-f3786390.html _______________________________________________ Geoserver-users mailing list Please make sure you read the following two resources before posting to this list: - Earning your support instead of buying it, but Ian Turton: http://www.ianturton.com/talks/foss4g.html#/ - The GeoServer user list posting guidelines: http://geoserver.org/comm/userlist-guidelines.html If you want to request a feature or an improvement, also see this: https://github.com/geoserver/geoserver/wiki/Successfully-requesting-and-integrating-new-features-and-improvements-in-GeoServer Geoserver-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/geoserver-users