-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.js
executable file
·67 lines (62 loc) · 1.66 KB
/
settings.js
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
/**
* Created by Nicholas Hallahan <[email protected]>
* on 10/23/14.
*/
module.exports = {
pointTables: {
cicos_2014: [
'Bank Customer Service Points',
'Commercial Banks',
'MFIs',
'Offsite ATMs',
'Postal Outlets'
],
library_2014: [
"Public Library",
"Village",
"Private Library",
"District"
],
health_2014: [
"Sub Health Centres",
"ANM or District Training Centres",
"District Hospitals",
"Additional Primary Health Centres (APHC)",
"Community Health Centre (CHC)/First Referral Units",
"Nursing Schools",
"Approved Nursing Training Centres (Private Sector)",
"Sub Divisional District Hospitals",
"Medical Colleges and Hospitals",
"Primary Health Centre (PHC)",
"Private hospitals and clinics"
],
agriculture_2014: [
"Dairy Processors",
"Day old chick hatcheries",
"Private sector Agricultural service providers",
"Government Vets",
"Market Locations",
"Agro-dealers",
"Warehouse/Storage/Aggregation Centres",
"Dairy chilling plants",
"Processors/value addition points",
"Farmer Organisations and Cooperatives",
"Artificial Insemination Centres",
"National/Regional/State Research Stations",
"Seed Multipliers"
]
},
/**
* Specify the side of the buffers around the points you want to
* generate % population in a buffer around the points.
*/
bufferSizes: [1,2,3,4],
// PostGIS Database Connection
postgres: {
server: 'localhost',
port: '5432',
database: 'fsp',
user: 'postgres',
password: ''
}
};