我使用GeoServer在此手册下创建ImageMosaic存储的位置。当我创建一个新的数据存储时,所有*.tif
文件都被索引到数据库(带PostGIS的PostgreSQL)中。当我将新的geotiff放入我的数据文件夹,或在数据库中重新索引所有geotiff文件时,如何在数据库中创建新的索引条目?
我的配置文件:
datastore.properties:
SPI=org.geotools.data.postgis.PostgisNGDataStoreFactory
host=localhost
port=5432
database=GeoServerRaster
schema=public
user=geoserver
passwd=*******
Loose\ bbox=true
Estimated\ extends=false
validate\ connections=true
Connection\ timeout=10
preparedStatements=true
indexer.properties:
Caching=false
TimeAttribute=ingestion
ElevationAttribute=elevation
Schema=*the_geom:Polygon,location:String,ingestion:java.util.Date,elevation:Integer
PropertyCollectors=TimestampFileNameExtractorSPI[timeregex](ingestion),DoubleFileNameExtractorSPI[elevationregex](elevation)
timeregex.properties:
regex=[0-9]{8}T[0-9]{6}Z(\?!.\*[0-9]{8}T[0-9]{6}Z.\*)
levationregex.properties:
regex=(?<=_)(\\d{1,5})(?=_)
目录中的文件:
tc_10000_20140807T033115Z.tif
tc_10000_20140807T040046Z.tif
tc_10000_20140807T043115Z.tif
...