-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.properties
executable file
·71 lines (51 loc) · 2.47 KB
/
config.properties
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
#Initial Input Parameters
# Absolute path to the input file (e.g: /home/myDir/myInputFile.csv)
input_file =
# Absolute path to the hotspots output file (e.g: /home/myDir/top_50_HotSpots.txt)
hs-output_file =
# Absolute path to the DBSCAN output file (e.g: /home/myDir/top_50_HotSpots.txt)
cl-output_file =
# Columns. Either Names or Integers(Start from 0).
# lon, lat columns are the only mandatory.
column_id =
column_lon =
column_lat =
column_score =
column_keywords =
#specify other Columns to keep seperated with (,) Other than id, lon, lat, score. E.G: address,name, ...
#It Keeps All Columns by default.
other_cols =
# Delimiters. Here you specify all the seperators. e.g: ,
csv_delimiter =
keyword_delimiter =
#Keywords for filtering.
keywords =
######################################## Notice ###################################################################################
# cell-eps & cl-eps are either in meters if source_crs and target_crs are specified other than EPSG:4326
# or in Degrees otherwise: See https://en.wikipedia.org/wiki/Decimal_degrees
########### HOTSPOTS ##############################################################################################################
# Grid Partitioning
# Cell Width (Longitude, Latitude).
# If lon lat are projected, eps is in meters(Better accuracy). Otherwise Degrees. See https://en.wikipedia.org/wiki/Decimal_degrees
cell-eps = 0.0005
#Partition Width as an Integer number, denotes k times the cell-width. cell-width = k * cell-eps
pSize_k = 50
#Top k HotSpots (Optional. If Not specified all cells will be evaluated)
hs-top-k = 100
#Neighbour Cell Weight.
hs-nb-cell-weight = 1.0
# It will print whole Polygons instead of individual cells.
# It will print (Gi* per Polygon as the average Gi* of all cells in that Polygon), instead of Gi* per Cell.
hs-print-as-unioncells = false
####################################################################################################################################
# DBSCAN parameters.
# If lon lat are projected, eps is in meters(Better accuracy!). Otherwise Degrees. See https://en.wikipedia.org/wiki/Decimal_degrees
cl-eps= 100
cl-minPts=10
####################################################################################################################################
#LDA Parameters
numOfTopics = 5
# CRS Coordinates. What EPSG you are currently using and what EPSG to Transform to. (Optional)
# E.G: source_crs = EPSG:4326, target_crs = EPSG:3068
source_crs =
target_crs =