72 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
# Agency ID used to set creationInfo.agencyID in data model objects. Should not
 | 
						|
# contain spaces.
 | 
						|
agencyID = gempa
 | 
						|
 | 
						|
# Datacenter ID which is primarily used by Arclink and its tools. Should not
 | 
						|
# contain spaces.
 | 
						|
datacenterID = NOAA
 | 
						|
 | 
						|
# Organization name used mainly by ArcLink and SeedLink.
 | 
						|
organization = NOAA
 | 
						|
 | 
						|
# List of plugins loaded at startup. Separate multiple names by comma. Add
 | 
						|
# ${plugins} to consider all previously read values.
 | 
						|
plugins = ${plugins}, mbtiles, mapprojections, saic, spickdbg
 | 
						|
 | 
						|
# SeisComP applications access waveform data through the RecordStream
 | 
						|
# interface. Read the SeisComP documentation for a list of supported services
 | 
						|
# and their configuration.
 | 
						|
# This parameter configures RecordStream source URL.
 | 
						|
# Format: [service://]location[#type]
 | 
						|
# "service": The name of the RecordStream implementation. If not given,
 | 
						|
# "file://" is implied.
 | 
						|
# IMPORTANT: This parameter replaces former RecordStream configurations in
 | 
						|
# "recordstream.service" and "recordstream.source" which have been removed.
 | 
						|
recordstream = caps://localhost:18002
 | 
						|
 | 
						|
# Define a list of core modules loaded at startup.
 | 
						|
core.plugins = dbmysql
 | 
						|
 | 
						|
# A regular expression of all clients that should handle a command message
 | 
						|
# usually send to the GUI messaging group. Currently this flag is only used by
 | 
						|
# GUI applications to set an artificial origin and to tell other clients to
 | 
						|
# show this origin. To let all connected clients handle the command, ".*$" can
 | 
						|
# be used.
 | 
						|
commands.target = ".*$"
 | 
						|
 | 
						|
# The list of supported table (model) names per interface.
 | 
						|
ttt.LOCSAT.tables = iasp91, iasp91_scanloc
 | 
						|
 | 
						|
# The location and the structure of the map tiles to be used. This path is
 | 
						|
# composed of zero or more directives and must include at least one conversion
 | 
						|
# specification. The specification starts with the '%' and is followed by a
 | 
						|
# conversion specifier. Valid specifiers are
 | 
						|
# s: to be replaced by tile ID
 | 
						|
# l: tile level
 | 
						|
# c: tile column
 | 
						|
# r: tile row.
 | 
						|
# Example for using the OpenStreetMap file structure:
 | 
						|
# /path/to/maps/%l/%c/%r.png.
 | 
						|
map.location = /home/data/maps/world-6/world-6.mbtiles
 | 
						|
 | 
						|
# The tile store implementation provided by a plugin for considering maps if a
 | 
						|
# non-default tile store is configured in 'map.location'.
 | 
						|
map.type = mbtiles
 | 
						|
 | 
						|
# Apply bilinear filtering to maps. The bilinear filter improves the visual
 | 
						|
# quality but decreases performance slightly. It is only used for static map
 | 
						|
# images. Not while dragging.
 | 
						|
scheme.map.bilinearFilter = false
 | 
						|
 | 
						|
# Show cities defined in "citiesXML" on maps
 | 
						|
scheme.map.showCities = false
 | 
						|
 | 
						|
# SeisComP ships with the rectangular projection built-in. Other projections
 | 
						|
# may be provided through plugins.
 | 
						|
scheme.map.projection = Mercator
 | 
						|
 | 
						|
# Restricts the zoom level to discrete steps matching the resolution of the map
 | 
						|
# tiles. The intention is to avoid interpolation when operating with tiles sets
 | 
						|
# which use small font sizes.
 | 
						|
map.mercator.discrete = true
 |