forked from isdata-org/what-links-to-what
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WhatLinksToWhat.dot
240 lines (197 loc) · 4.56 KB
/
WhatLinksToWhat.dot
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
digraph G {
rankdir=LR
concentrate=true
/*
I'm bad at colors, someone should figure out a better scheme:
http://www.graphviz.org/doc/info/colors.html
http://colorbrewer2.org/ helps a lot
*/
// http://stackoverflow.com/questions/14662092/does-the-dot-language-support-variables-aliases
// You can fill in the colors for the nodes here. The bash script will take care of the rest
/****** Define all the Types of Nodes and their colors here ******/
/*** Industrial Classifications **/
node [fillcolor = "#d73027", style=filled]
NACE
ISIC
NAICS
ANZSIC
"Categories.xml"
IPPC
SIC
SNAP97
"NACE/CLIO"
JSIC /* Japanese Standard Industrial Classification */
/*** Product or Flow Classifications **/
node [fillcolor = "#f46d43", style=filled]
BEC
BTN
CAS
CCT
CN
COICOP
CPA
CPC
EBOPS
HS
LALL
NAPCS /** https://en.wikipedia.org/wiki/North_American_Product_Classification_System **/
NHM
NIMEXE
NIPRO
NST
"NST/R"
PRODCOM
SITC
node [fillcolor = "#4575b4", style=filled]
EWC
LOW
node [fillcolor = "#abd9e9", style=filled]
NUTS
WGS84
node [fillcolor = "#74add1", style=filled]
"Domestic IO"
"International IO"
node [fillcolor = "#fdae61", style=filled]
EcoInvent
USDA
CPM
NREL
ELCD
NEEDS
node [fillcolor = "#fee090", style=filled]
"E-PRTR"
LCPD
"National Business Registries"
TRI
node [fillcolor = "#e0f3f8", style=filled]
"Global Synergy Database"
"ie.tudelft.nl"
"NISP Case Studies"
"ISDATA open material synergy DB"
"International Survey on Eco-Industrial Parks"
/** Default color for everything else **/
node [style=filled, fillcolor=white]
/****** Define all the types of edges (connections here) ******/
/** Concordances between classification systems **/
NACE -> ISIC [dir="both"]
NAICS -> ISIC [dir="both"]
NACE -> NAICS [dir="both"]
CPA -> NACE [dir="both"] /** TODO where does this occur? **/
EWC -> LOW [dir="both"]
EWC -> NACE [dir="both"]
LOW -> NACE [dir="both"] /** TODO where does this occur? **/
ANZSIC -> ISIC [dir="both"]
NAICS -> NAPCS [dir="both"]
/** LCA Data Sets **/
ISIC -> EcoInvent
CAS -> EcoInvent
USDA -> ISIC
"Categories.xml" -> NREL
"Categories.xml" -> NEEDS
/** Other Data Sets **/
SIC -> TRI
NAICS -> TRI
/*
TRI -> "Pollution Prevention Activity Codes"
*/
TRI -> WGS84
"E-PRTR" -> WGS84
NACE -> "E-PRTR"
NUTS -> "E-PRTR"
IPPC -> "E-PRTR"
"NUTS" -> WGS84
"ISDATA open material synergy DB" -> NACE
"ISDATA open material synergy DB" -> EWC
/*
CPA -> "SE IO"
NACE -> "SE IO"
*/
NACE -> "Domestic IO"
NACE -> "International IO"
NACE -> "National Business Registries"
"National Business Registries" -> WGS84
/*
"National Business Registries" -> "Economic Data"
*/
/*
NACE -> "Eurostat"
"Eurostat" -> "Economic Data"
"Eurostat" -> "Social Data"
*/
/*
LCPD -> "Heat Output"
*/
"Domestic IO" -> "International IO"
/*
"Domestic IO" -> "SE IO"
*/
"International Survey on Eco-Industrial Parks" -> WGS84
"ie.tudelft.nl" -> WGS84
BEC -> CN
BEC -> SITC
BEC -> HS
BTN -> SITC
CCT -> NIMEXE
NIMEXE -> SITC
CCT -> SITC
CN -> CPA
CN -> "NST/R"
CN -> PRODCOM
CN -> SITC
CN -> HS
CN -> NIMEXE
CN -> NST
COICOP -> CPC
COICOP -> CPA
CPA -> CPC
CPA -> NST
CPA -> EBOPS
CPA -> HS
CPC -> HS
CPC -> ISIC
CPC -> PRODCOM
EBOPS -> CPA
EBOPS -> CPC
EWC -> LOW
HS -> SIC
HS -> SITC
HS -> PRODCOM
ISIC -> NACE
ISIC -> CPC
ISIC -> SITC
ISIC -> NAICS
JSIC -> NACE /* Japanese Standard Industrial Classification */
LALL -> SITC
NACE -> "NACE/CLIO"
NACE -> NAICS
NHM -> NST
NIMEXE -> "NACE/CLIO"
NIMEXE -> NIPRO
NIMEXE -> CN
SNAP97 -> NACE
SIC -> ISIC
SIC -> NACE
/* HS -> "Product Complexity Index - Observatory of Economic Complexity" */
// CD: Don't know how to move this to the top right corner
subgraph cluster_legend {
label = "Legend";
"Industrial Classifications" [fillcolor = "#d73027", style=filled]
"Product/Flow Classifications" [fillcolor = "#f46d43", style=filled]
"LCA Databases" [fillcolor = "#fdae61", style=filled]
"Facility-level Data" [fillcolor = "#fee090", style=filled]
"IS Case Studies" [fillcolor = "#e0f3f8", style=filled]
"Geo Data" [fillcolor = "#abd9e9", style=filled]
"Waste Classification" [fillcolor = "#4575b4", style=filled]
}
/*
Don't know where to put this yet:
Very detailed overview of concordances
http://ec.europa.eu/eurostat/ramon/relations/index.cfm?TargetUrl=LST_REL
classification = detailed categorization/structure to a group of things/artiacts
correlation = linking synonyms between classification data
multi-attribute = linking seperate data types (groups of artifacts??) to other seperate data types
I guess we could classify the data types
economic/MFA/industrial geography
http://scb.se/en_/Finding-statistics/Statistics-by-subject-area/Business-activities/
*/
}