-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwiki_graph.html
216 lines (170 loc) · 79.6 KB
/
wiki_graph.html
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vis-network@latest/styles/vis-network.css" type="text/css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vis-network@latest/dist/vis-network.min.js"> </script>
<center>
<h1>Wiki Graph</h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<style type="text/css">
#mynetwork {
width: 1400px;
height: 800px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 1400px;
height: 800px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
#config {
float: left;
width: 400px;
height: 600px;
}
</style>
</head>
<body>
<div id = "mynetwork"></div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<div id = "config"></div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var network;
var container;
var options, data;
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"id": "Kolkata", "label": "Kolkata", "shape": "dot", "size": 1}, {"id": "List_of_renamed_Indian_cities_and_states", "label": "List_of_renamed_Indian_cities_and_states", "shape": "dot", "size": 20}, {"id": "Capital_city", "label": "Capital_city", "shape": "dot", "size": 30}, {"id": "India", "label": "India", "shape": "dot", "size": 50}, {"id": "States_and_union_territories_of_India", "label": "States_and_union_territories_of_India", "shape": "dot", "size": 30}, {"id": "West_Bengal", "label": "West_Bengal", "shape": "dot", "size": 10}, {"id": "Hooghly_River", "label": "Hooghly_River", "shape": "dot", "size": 10}, {"id": "Bangladesh", "label": "Bangladesh", "shape": "dot", "size": 10}, {"id": "East_India", "label": "East_India", "shape": "dot", "size": 20}, {"id": "North-East_India", "label": "North-East_India", "shape": "dot", "size": 10}, {"id": "List_of_most_populous_cities_in_India", "label": "List_of_most_populous_cities_in_India", "shape": "dot", "size": 10}, {"id": "Lakh", "label": "Lakh", "shape": "dot", "size": 10}, {"id": "Crore", "label": "Crore", "shape": "dot", "size": 20}, {"id": "Kolkata_metropolitan_area", "label": "Kolkata_metropolitan_area", "shape": "dot", "size": 10}, {"id": "List_of_metropolitan_areas_in_India", "label": "List_of_metropolitan_areas_in_India", "shape": "dot", "size": 20}, {"id": "Port_of_Kolkata", "label": "Port_of_Kolkata", "shape": "dot", "size": 10}, {"id": "British_Raj", "label": "British_Raj", "shape": "dot", "size": 10}, {"id": "United_Kingdom", "label": "United_Kingdom", "shape": "dot", "size": 20}, {"id": "Endonym_and_exonym", "label": "Endonym_and_exonym", "shape": "dot", "size": 10}, {"id": "Hindi_language", "label": "Hindi_language", "shape": "dot", "size": 20}, {"id": "The_Crown", "label": "The_Crown", "shape": "dot", "size": 10}, {"id": "Indian_subcontinent", "label": "Indian_subcontinent", "shape": "dot", "size": 20}, {"id": "United_Kingdom_of_Great_Britain_and_Ireland", "label": "United_Kingdom_of_Great_Britain_and_Ireland", "shape": "dot", "size": 10}, {"id": "Presidencies_and_provinces_of_British_India", "label": "Presidencies_and_provinces_of_British_India", "shape": "dot", "size": 10}, {"id": "British_paramountcy", "label": "British_paramountcy", "shape": "dot", "size": 10}, {"id": "Princely_state", "label": "Princely_state", "shape": "dot", "size": 10}, {"id": "Devanagari", "label": "Devanagari", "shape": "dot", "size": 10}, {"id": "ISO_15919", "label": "ISO_15919", "shape": "dot", "size": 10}, {"id": "Indo-Aryan_language", "label": "Indo-Aryan_language", "shape": "dot", "size": 10}, {"id": "Hindi_Belt", "label": "Hindi_Belt", "shape": "dot", "size": 10}, {"id": "North_India", "label": "North_India", "shape": "dot", "size": 10}, {"id": "Central_India", "label": "Central_India", "shape": "dot", "size": 10}, {"id": "Western_India", "label": "Western_India", "shape": "dot", "size": 10}, {"id": "Standard_language", "label": "Standard_language", "shape": "dot", "size": 10}, {"id": "Sanskrit", "label": "Sanskrit", "shape": "dot", "size": 20}, {"id": "Register_(sociolinguistics)", "label": "Register_(sociolinguistics)", "shape": "dot", "size": 10}, {"id": "Hindustani_language", "label": "Hindustani_language", "shape": "dot", "size": 10}, {"id": "Old_Hindi", "label": "Old_Hindi", "shape": "dot", "size": 10}, {"id": "Delhi", "label": "Delhi", "shape": "dot", "size": 20}, {"id": "Northern_India", "label": "Northern_India", "shape": "dot", "size": 10}, {"id": "Official_language", "label": "Official_language", "shape": "dot", "size": 10}, {"id": "Government_of_India", "label": "Government_of_India", "shape": "dot", "size": 20}, {"id": "Indian_English", "label": "Indian_English", "shape": "dot", "size": 10}, {"id": "Languages_with_official_status_in_India", "label": "Languages_with_official_status_in_India", "shape": "dot", "size": 10}, {"id": "States_of_India", "label": "States_of_India", "shape": "dot", "size": 10}, {"id": "Union_Territories", "label": "Union_Territories", "shape": "dot", "size": 10}, {"id": "Scheduled_languages_of_India", "label": "Scheduled_languages_of_India", "shape": "dot", "size": 10}, {"id": "IAST", "label": "IAST", "shape": "dot", "size": 10}, {"id": "Sanskrit_language", "label": "Sanskrit_language", "shape": "dot", "size": 10}, {"id": "Abugida", "label": "Abugida", "shape": "dot", "size": 10}, {"id": "Brahmi_script", "label": "Brahmi_script", "shape": "dot", "size": 10}, {"id": "List_of_writing_systems_by_adoption", "label": "List_of_writing_systems_by_adoption", "shape": "dot", "size": 10}, {"id": "Union_territory", "label": "Union_territory", "shape": "dot", "size": 10}, {"id": "New_Delhi", "label": "New_Delhi", "shape": "dot", "size": 10}, {"id": "Yamuna", "label": "Yamuna", "shape": "dot", "size": 10}, {"id": "Uttar_Pradesh", "label": "Uttar_Pradesh", "shape": "dot", "size": 10}, {"id": "Haryana", "label": "Haryana", "shape": "dot", "size": 10}, {"id": "Ghaziabad", "label": "Ghaziabad", "shape": "dot", "size": 10}, {"id": "Faridabad", "label": "Faridabad", "shape": "dot", "size": 10}, {"id": "Gurgaon", "label": "Gurgaon", "shape": "dot", "size": 10}, {"id": "Noida", "label": "Noida", "shape": "dot", "size": 10}, {"id": "National_Capital_Region_(India)", "label": "National_Capital_Region_(India)", "shape": "dot", "size": 10}, {"id": "List_of_urban_areas_by_population", "label": "List_of_urban_areas_by_population", "shape": "dot", "size": 10}, {"id": "Tokyo", "label": "Tokyo", "shape": "dot", "size": 10}, {"id": "Romanisation", "label": "Romanisation", "shape": "dot", "size": 10}, {"id": "Brahmic_family", "label": "Brahmic_family", "shape": "dot", "size": 10}, {"id": "Sir_Charles_Trevelyan,_1st_Baronet", "label": "Sir_Charles_Trevelyan,_1st_Baronet", "shape": "dot", "size": 10}, {"id": "William_Jones_(philologist)", "label": "William_Jones_(philologist)", "shape": "dot", "size": 10}, {"id": "Monier_Monier-Williams", "label": "Monier_Monier-Williams", "shape": "dot", "size": 10}, {"id": "International_Congress_of_Orientalists", "label": "International_Congress_of_Orientalists", "shape": "dot", "size": 10}, {"id": "Linguistics", "label": "Linguistics", "shape": "dot", "size": 30}, {"id": "Writing_system", "label": "Writing_system", "shape": "dot", "size": 10}, {"id": "Latin_script", "label": "Latin_script", "shape": "dot", "size": 20}, {"id": "Transliteration", "label": "Transliteration", "shape": "dot", "size": 10}, {"id": "Transcription_(linguistics)", "label": "Transcription_(linguistics)", "shape": "dot", "size": 10}, {"id": "Phoneme", "label": "Phoneme", "shape": "dot", "size": 10}, {"id": "Semantic", "label": "Semantic", "shape": "dot", "size": 10}, {"id": "Science", "label": "Science", "shape": "dot", "size": 70}, {"id": "Scientific_study", "label": "Scientific_study", "shape": "dot", "size": 10}, {"id": "Human", "label": "Human", "shape": "dot", "size": 30}, {"id": "Language", "label": "Language", "shape": "dot", "size": 30}, {"id": "Cognition", "label": "Cognition", "shape": "dot", "size": 20}, {"id": "Scientific_field", "label": "Scientific_field", "shape": "dot", "size": 10}, {"id": "Academic_discipline", "label": "Academic_discipline", "shape": "dot", "size": 10}, {"id": "Social_science", "label": "Social_science", "shape": "dot", "size": 20}, {"id": "Natural_science", "label": "Natural_science", "shape": "dot", "size": 20}, {"id": "Cognitive_science", "label": "Cognitive_science", "shape": "dot", "size": 10}, {"id": "Humanities", "label": "Humanities", "shape": "dot", "size": 10}, {"id": "Scientific_method", "label": "Scientific_method", "shape": "dot", "size": 10}, {"id": "Knowledge", "label": "Knowledge", "shape": "dot", "size": 20}, {"id": "Testability", "label": "Testability", "shape": "dot", "size": 10}, {"id": "Explanation", "label": "Explanation", "shape": "dot", "size": 10}, {"id": "Prediction", "label": "Prediction", "shape": "dot", "size": 10}, {"id": "Universe", "label": "Universe", "shape": "dot", "size": 10}, {"id": "Empirical_evidence", "label": "Empirical_evidence", "shape": "dot", "size": 10}, {"id": "Observation", "label": "Observation", "shape": "dot", "size": 10}, {"id": "Skepticism", "label": "Skepticism", "shape": "dot", "size": 10}, {"id": "Philosophy_of_science", "label": "Philosophy_of_science", "shape": "dot", "size": 10}, {"id": "Perception", "label": "Perception", "shape": "dot", "size": 20}, {"id": "Hypothesis", "label": "Hypothesis", "shape": "dot", "size": 10}, {"id": "Inductive_reasoning", "label": "Inductive_reasoning", "shape": "dot", "size": 10}, {"id": "Experiment", "label": "Experiment", "shape": "dot", "size": 20}, {"id": "Deductive_reasoning", "label": "Deductive_reasoning", "shape": "dot", "size": 20}, {"id": "Proposition", "label": "Proposition", "shape": "dot", "size": 20}, {"id": "Evidence", "label": "Evidence", "shape": "dot", "size": 10}, {"id": "Sense", "label": "Sense", "shape": "dot", "size": 10}, {"id": "Epistemology", "label": "Epistemology", "shape": "dot", "size": 10}, {"id": "Law", "label": "Law", "shape": "dot", "size": 10}, {"id": "Logic", "label": "Logic", "shape": "dot", "size": 20}, {"id": "Sentence_(linguistics)", "label": "Sentence_(linguistics)", "shape": "dot", "size": 10}, {"id": "Philosophy", "label": "Philosophy", "shape": "dot", "size": 20}, {"id": "Meaning_(philosophy)", "label": "Meaning_(philosophy)", "shape": "dot", "size": 10}, {"id": "Truth-bearer", "label": "Truth-bearer", "shape": "dot", "size": 10}, {"id": "Truth", "label": "Truth", "shape": "dot", "size": 20}, {"id": "False_(logic)", "label": "False_(logic)", "shape": "dot", "size": 10}, {"id": "Reason", "label": "Reason", "shape": "dot", "size": 10}, {"id": "Argument", "label": "Argument", "shape": "dot", "size": 10}, {"id": "Validity_(logic)", "label": "Validity_(logic)", "shape": "dot", "size": 10}, {"id": "Inference", "label": "Inference", "shape": "dot", "size": 10}, {"id": "Logical_truth", "label": "Logical_truth", "shape": "dot", "size": 10}, {"id": "Formal_science", "label": "Formal_science", "shape": "dot", "size": 10}, {"id": "Premise", "label": "Premise", "shape": "dot", "size": 10}, {"id": "Logical_constant", "label": "Logical_constant", "shape": "dot", "size": 10}, {"id": "Formal_system", "label": "Formal_system", "shape": "dot", "size": 10}, {"id": "Informal_logic", "label": "Informal_logic", "shape": "dot", "size": 10}, {"id": "Formal_language", "label": "Formal_language", "shape": "dot", "size": 10}, {"id": "Natural_language", "label": "Natural_language", "shape": "dot", "size": 10}, {"id": "Ampliative", "label": "Ampliative", "shape": "dot", "size": 10}, {"id": "Formal_fallacy", "label": "Formal_fallacy", "shape": "dot", "size": 10}, {"id": "Informal_fallacies", "label": "Informal_fallacies", "shape": "dot", "size": 10}, {"id": "Consciousness", "label": "Consciousness", "shape": "dot", "size": 20}, {"id": "Logical_consequence", "label": "Logical_consequence", "shape": "dot", "size": 10}, {"id": "Information", "label": "Information", "shape": "dot", "size": 10}, {"id": "Mathematics", "label": "Mathematics", "shape": "dot", "size": 10}, {"id": "Art", "label": "Art", "shape": "dot", "size": 10}, {"id": "Humans", "label": "Humans", "shape": "dot", "size": 10}, {"id": "Rationality", "label": "Rationality", "shape": "dot", "size": 10}, {"id": "Sentience", "label": "Sentience", "shape": "dot", "size": 10}, {"id": "Awareness", "label": "Awareness", "shape": "dot", "size": 10}, {"id": "Mind", "label": "Mind", "shape": "dot", "size": 20}, {"id": "Introspection", "label": "Introspection", "shape": "dot", "size": 10}, {"id": "Thought", "label": "Thought", "shape": "dot", "size": 20}, {"id": "Imagination", "label": "Imagination", "shape": "dot", "size": 20}, {"id": "Volition_(psychology)", "label": "Volition_(psychology)", "shape": "dot", "size": 10}, {"id": "Experience", "label": "Experience", "shape": "dot", "size": 10}, {"id": "Feeling", "label": "Feeling", "shape": "dot", "size": 20}, {"id": "Meta-cognition", "label": "Meta-cognition", "shape": "dot", "size": 10}, {"id": "Self-awareness", "label": "Self-awareness", "shape": "dot", "size": 10}, {"id": "Higher-order_theories_of_consciousness", "label": "Higher-order_theories_of_consciousness", "shape": "dot", "size": 10}, {"id": "Ancient_Greek_language", "label": "Ancient_Greek_language", "shape": "dot", "size": 20}, {"id": "Arithmetic", "label": "Arithmetic", "shape": "dot", "size": 10}, {"id": "Number_theory", "label": "Number_theory", "shape": "dot", "size": 10}, {"id": "Algebra", "label": "Algebra", "shape": "dot", "size": 10}, {"id": "Geometry", "label": "Geometry", "shape": "dot", "size": 10}, {"id": "Calculus", "label": "Calculus", "shape": "dot", "size": 10}, {"id": "Mathematical_analysis", "label": "Mathematical_analysis", "shape": "dot", "size": 10}, {"id": "Human_behavior", "label": "Human_behavior", "shape": "dot", "size": 10}, {"id": "Beauty", "label": "Beauty", "shape": "dot", "size": 10}, {"id": "Concept", "label": "Concept", "shape": "dot", "size": 10}, {"id": "Idea", "label": "Idea", "shape": "dot", "size": 10}, {"id": "Mumbai", "label": "Mumbai", "shape": "dot", "size": 1}, {"id": "Maharashtra", "label": "Maharashtra", "shape": "dot", "size": 10}, {"id": "United_Nations", "label": "United_Nations", "shape": "dot", "size": 10}, {"id": "List_of_cities_in_India_by_population", "label": "List_of_cities_in_India_by_population", "shape": "dot", "size": 10}, {"id": "List_of_largest_cities", "label": "List_of_largest_cities", "shape": "dot", "size": 10}, {"id": "City_proper", "label": "City_proper", "shape": "dot", "size": 10}, {"id": "Municipal_Corporation_of_Greater_Mumbai", "label": "Municipal_Corporation_of_Greater_Mumbai", "shape": "dot", "size": 10}, {"id": "Mumbai_Metropolitan_Region", "label": "Mumbai_Metropolitan_Region", "shape": "dot", "size": 10}, {"id": "Konkan", "label": "Konkan", "shape": "dot", "size": 10}, {"id": "Natural_harbour", "label": "Natural_harbour", "shape": "dot", "size": 10}, {"id": "Alpha_world_city", "label": "Alpha_world_city", "shape": "dot", "size": 10}, {"id": "Millionaire", "label": "Millionaire", "shape": "dot", "size": 10}, {"id": "Billionaire", "label": "Billionaire", "shape": "dot", "size": 10}, {"id": "List_of_World_Heritage_Sites_in_India", "label": "List_of_World_Heritage_Sites_in_India", "shape": "dot", "size": 10}, {"id": "Elephanta_Caves", "label": "Elephanta_Caves", "shape": "dot", "size": 10}, {"id": "Chhatrapati_Shivaji_Terminus", "label": "Chhatrapati_Shivaji_Terminus", "shape": "dot", "size": 10}, {"id": "The_Victorian_and_Art_Deco_Ensemble_of_Mumbai", "label": "The_Victorian_and_Art_Deco_Ensemble_of_Mumbai", "shape": "dot", "size": 10}, {"id": "Administrative_divisions_of_India", "label": "Administrative_divisions_of_India", "shape": "dot", "size": 10}, {"id": "Federal_territory", "label": "Federal_territory", "shape": "dot", "size": 10}, {"id": "Greek_language", "label": "Greek_language", "shape": "dot", "size": 20}, {"id": "Ancient_Greece", "label": "Ancient_Greece", "shape": "dot", "size": 10}, {"id": "Classical_antiquity", "label": "Classical_antiquity", "shape": "dot", "size": 10}, {"id": "Mycenaean_Greek", "label": "Mycenaean_Greek", "shape": "dot", "size": 10}, {"id": "Greek_Dark_Ages", "label": "Greek_Dark_Ages", "shape": "dot", "size": 10}, {"id": "Archaic_Greece", "label": "Archaic_Greece", "shape": "dot", "size": 10}, {"id": "Classical_Greece", "label": "Classical_Greece", "shape": "dot", "size": 10}, {"id": "Modern_Greek", "label": "Modern_Greek", "shape": "dot", "size": 10}, {"id": "Indo-European_languages", "label": "Indo-European_languages", "shape": "dot", "size": 20}, {"id": "Greece", "label": "Greece", "shape": "dot", "size": 10}, {"id": "Cyprus", "label": "Cyprus", "shape": "dot", "size": 10}, {"id": "Albania", "label": "Albania", "shape": "dot", "size": 10}, {"id": "Balkans", "label": "Balkans", "shape": "dot", "size": 10}, {"id": "Black_Sea", "label": "Black_Sea", "shape": "dot", "size": 10}, {"id": "Asia_Minor", "label": "Asia_Minor", "shape": "dot", "size": 10}, {"id": "Eastern_Mediterranean", "label": "Eastern_Mediterranean", "shape": "dot", "size": 10}, {"id": "List_of_languages_by_first_written_accounts", "label": "List_of_languages_by_first_written_accounts", "shape": "dot", "size": 10}, {"id": "Greek_alphabet", "label": "Greek_alphabet", "shape": "dot", "size": 20}, {"id": "Linear_B", "label": "Linear_B", "shape": "dot", "size": 10}, {"id": "Cypriot_syllabary", "label": "Cypriot_syllabary", "shape": "dot", "size": 10}, {"id": "Phoenician_alphabet", "label": "Phoenician_alphabet", "shape": "dot", "size": 10}, {"id": "Cyrillic", "label": "Cyrillic", "shape": "dot", "size": 10}, {"id": "Armenian_alphabet", "label": "Armenian_alphabet", "shape": "dot", "size": 10}, {"id": "Coptic_alphabet", "label": "Coptic_alphabet", "shape": "dot", "size": 10}, {"id": "Gothic_alphabet", "label": "Gothic_alphabet", "shape": "dot", "size": 10}, {"id": "Dialect", "label": "Dialect", "shape": "dot", "size": 20}, {"id": "Varieties_of_Modern_Greek", "label": "Varieties_of_Modern_Greek", "shape": "dot", "size": 10}, {"id": "Medieval_Greek", "label": "Medieval_Greek", "shape": "dot", "size": 10}, {"id": "Byzantine_Empire", "label": "Byzantine_Empire", "shape": "dot", "size": 10}, {"id": "Latin", "label": "Latin", "shape": "dot", "size": 10}, {"id": "Ancient_Greek", "label": "Ancient_Greek", "shape": "dot", "size": 20}, {"id": "Classical_language", "label": "Classical_language", "shape": "dot", "size": 10}, {"id": "Italic_languages", "label": "Italic_languages", "shape": "dot", "size": 10}, {"id": "Tiber", "label": "Tiber", "shape": "dot", "size": 10}, {"id": "Rome", "label": "Rome", "shape": "dot", "size": 10}, {"id": "Latium", "label": "Latium", "shape": "dot", "size": 10}, {"id": "Roman_Republic", "label": "Roman_Republic", "shape": "dot", "size": 10}, {"id": "Italy_(geographical_region)", "label": "Italy_(geographical_region)", "shape": "dot", "size": 10}, {"id": "Roman_Empire", "label": "Roman_Empire", "shape": "dot", "size": 20}, {"id": "Fall_of_the_Western_Roman_Empire", "label": "Fall_of_the_Western_Roman_Empire", "shape": "dot", "size": 10}, {"id": "Common_language", "label": "Common_language", "shape": "dot", "size": 10}, {"id": "International_communication", "label": "International_communication", "shape": "dot", "size": 10}, {"id": "Scholar", "label": "Scholar", "shape": "dot", "size": 10}, {"id": "Academia", "label": "Academia", "shape": "dot", "size": 10}, {"id": "Europe", "label": "Europe", "shape": "dot", "size": 20}, {"id": "18th_century", "label": "18th_century", "shape": "dot", "size": 10}, {"id": "Romance_languages", "label": "Romance_languages", "shape": "dot", "size": 10}, {"id": "Dead_language", "label": "Dead_language", "shape": "dot", "size": 10}, {"id": "Extinct_language", "label": "Extinct_language", "shape": "dot", "size": 10}, {"id": "Diglossia", "label": "Diglossia", "shape": "dot", "size": 10}, {"id": "Energy_(psychological)", "label": "Energy_(psychological)", "shape": "dot", "size": 10}, {"id": "Physical_activity", "label": "Physical_activity", "shape": "dot", "size": 10}, {"id": "Social_actions", "label": "Social_actions", "shape": "dot", "size": 10}, {"id": "Individual", "label": "Individual", "shape": "dot", "size": 10}, {"id": "Stimulation", "label": "Stimulation", "shape": "dot", "size": 10}, {"id": "Personality_psychology", "label": "Personality_psychology", "shape": "dot", "size": 10}, {"id": "Temperament", "label": "Temperament", "shape": "dot", "size": 10}, {"id": "Genetics", "label": "Genetics", "shape": "dot", "size": 10}, {"id": "Adolescence", "label": "Adolescence", "shape": "dot", "size": 10}, {"id": "Adult", "label": "Adult", "shape": "dot", "size": 10}, {"id": "Parent", "label": "Parent", "shape": "dot", "size": 10}, {"id": "Retirement", "label": "Retirement", "shape": "dot", "size": 10}, {"id": "Psychology", "label": "Psychology", "shape": "dot", "size": 10}, {"id": "Behavior", "label": "Behavior", "shape": "dot", "size": 10}, {"id": "Unconscious_mind", "label": "Unconscious_mind", "shape": "dot", "size": 10}, {"id": "Emergence", "label": "Emergence", "shape": "dot", "size": 10}, {"id": "Brain", "label": "Brain", "shape": "dot", "size": 10}, {"id": "Neuroscience", "label": "Neuroscience", "shape": "dot", "size": 10}, {"id": "Psi_(Greek)", "label": "Psi_(Greek)", "shape": "dot", "size": 10}, {"id": "London", "label": "London", "shape": "dot", "size": 1}, {"id": "List_of_urban_areas_in_the_United_Kingdom", "label": "List_of_urban_areas_in_the_United_Kingdom", "shape": "dot", "size": 10}, {"id": "River_Thames", "label": "River_Thames", "shape": "dot", "size": 10}, {"id": "Estuary", "label": "Estuary", "shape": "dot", "size": 10}, {"id": "North_Sea", "label": "North_Sea", "shape": "dot", "size": 10}, {"id": "City_of_London", "label": "City_of_London", "shape": "dot", "size": 10}, {"id": "Financial_centre", "label": "Financial_centre", "shape": "dot", "size": 20}, {"id": "Metropolis", "label": "Metropolis", "shape": "dot", "size": 10}, {"id": "Counties_of_England", "label": "Counties_of_England", "shape": "dot", "size": 10}, {"id": "Middlesex", "label": "Middlesex", "shape": "dot", "size": 10}, {"id": "Essex", "label": "Essex", "shape": "dot", "size": 10}, {"id": "Surrey", "label": "Surrey", "shape": "dot", "size": 10}, {"id": "Kent", "label": "Kent", "shape": "dot", "size": 10}, {"id": "Hertfordshire", "label": "Hertfordshire", "shape": "dot", "size": 10}, {"id": "Greater_London", "label": "Greater_London", "shape": "dot", "size": 10}, {"id": "Greater_London_Authority", "label": "Greater_London_Authority", "shape": "dot", "size": 10}, {"id": "City_of_Westminster", "label": "City_of_Westminster", "shape": "dot", "size": 10}, {"id": "Government_of_the_United_Kingdom", "label": "Government_of_the_United_Kingdom", "shape": "dot", "size": 10}, {"id": "Parliament_of_the_United_Kingdom", "label": "Parliament_of_the_United_Kingdom", "shape": "dot", "size": 10}, {"id": "Urban_area", "label": "Urban_area", "shape": "dot", "size": 30}, {"id": "United_Kingdom_Census_2011", "label": "United_Kingdom_Census_2011", "shape": "dot", "size": 10}, {"id": "Office_for_National_Statistics", "label": "Office_for_National_Statistics", "shape": "dot", "size": 10}, {"id": "Human_settlement", "label": "Human_settlement", "shape": "dot", "size": 10}, {"id": "Population_density", "label": "Population_density", "shape": "dot", "size": 10}, {"id": "Infrastructure", "label": "Infrastructure", "shape": "dot", "size": 10}, {"id": "Built_environment", "label": "Built_environment", "shape": "dot", "size": 10}, {"id": "Urbanization", "label": "Urbanization", "shape": "dot", "size": 10}, {"id": "Urban_morphology", "label": "Urban_morphology", "shape": "dot", "size": 10}, {"id": "City", "label": "City", "shape": "dot", "size": 20}, {"id": "Town", "label": "Town", "shape": "dot", "size": 20}, {"id": "Conurbation", "label": "Conurbation", "shape": "dot", "size": 10}, {"id": "Suburbs", "label": "Suburbs", "shape": "dot", "size": 10}, {"id": "Urbanism", "label": "Urbanism", "shape": "dot", "size": 10}, {"id": "Rural_area", "label": "Rural_area", "shape": "dot", "size": 10}, {"id": "Village", "label": "Village", "shape": "dot", "size": 20}, {"id": "Hamlet_(place)", "label": "Hamlet_(place)", "shape": "dot", "size": 20}, {"id": "Urban_sociology", "label": "Urban_sociology", "shape": "dot", "size": 10}, {"id": "Urban_anthropology", "label": "Urban_anthropology", "shape": "dot", "size": 10}, {"id": "Natural_environment", "label": "Natural_environment", "shape": "dot", "size": 10}, {"id": "Urban_revolution", "label": "Urban_revolution", "shape": "dot", "size": 10}, {"id": "Civilization", "label": "Civilization", "shape": "dot", "size": 10}, {"id": "Urban_planning", "label": "Urban_planning", "shape": "dot", "size": 10}, {"id": "Exploitation_of_natural_resources", "label": "Exploitation_of_natural_resources", "shape": "dot", "size": 10}, {"id": "Human_impact_on_the_environment", "label": "Human_impact_on_the_environment", "shape": "dot", "size": 10}, {"id": "Geography", "label": "Geography", "shape": "dot", "size": 20}, {"id": "Statistics", "label": "Statistics", "shape": "dot", "size": 10}, {"id": "Archaeology", "label": "Archaeology", "shape": "dot", "size": 10}, {"id": "Community", "label": "Community", "shape": "dot", "size": 10}, {"id": "Solar_System", "label": "Solar_System", "shape": "dot", "size": 10}, {"id": "Eratosthenes", "label": "Eratosthenes", "shape": "dot", "size": 10}, {"id": "World", "label": "World", "shape": "dot", "size": 10}, {"id": "New_York_City", "label": "New_York_City", "shape": "dot", "size": 20}, {"id": "New_York_(state)", "label": "New_York_(state)", "shape": "dot", "size": 10}, {"id": "List_of_United_States_cities_by_population", "label": "List_of_United_States_cities_by_population", "shape": "dot", "size": 20}, {"id": "List_of_United_States_cities_by_population_density", "label": "List_of_United_States_cities_by_population_density", "shape": "dot", "size": 10}, {"id": "New_York_metropolitan_area", "label": "New_York_metropolitan_area", "shape": "dot", "size": 10}, {"id": "Metropolitan_area", "label": "Metropolitan_area", "shape": "dot", "size": 10}, {"id": "Metropolitan_statistical_area", "label": "Metropolitan_statistical_area", "shape": "dot", "size": 10}, {"id": "Combined_statistical_area", "label": "Combined_statistical_area", "shape": "dot", "size": 10}, {"id": "Megacities", "label": "Megacities", "shape": "dot", "size": 10}, {"id": "Culture_of_New_York_City", "label": "Culture_of_New_York_City", "shape": "dot", "size": 10}, {"id": "Media_in_New_York_City", "label": "Media_in_New_York_City", "shape": "dot", "size": 10}, {"id": "The_Entertainment_Capital_of_the_World", "label": "The_Entertainment_Capital_of_the_World", "shape": "dot", "size": 10}, {"id": "Education_in_New_York_City", "label": "Education_in_New_York_City", "shape": "dot", "size": 10}, {"id": "Politics_of_New_York_City", "label": "Politics_of_New_York_City", "shape": "dot", "size": 10}, {"id": "Tourism_in_New_York_City", "label": "Tourism_in_New_York_City", "shape": "dot", "size": 10}, {"id": "Cuisine_of_New_York_City", "label": "Cuisine_of_New_York_City", "shape": "dot", "size": 10}, {"id": "Fashion_capital", "label": "Fashion_capital", "shape": "dot", "size": 10}, {"id": "Sports_in_New_York_City", "label": "Sports_in_New_York_City", "shape": "dot", "size": 10}, {"id": "Headquarters_of_the_United_Nations", "label": "Headquarters_of_the_United_Nations", "shape": "dot", "size": 10}, {"id": "International_diplomacy", "label": "International_diplomacy", "shape": "dot", "size": 10}, {"id": "Safe_haven_currency", "label": "Safe_haven_currency", "shape": "dot", "size": 10}, {"id": "Caput_Mundi", "label": "Caput_Mundi", "shape": "dot", "size": 10}, {"id": "U.S._state", "label": "U.S._state", "shape": "dot", "size": 20}, {"id": "Northeastern_United_States", "label": "Northeastern_United_States", "shape": "dot", "size": 10}, {"id": "List_of_U.S._states_and_territories_by_area", "label": "List_of_U.S._states_and_territories_by_area", "shape": "dot", "size": 10}, {"id": "List_of_states_and_territories_of_the_United_States_by_population", "label": "List_of_states_and_territories_of_the_United_States_by_population", "shape": "dot", "size": 10}, {"id": "Brooklyn", "label": "Brooklyn", "shape": "dot", "size": 10}, {"id": "Queens", "label": "Queens", "shape": "dot", "size": 10}, {"id": "Long_Island", "label": "Long_Island", "shape": "dot", "size": 10}, {"id": "New_Jersey", "label": "New_Jersey", "shape": "dot", "size": 10}, {"id": "Pennsylvania", "label": "Pennsylvania", "shape": "dot", "size": 10}, {"id": "Connecticut", "label": "Connecticut", "shape": "dot", "size": 10}, {"id": "Massachusetts", "label": "Massachusetts", "shape": "dot", "size": 10}, {"id": "Vermont", "label": "Vermont", "shape": "dot", "size": 10}, {"id": "Maritime_boundary", "label": "Maritime_boundary", "shape": "dot", "size": 10}, {"id": "Rhode_Island", "label": "Rhode_Island", "shape": "dot", "size": 10}, {"id": "Canada%E2%80%93United_States_border", "label": "Canada%E2%80%93United_States_border", "shape": "dot", "size": 10}, {"id": "Canadian_provinces", "label": "Canadian_provinces", "shape": "dot", "size": 10}, {"id": "Quebec", "label": "Quebec", "shape": "dot", "size": 10}, {"id": "Ontario", "label": "Ontario", "shape": "dot", "size": 10}, {"id": "United_States", "label": "United_States", "shape": "dot", "size": 10}, {"id": "Federated_state", "label": "Federated_state", "shape": "dot", "size": 10}, {"id": "Political_entity", "label": "Political_entity", "shape": "dot", "size": 10}, {"id": "Political_union", "label": "Political_union", "shape": "dot", "size": 10}, {"id": "Government", "label": "Government", "shape": "dot", "size": 10}, {"id": "Sovereignty", "label": "Sovereignty", "shape": "dot", "size": 10}, {"id": "Federal_government_of_the_United_States", "label": "Federal_government_of_the_United_States", "shape": "dot", "size": 10}, {"id": "Citizenship_in_the_United_States", "label": "Citizenship_in_the_United_States", "shape": "dot", "size": 10}, {"id": "Federal_republic", "label": "Federal_republic", "shape": "dot", "size": 10}, {"id": "Domicile_(law)", "label": "Domicile_(law)", "shape": "dot", "size": 10}, {"id": "Freedom_of_movement_under_United_States_law", "label": "Freedom_of_movement_under_United_States_law", "shape": "dot", "size": 10}, {"id": "Paroled", "label": "Paroled", "shape": "dot", "size": 10}, {"id": "Child_custody", "label": "Child_custody", "shape": "dot", "size": 10}, {"id": "North_America", "label": "North_America", "shape": "dot", "size": 20}, {"id": "Federal_district_of_the_United_States", "label": "Federal_district_of_the_United_States", "shape": "dot", "size": 10}, {"id": "Territories_of_the_United_States", "label": "Territories_of_the_United_States", "shape": "dot", "size": 10}, {"id": "Indian_reservations", "label": "Indian_reservations", "shape": "dot", "size": 10}, {"id": "United_States_Minor_Outlying_Islands", "label": "United_States_Minor_Outlying_Islands", "shape": "dot", "size": 10}, {"id": "List_of_countries_and_dependencies_by_area", "label": "List_of_countries_and_dependencies_by_area", "shape": "dot", "size": 10}, {"id": "American-Canadian_border", "label": "American-Canadian_border", "shape": "dot", "size": 10}, {"id": "American-Mexican_border", "label": "American-Mexican_border", "shape": "dot", "size": 10}, {"id": "Bahamas", "label": "Bahamas", "shape": "dot", "size": 10}, {"id": "Cuba", "label": "Cuba", "shape": "dot", "size": 10}, {"id": "Russia", "label": "Russia", "shape": "dot", "size": 10}, {"id": "List_of_countries_and_dependencies_by_population", "label": "List_of_countries_and_dependencies_by_population", "shape": "dot", "size": 10}, {"id": "Washington,_D.C.", "label": "Washington,_D.C.", "shape": "dot", "size": 10}, {"id": "Continent", "label": "Continent", "shape": "dot", "size": 20}, {"id": "Northern_Hemisphere", "label": "Northern_Hemisphere", "shape": "dot", "size": 10}, {"id": "Western_Hemisphere", "label": "Western_Hemisphere", "shape": "dot", "size": 10}, {"id": "Arctic_Ocean", "label": "Arctic_Ocean", "shape": "dot", "size": 10}, {"id": "Atlantic_Ocean", "label": "Atlantic_Ocean", "shape": "dot", "size": 10}, {"id": "South_America", "label": "South_America", "shape": "dot", "size": 20}, {"id": "Caribbean_Sea", "label": "Caribbean_Sea", "shape": "dot", "size": 10}, {"id": "Pacific_Ocean", "label": "Pacific_Ocean", "shape": "dot", "size": 10}, {"id": "North_American_Plate", "label": "North_American_Plate", "shape": "dot", "size": 10}, {"id": "Greenland", "label": "Greenland", "shape": "dot", "size": 10}, {"id": "Landmass", "label": "Landmass", "shape": "dot", "size": 10}, {"id": "Convention_(norm)", "label": "Convention_(norm)", "shape": "dot", "size": 10}, {"id": "Regions", "label": "Regions", "shape": "dot", "size": 10}, {"id": "Asia", "label": "Asia", "shape": "dot", "size": 10}, {"id": "Africa", "label": "Africa", "shape": "dot", "size": 10}, {"id": "Antarctica", "label": "Antarctica", "shape": "dot", "size": 10}, {"id": "Australia_(continent)", "label": "Australia_(continent)", "shape": "dot", "size": 10}, {"id": "Afro-Eurasia", "label": "Afro-Eurasia", "shape": "dot", "size": 10}, {"id": "Americas", "label": "Americas", "shape": "dot", "size": 10}, {"id": "Eurasia", "label": "Eurasia", "shape": "dot", "size": 10}, {"id": "Zealandia", "label": "Zealandia", "shape": "dot", "size": 10}, {"id": "Region", "label": "Region", "shape": "dot", "size": 10}, {"id": "Area", "label": "Area", "shape": "dot", "size": 10}, {"id": "Land", "label": "Land", "shape": "dot", "size": 10}, {"id": "Ocean", "label": "Ocean", "shape": "dot", "size": 10}, {"id": "Sea", "label": "Sea", "shape": "dot", "size": 10}, {"id": "Island", "label": "Island", "shape": "dot", "size": 10}, {"id": "Physical_geography", "label": "Physical_geography", "shape": "dot", "size": 10}, {"id": "Human_geography", "label": "Human_geography", "shape": "dot", "size": 10}, {"id": "Environmental_geography", "label": "Environmental_geography", "shape": "dot", "size": 10}, {"id": "Jurisdiction_(area)", "label": "Jurisdiction_(area)", "shape": "dot", "size": 10}]);
edges = new vis.DataSet([{"arrows": "to", "from": "Kolkata", "label": 1, "to": "List_of_renamed_Indian_cities_and_states", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "Capital_city", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "India", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "States_and_union_territories_of_India", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "West_Bengal", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "Hooghly_River", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "Bangladesh", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "East_India", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "North-East_India", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "List_of_most_populous_cities_in_India", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "Lakh", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "Crore", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "Kolkata_metropolitan_area", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "List_of_metropolitan_areas_in_India", "weight": 1}, {"arrows": "to", "from": "Kolkata", "label": 1, "to": "Port_of_Kolkata", "weight": 1}, {"arrows": "to", "from": "List_of_renamed_Indian_cities_and_states", "label": 1, "to": "British_Raj", "weight": 1}, {"arrows": "to", "from": "List_of_renamed_Indian_cities_and_states", "label": 1, "to": "United_Kingdom", "weight": 1}, {"arrows": "to", "from": "List_of_renamed_Indian_cities_and_states", "label": 1, "to": "India", "weight": 1}, {"arrows": "to", "from": "List_of_renamed_Indian_cities_and_states", "label": 1, "to": "Endonym_and_exonym", "weight": 1}, {"arrows": "to", "from": "British_Raj", "label": 1, "to": "Hindi_language", "weight": 1}, {"arrows": "to", "from": "British_Raj", "label": 1, "to": "The_Crown", "weight": 1}, {"arrows": "to", "from": "British_Raj", "label": 1, "to": "Indian_subcontinent", "weight": 1}, {"arrows": "to", "from": "British_Raj", "label": 1, "to": "United_Kingdom_of_Great_Britain_and_Ireland", "weight": 1}, {"arrows": "to", "from": "British_Raj", "label": 1, "to": "Presidencies_and_provinces_of_British_India", "weight": 1}, {"arrows": "to", "from": "British_Raj", "label": 1, "to": "British_paramountcy", "weight": 1}, {"arrows": "to", "from": "British_Raj", "label": 1, "to": "Princely_state", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Devanagari", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "ISO_15919", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Indo-Aryan_language", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Hindi_Belt", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "North_India", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Central_India", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "East_India", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Western_India", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Standard_language", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Sanskrit", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Register_(sociolinguistics)", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Hindustani_language", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Old_Hindi", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Delhi", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Northern_India", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Official_language", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Government_of_India", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Indian_English", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Languages_with_official_status_in_India", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "States_of_India", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Union_Territories", "weight": 1}, {"arrows": "to", "from": "Hindi_language", "label": 1, "to": "Scheduled_languages_of_India", "weight": 1}, {"arrows": "to", "from": "Devanagari", "label": 1, "to": "IAST", "weight": 1}, {"arrows": "to", "from": "Devanagari", "label": 1, "to": "Sanskrit_language", "weight": 1}, {"arrows": "to", "from": "Devanagari", "label": 1, "to": "Abugida", "weight": 1}, {"arrows": "to", "from": "Devanagari", "label": 1, "to": "Brahmi_script", "weight": 1}, {"arrows": "to", "from": "Devanagari", "label": 1, "to": "Indian_subcontinent", "weight": 1}, {"arrows": "to", "from": "Devanagari", "label": 1, "to": "List_of_writing_systems_by_adoption", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Union_territory", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "India", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "New_Delhi", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Yamuna", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Uttar_Pradesh", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Haryana", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Ghaziabad", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Faridabad", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Gurgaon", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Noida", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "National_Capital_Region_(India)", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "List_of_metropolitan_areas_in_India", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "List_of_urban_areas_by_population", "weight": 1}, {"arrows": "to", "from": "Delhi", "label": 1, "to": "Tokyo", "weight": 1}, {"arrows": "to", "from": "IAST", "label": 1, "to": "Romanisation", "weight": 1}, {"arrows": "to", "from": "IAST", "label": 1, "to": "Brahmic_family", "weight": 1}, {"arrows": "to", "from": "IAST", "label": 1, "to": "Sanskrit", "weight": 1}, {"arrows": "to", "from": "IAST", "label": 1, "to": "Sir_Charles_Trevelyan,_1st_Baronet", "weight": 1}, {"arrows": "to", "from": "IAST", "label": 1, "to": "William_Jones_(philologist)", "weight": 1}, {"arrows": "to", "from": "IAST", "label": 1, "to": "Monier_Monier-Williams", "weight": 1}, {"arrows": "to", "from": "IAST", "label": 1, "to": "International_Congress_of_Orientalists", "weight": 1}, {"arrows": "to", "from": "Romanisation", "label": 1, "to": "Linguistics", "weight": 1}, {"arrows": "to", "from": "Romanisation", "label": 1, "to": "Writing_system", "weight": 1}, {"arrows": "to", "from": "Romanisation", "label": 1, "to": "Latin_script", "weight": 1}, {"arrows": "to", "from": "Romanisation", "label": 1, "to": "Transliteration", "weight": 1}, {"arrows": "to", "from": "Romanisation", "label": 1, "to": "Transcription_(linguistics)", "weight": 1}, {"arrows": "to", "from": "Romanisation", "label": 1, "to": "Phoneme", "weight": 1}, {"arrows": "to", "from": "Romanisation", "label": 1, "to": "Semantic", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Science", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Scientific_study", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Human", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Language", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Cognition", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Scientific_field", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Academic_discipline", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Social_science", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Natural_science", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Cognitive_science", "weight": 1}, {"arrows": "to", "from": "Linguistics", "label": 1, "to": "Humanities", "weight": 1}, {"arrows": "to", "from": "Science", "label": 1, "to": "Scientific_method", "weight": 1}, {"arrows": "to", "from": "Science", "label": 1, "to": "Knowledge", "weight": 1}, {"arrows": "to", "from": "Science", "label": 1, "to": "Testability", "weight": 1}, {"arrows": "to", "from": "Science", "label": 1, "to": "Explanation", "weight": 1}, {"arrows": "to", "from": "Science", "label": 1, "to": "Prediction", "weight": 1}, {"arrows": "to", "from": "Science", "label": 1, "to": "Universe", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Empirical_evidence", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Knowledge", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Science", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Observation", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Skepticism", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Philosophy_of_science", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Perception", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Hypothesis", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Inductive_reasoning", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Experiment", "weight": 1}, {"arrows": "to", "from": "Scientific_method", "label": 1, "to": "Deductive_reasoning", "weight": 1}, {"arrows": "to", "from": "Empirical_evidence", "label": 1, "to": "Proposition", "weight": 1}, {"arrows": "to", "from": "Empirical_evidence", "label": 1, "to": "Evidence", "weight": 1}, {"arrows": "to", "from": "Empirical_evidence", "label": 1, "to": "Sense", "weight": 1}, {"arrows": "to", "from": "Empirical_evidence", "label": 1, "to": "Experiment", "weight": 1}, {"arrows": "to", "from": "Empirical_evidence", "label": 1, "to": "Science", "weight": 1}, {"arrows": "to", "from": "Empirical_evidence", "label": 1, "to": "Epistemology", "weight": 1}, {"arrows": "to", "from": "Empirical_evidence", "label": 1, "to": "Law", "weight": 1}, {"arrows": "to", "from": "Proposition", "label": 1, "to": "Logic", "weight": 1}, {"arrows": "to", "from": "Proposition", "label": 1, "to": "Linguistics", "weight": 1}, {"arrows": "to", "from": "Proposition", "label": 1, "to": "Sentence_(linguistics)", "weight": 1}, {"arrows": "to", "from": "Proposition", "label": 1, "to": "Philosophy", "weight": 1}, {"arrows": "to", "from": "Proposition", "label": 1, "to": "Meaning_(philosophy)", "weight": 1}, {"arrows": "to", "from": "Proposition", "label": 1, "to": "Truth-bearer", "weight": 1}, {"arrows": "to", "from": "Proposition", "label": 1, "to": "Truth", "weight": 1}, {"arrows": "to", "from": "Proposition", "label": 1, "to": "False_(logic)", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Reason", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Argument", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Deductive_reasoning", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Validity_(logic)", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Inference", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Logical_truth", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Formal_science", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Premise", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Proposition", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Logical_constant", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Formal_system", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Informal_logic", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Formal_language", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Natural_language", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Ampliative", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Formal_fallacy", "weight": 1}, {"arrows": "to", "from": "Logic", "label": 1, "to": "Informal_fallacies", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Consciousness", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Logic", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Logical_consequence", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Information", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Truth", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Human", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Philosophy", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Science", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Language", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Mathematics", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Art", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Humans", "weight": 1}, {"arrows": "to", "from": "Reason", "label": 1, "to": "Rationality", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Sentience", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Awareness", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Mind", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Introspection", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Thought", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Imagination", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Volition_(psychology)", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Cognition", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Experience", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Feeling", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Perception", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Meta-cognition", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Self-awareness", "weight": 1}, {"arrows": "to", "from": "Consciousness", "label": 1, "to": "Higher-order_theories_of_consciousness", "weight": 1}, {"arrows": "to", "from": "Mathematics", "label": 1, "to": "Ancient_Greek_language", "weight": 1}, {"arrows": "to", "from": "Mathematics", "label": 1, "to": "Arithmetic", "weight": 1}, {"arrows": "to", "from": "Mathematics", "label": 1, "to": "Number_theory", "weight": 1}, {"arrows": "to", "from": "Mathematics", "label": 1, "to": "Algebra", "weight": 1}, {"arrows": "to", "from": "Mathematics", "label": 1, "to": "Geometry", "weight": 1}, {"arrows": "to", "from": "Mathematics", "label": 1, "to": "Calculus", "weight": 1}, {"arrows": "to", "from": "Mathematics", "label": 1, "to": "Mathematical_analysis", "weight": 1}, {"arrows": "to", "from": "Art", "label": 1, "to": "Human_behavior", "weight": 1}, {"arrows": "to", "from": "Art", "label": 1, "to": "Imagination", "weight": 1}, {"arrows": "to", "from": "Art", "label": 1, "to": "Beauty", "weight": 1}, {"arrows": "to", "from": "Art", "label": 1, "to": "Concept", "weight": 1}, {"arrows": "to", "from": "Art", "label": 1, "to": "Idea", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "List_of_renamed_Indian_cities_and_states", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Capital_city", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "States_and_union_territories_of_India", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Maharashtra", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "India", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "United_Nations", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "List_of_cities_in_India_by_population", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Delhi", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "List_of_largest_cities", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Crore", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "City_proper", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Municipal_Corporation_of_Greater_Mumbai", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Mumbai_Metropolitan_Region", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Konkan", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Natural_harbour", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Alpha_world_city", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Millionaire", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Billionaire", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "List_of_World_Heritage_Sites_in_India", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Elephanta_Caves", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "Chhatrapati_Shivaji_Terminus", "weight": 1}, {"arrows": "to", "from": "Mumbai", "label": 1, "to": "The_Victorian_and_Art_Deco_Ensemble_of_Mumbai", "weight": 1}, {"arrows": "to", "from": "Union_territory", "label": 1, "to": "Hindi_language", "weight": 1}, {"arrows": "to", "from": "Union_territory", "label": 1, "to": "Administrative_divisions_of_India", "weight": 1}, {"arrows": "to", "from": "Union_territory", "label": 1, "to": "India", "weight": 1}, {"arrows": "to", "from": "Union_territory", "label": 1, "to": "States_and_union_territories_of_India", "weight": 1}, {"arrows": "to", "from": "Union_territory", "label": 1, "to": "Federal_territory", "weight": 1}, {"arrows": "to", "from": "Union_territory", "label": 1, "to": "Government_of_India", "weight": 1}, {"arrows": "to", "from": "Ancient_Greek_language", "label": 1, "to": "Greek_language", "weight": 1}, {"arrows": "to", "from": "Ancient_Greek_language", "label": 1, "to": "Ancient_Greece", "weight": 1}, {"arrows": "to", "from": "Ancient_Greek_language", "label": 1, "to": "Classical_antiquity", "weight": 1}, {"arrows": "to", "from": "Ancient_Greek_language", "label": 1, "to": "Mycenaean_Greek", "weight": 1}, {"arrows": "to", "from": "Ancient_Greek_language", "label": 1, "to": "Greek_Dark_Ages", "weight": 1}, {"arrows": "to", "from": "Ancient_Greek_language", "label": 1, "to": "Archaic_Greece", "weight": 1}, {"arrows": "to", "from": "Ancient_Greek_language", "label": 1, "to": "Classical_Greece", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Modern_Greek", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Ancient_Greek_language", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Indo-European_languages", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Greece", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Cyprus", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Albania", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Balkans", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Black_Sea", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Asia_Minor", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Eastern_Mediterranean", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "List_of_languages_by_first_written_accounts", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Greek_alphabet", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Linear_B", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Cypriot_syllabary", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Phoenician_alphabet", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Latin_script", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Cyrillic", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Armenian_alphabet", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Coptic_alphabet", "weight": 1}, {"arrows": "to", "from": "Greek_language", "label": 1, "to": "Gothic_alphabet", "weight": 1}, {"arrows": "to", "from": "Modern_Greek", "label": 1, "to": "Dialect", "weight": 1}, {"arrows": "to", "from": "Modern_Greek", "label": 1, "to": "Greek_language", "weight": 1}, {"arrows": "to", "from": "Modern_Greek", "label": 1, "to": "Varieties_of_Modern_Greek", "weight": 1}, {"arrows": "to", "from": "Modern_Greek", "label": 1, "to": "Medieval_Greek", "weight": 1}, {"arrows": "to", "from": "Modern_Greek", "label": 1, "to": "Byzantine_Empire", "weight": 1}, {"arrows": "to", "from": "Dialect", "label": 1, "to": "Latin", "weight": 1}, {"arrows": "to", "from": "Dialect", "label": 1, "to": "Ancient_Greek", "weight": 1}, {"arrows": "to", "from": "Dialect", "label": 1, "to": "Linguistics", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Classical_language", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Italic_languages", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Indo-European_languages", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Dialect", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Tiber", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Rome", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Latium", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Roman_Republic", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Italy_(geographical_region)", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Roman_Empire", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Fall_of_the_Western_Roman_Empire", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Common_language", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "International_communication", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Science", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Scholar", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Academia", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Europe", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "18th_century", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Romance_languages", "weight": 1}, {"arrows": "to", "from": "Latin", "label": 1, "to": "Dead_language", "weight": 1}, {"arrows": "to", "from": "Classical_language", "label": 1, "to": "Language", "weight": 1}, {"arrows": "to", "from": "Classical_language", "label": 1, "to": "Extinct_language", "weight": 1}, {"arrows": "to", "from": "Classical_language", "label": 1, "to": "Diglossia", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Energy_(psychological)", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Physical_activity", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Social_actions", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Human", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Individual", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Stimulation", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Personality_psychology", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Temperament", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Genetics", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Adolescence", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Adult", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Parent", "weight": 1}, {"arrows": "to", "from": "Human_behavior", "label": 1, "to": "Retirement", "weight": 1}, {"arrows": "to", "from": "Energy_(psychological)", "label": 1, "to": "Psychology", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Science", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Mind", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Behavior", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Consciousness", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Unconscious_mind", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Feeling", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Thought", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Natural_science", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Social_science", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Emergence", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Brain", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Neuroscience", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Psi_(Greek)", "weight": 1}, {"arrows": "to", "from": "Psychology", "label": 1, "to": "Greek_alphabet", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "List_of_urban_areas_in_the_United_Kingdom", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "River_Thames", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Estuary", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "North_Sea", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "City_of_London", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Financial_centre", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Roman_Empire", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Metropolis", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Counties_of_England", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Middlesex", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Essex", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Surrey", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Kent", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Hertfordshire", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Greater_London", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Greater_London_Authority", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "City_of_Westminster", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Government_of_the_United_Kingdom", "weight": 1}, {"arrows": "to", "from": "London", "label": 1, "to": "Parliament_of_the_United_Kingdom", "weight": 1}, {"arrows": "to", "from": "List_of_urban_areas_in_the_United_Kingdom", "label": 1, "to": "Urban_area", "weight": 1}, {"arrows": "to", "from": "List_of_urban_areas_in_the_United_Kingdom", "label": 1, "to": "United_Kingdom", "weight": 1}, {"arrows": "to", "from": "List_of_urban_areas_in_the_United_Kingdom", "label": 1, "to": "United_Kingdom_Census_2011", "weight": 1}, {"arrows": "to", "from": "List_of_urban_areas_in_the_United_Kingdom", "label": 1, "to": "Office_for_National_Statistics", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Human_settlement", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Population_density", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Infrastructure", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Built_environment", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Urbanization", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Urban_morphology", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "City", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Town", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Conurbation", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Suburbs", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Urbanism", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Rural_area", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Village", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Hamlet_(place)", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Urban_sociology", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Urban_anthropology", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Natural_environment", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Urban_revolution", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Civilization", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Urban_planning", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Exploitation_of_natural_resources", "weight": 1}, {"arrows": "to", "from": "Urban_area", "label": 1, "to": "Human_impact_on_the_environment", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "Geography", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "Statistics", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "Archaeology", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "Community", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "Urban_area", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "Hamlet_(place)", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "Village", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "Town", "weight": 1}, {"arrows": "to", "from": "Human_settlement", "label": 1, "to": "City", "weight": 1}, {"arrows": "to", "from": "Geography", "label": 1, "to": "Ancient_Greek", "weight": 1}, {"arrows": "to", "from": "Geography", "label": 1, "to": "Science", "weight": 1}, {"arrows": "to", "from": "Geography", "label": 1, "to": "Solar_System", "weight": 1}, {"arrows": "to", "from": "Geography", "label": 1, "to": "Eratosthenes", "weight": 1}, {"arrows": "to", "from": "Geography", "label": 1, "to": "World", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "New_York_(state)", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "List_of_United_States_cities_by_population", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "List_of_United_States_cities_by_population_density", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "New_York_metropolitan_area", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Metropolitan_area", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Urban_area", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Metropolitan_statistical_area", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Combined_statistical_area", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Megacities", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Culture_of_New_York_City", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Media_in_New_York_City", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "The_Entertainment_Capital_of_the_World", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Education_in_New_York_City", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Politics_of_New_York_City", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Tourism_in_New_York_City", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Cuisine_of_New_York_City", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Fashion_capital", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Sports_in_New_York_City", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Headquarters_of_the_United_Nations", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "International_diplomacy", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Safe_haven_currency", "weight": 1}, {"arrows": "to", "from": "New_York_City", "label": 1, "to": "Caput_Mundi", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "U.S._state", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Northeastern_United_States", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "New_York_City", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "List_of_U.S._states_and_territories_by_area", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "List_of_states_and_territories_of_the_United_States_by_population", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Brooklyn", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Queens", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Long_Island", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "New_Jersey", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Pennsylvania", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Connecticut", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Massachusetts", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Vermont", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Maritime_boundary", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Rhode_Island", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Canada%E2%80%93United_States_border", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Canadian_provinces", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Quebec", "weight": 1}, {"arrows": "to", "from": "New_York_(state)", "label": 1, "to": "Ontario", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "United_States", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Federated_state", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Political_entity", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Political_union", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Government", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Sovereignty", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Federal_government_of_the_United_States", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Citizenship_in_the_United_States", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Federal_republic", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Domicile_(law)", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Freedom_of_movement_under_United_States_law", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Paroled", "weight": 1}, {"arrows": "to", "from": "U.S._state", "label": 1, "to": "Child_custody", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "North_America", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "U.S._state", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Federal_district_of_the_United_States", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Territories_of_the_United_States", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Indian_reservations", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "United_States_Minor_Outlying_Islands", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "List_of_countries_and_dependencies_by_area", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "American-Canadian_border", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "American-Mexican_border", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Bahamas", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Cuba", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Russia", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "List_of_countries_and_dependencies_by_population", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Capital_city", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Washington,_D.C.", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "List_of_United_States_cities_by_population", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "Financial_centre", "weight": 1}, {"arrows": "to", "from": "United_States", "label": 1, "to": "New_York_City", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "Continent", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "Northern_Hemisphere", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "Western_Hemisphere", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "Arctic_Ocean", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "Atlantic_Ocean", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "South_America", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "Caribbean_Sea", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "Pacific_Ocean", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "North_American_Plate", "weight": 1}, {"arrows": "to", "from": "North_America", "label": 1, "to": "Greenland", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Landmass", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Convention_(norm)", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Regions", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Asia", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Africa", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "North_America", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "South_America", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Antarctica", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Europe", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Australia_(continent)", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Afro-Eurasia", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Americas", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Eurasia", "weight": 1}, {"arrows": "to", "from": "Continent", "label": 1, "to": "Zealandia", "weight": 1}, {"arrows": "to", "from": "Landmass", "label": 1, "to": "Region", "weight": 1}, {"arrows": "to", "from": "Landmass", "label": 1, "to": "Area", "weight": 1}, {"arrows": "to", "from": "Landmass", "label": 1, "to": "Land", "weight": 1}, {"arrows": "to", "from": "Landmass", "label": 1, "to": "Ocean", "weight": 1}, {"arrows": "to", "from": "Landmass", "label": 1, "to": "Sea", "weight": 1}, {"arrows": "to", "from": "Landmass", "label": 1, "to": "Continent", "weight": 1}, {"arrows": "to", "from": "Landmass", "label": 1, "to": "Island", "weight": 1}, {"arrows": "to", "from": "Region", "label": 1, "to": "Geography", "weight": 1}, {"arrows": "to", "from": "Region", "label": 1, "to": "Physical_geography", "weight": 1}, {"arrows": "to", "from": "Region", "label": 1, "to": "Human_geography", "weight": 1}, {"arrows": "to", "from": "Region", "label": 1, "to": "Environmental_geography", "weight": 1}, {"arrows": "to", "from": "Region", "label": 1, "to": "Jurisdiction_(area)", "weight": 1}]);
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": true
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": true,
"type": "dynamic"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
// if this network requires displaying the configure window,
// put it in its div
options.configure["container"] = document.getElementById("config");
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>