-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgeobase.lan
136 lines (136 loc) · 3.46 KB
/
geobase.lan
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
schema('abbreviation','of','state').
schema('state','with','abbreviation').
schema('capital','of','state').
schema('state','with','capital').
schema('population','of','state').
schema('state','with','population').
schema('area','of','state').
schema('city','in','state').
schema('state','with','city').
schema('population','of','city').
schema('population','of','capital').
schema('length','of','river').
schema('state','with','river').
schema('river','in','state').
schema('state','border','state').
schema('city','with','population').
schema('state','with','population').
schema('river','with','length').
schema('capital','with','population').
schema('point','in','state').
schema('state','with','point').
schema('height','of','point').
schema('mountain','in','state').
schema('state','with','mountain').
schema('height','of','mountain').
schema('lake','in','state').
schema('state','with','lake').
schema('area','of','lake').
schema('state','with','road').
schema('road','in','state').
schema('name','of','river').
schema('name','of','capital').
schema('name','of','city').
schema('name','of','state').
schema('name','of','point').
schema('name','of','mountain').
schema('name','of','lake').
schema('name','of','road').
schema('river','in','continent').
schema('city','in','continent').
schema('capital','in','continent').
schema('state','in','continent').
schema('point','in','continent').
schema('mountain','in','continent').
schema('lake','in','continent').
schema('road','in','continent').
entitysize('river','length').
entitysize('state','area').
entitysize('city','population').
entitysize('point','height').
entitysize('mountain','height').
entitysize('lake','area').
relop(['under'],'lt').
relop(['less','than'],'lt').
relop(['shorter','than'],'lt').
relop(['smaller','than'],'lt').
relop(['more','than'],'gt').
relop(['longer','than'],'gt').
relop(['greater','than'],'gt').
relop(['bigger','than'],'gt').
relop(['above'],'gt').
relop(['over'],'gt').
assoc('in',['in']).
assoc('in',['running','through']).
assoc('in',['runs','through']).
assoc('in',['run','through']).
assoc('with',['with']).
assoc('with',['traversed']).
assoc('with',['traversed','by']).
assoc('of',['of']).
assoc('border',['border']).
assoc('border',['frontier']).
assoc('border',['boundary']).
assoc('border',['limit']).
assoc('border',['borders']).
assoc('border',['border','on']).
assoc('of',['in']).
assoc('in',['of']).
assoc('with',['has']).
assoc('with',['have']).
synonym('people','population').
synonym('citizen','population').
synonym('inhabitant','population').
synonym('place','point').
synonym('town','city').
ignore('which').
ignore('is').
ignore('are').
ignore('the').
ignore('tell').
ignore('me').
ignore('what').
ignore('give').
ignore('as').
ignore('that').
ignore('please').
ignore('to').
ignore('how').
ignore('many').
ignore('live').
ignore('lives').
ignore('living').
ignore('there').
ignore('do').
ignore('does').
ignore('number').
ignore('a').
ignore('an').
ignore('any').
ignore('some').
minn('smallest').
minn('shortest').
minn('minimun').
minn('least').
minn('smaller').
minn('lowest').
maxx('greatest').
maxx('largest').
maxx('biggest').
maxx('maximum').
maxx('longest').
maxx('highest').
size('river','long').
size('point','high').
size('city','big').
size('state','big').
size('capital','big').
size('city','large').
size('state','large').
size('capital','large').
size('mountain','height').
size('lake','big').
unit('population','citizens').
unit('area','square kilometers').
unit('length','kilometers').
unit('height','meters').