forked from geo-engine/geoengine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettings-default.toml
More file actions
95 lines (76 loc) · 2.61 KB
/
Settings-default.toml
File metadata and controls
95 lines (76 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[web]
bind_address = "127.0.0.1:3030"
external_address = "http://localhost:3030"
backend = "in_memory" # TODO: remove option
version_api = true
[project_service]
list_limit = 20
[dataset_service]
list_limit = 20
[postgres]
host = "localhost"
port = 5432
database = "geoengine"
schema = "public"
user = "geoengine"
password = "geoengine"
[raster.tiling_specification]
origin_coordinate_x = 0.0
origin_coordinate_y = 0.0
tile_shape_pixels_x = 512
tile_shape_pixels_y = 512
[query_context]
chunk_byte_size = 1048576 # TODO: find reasonable default
[upload]
path = "upload"
[logging]
# Minimum log level. Can be one of error, warn, info, debug, trace
# or a more detailed spec. See https://docs.rs/flexi_logger/0.17.1/flexi_logger/struct.LogSpecification.html.
log_spec = "info"
# Whether the logs should be also written to files.
# Log files are rotated once per day. The last 7 files will be kept.
log_to_file = false
# Changes the first part of the log filename.
filename_prefix = "geo_engine"
# By default logs are saved in the current working directory.
# Use this option if another folder should be used.
#log_directory = "/var/log/"
[ogc.default_time]
# type "Value" with start/end as ISO strings or "Now" for using the current time, use wcs.default_time etc. for override
type = "Value"
start = "2014-01-01T00:00:00Z"
end = "2014-01-01T00:00:00Z"
[wcs]
# max number of tiles to be produced for generating output tiff
tile_limit = 4
[dataprovider]
dataset_defs_path = "./test_data/dataset_defs"
provider_defs_path = "./test_data/provider_defs"
[gdal]
# TODO: find good default
# Use 0 for `ALL_CPUS` option or a number >0 for a specific number of threads.
compression_num_threads = 8
[session]
# Whether to allow requests to `/anonymous` that return a valid session.
anonymous_access = true
# Specifies a fixed session token. Otherwise, a random token is generated.
# This can be directly used for Bearer authentication in HTTP requests.
# fixed_session_token = "18fec623-6600-41af-b82b-24ccf47cb9f9"
# Settings for Geo Engine Pro
[user]
user_registration = true
[odm]
endpoint = "http://localhost:3000/"
# TODO: authentication
# Settings for compile-feature `ebv` only
[ebv]
api_base_url = "https://portal.geobon.org/api/v1"
# Settings for compile-feature `nfdi` only
[gfbio]
# This is the basket API endpoint
basket_api_base_url= "https://dev.gfbio.uni-jena.de/daisi-api/api/baskets/"
# If this is set to true, basket entries that belong to the
# same dataset AND species are grouped within a single layer.
# This is the behavious of the old VAT system.
# If false, every basket entry translates into a layer on the map.
group_abcd_units = true