-
Notifications
You must be signed in to change notification settings - Fork 184
/
dstk_config.rb
executable file
·70 lines (53 loc) · 2.41 KB
/
dstk_config.rb
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
# Data Science Toolkit
# Copyright (C) 2010 Pete Warden <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
module DSTKConfig
# The location of the source data to be loaded into your database
SOURCE_FOLDER = '../dstkdata/'
# The file system root of the projects
DSTK_ROOT = File.expand_path(File.dirname(__FILE__))
# Your MySQL user credentials
USER = 'postgres'
PASSWORD = ''
# The address and port number of your database server
HOST = 'localhost' #'ec2-54-234-201-12.compute-1.amazonaws.com'
PORT = 5432
# The name of the database holding the gazetteer data
DATABASE = 'geodict'
# The name of the database holding the geometry used in reverse geocoding
REVERSE_GEO_DATABASE = 'reversegeo'
# The name of the database holding geographic statistics
STATISTICS_DATABASE = 'statistics'
# The name of the database with information about people's names
NAMES_DATABASE = 'names'
# The maximum number of words in any name
WORD_MAX = 3
# Words that provide evidence that what follows them is a location
LOCATION_WORDS = {
'at' => true,
'in' => true
}
# The location of the MaxMind database file holding IP to location mappings
IP_MAPPING_DATABASE = '../dstkdata/GeoLiteCity.dat'
# The version of the API this code implements
API_VERSION = 51
# The home of the Boilerplate framework
BOILERPIPE_FOLDER = '../boilerpipe/boilerpipe-core/'
# The location of the TIGER/Line database used by the US address geocoder
# For backwards compatibility, look for any of these versions, starting with the first
GEOCODER_DB_FILES = ['../geocoderdata/geocoder2012.db', '../geocoderdata/geocoder2011.db']
# The location of the MaxMind database file holding IP to location mappings
ETHNICITY_OF_SURNAMES_FILE = '../dstkdata/ethnicityofsurnames.csv'
end