-
Notifications
You must be signed in to change notification settings - Fork 1
/
servers-example.json
2046 lines (2046 loc) · 89.5 KB
/
servers-example.json
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tutorial-server": {
"url": "https://activeui-tutorial-server.activeviam.com:9090/pivot",
"dataModel": {
"catalogs": [
{
"name": "atoti",
"cubes": [
{
"name": "Green-growth",
"caption": "Green-growth",
"measures": [
{
"name": "Contribution of natural capital (percentage point).MEAN",
"caption": "Contribution of natural capital (percentage point).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Water (% of total).MEAN",
"caption": "Water (% of total).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "National expenditure on environmental protection (% of GDP).MEAN",
"caption": "National expenditure on environmental protection (% of GDP).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Intact forest landscape (km2).MEAN",
"caption": "Intact forest landscape (km2).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Women (% of total population).MEAN",
"caption": "Women (% of total population).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Renewable energy public R&D budget (% of total energy public R&D).MEAN",
"caption": "Renewable energy public R&D budget (% of total energy public R&D).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Welfare costs of premature deaths from exposure to lead (% of GDP).MEAN",
"caption": "Welfare costs of premature deaths from exposure to lead (% of GDP).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Fossil fuel public R&D budget (excluding CCS) (% of total energy public R&D).MEAN",
"caption": "Fossil fuel public R&D budget (excluding CCS) (% of total energy public R&D).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Total freshwater abstraction (m3 per capita).MEAN",
"caption": "Total freshwater abstraction (m3 per capita).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Residential electricity price (USD per kWh).MEAN",
"caption": "Residential electricity price (USD per kWh).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Gain of natural and semi-natural vegetated land (% since 1992).MEAN",
"caption": "Gain of natural and semi-natural vegetated land (% since 1992).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Mortality from exposure to ambient ozone (per 1M inhabitant).MEAN",
"caption": "Mortality from exposure to ambient ozone (per 1M inhabitant).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "ODA - environment sector (% of total allocable ODA).MEAN",
"caption": "ODA - environment sector (% of total allocable ODA).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Electricity support (% of total fossil fuel support).MEAN",
"caption": "Electricity support (% of total fossil fuel support).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Mean population exposure to PM2.5.MEAN",
"caption": "Mean population exposure to PM2.5.MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Diesel tax (USD per litre).MEAN",
"caption": "Diesel tax (USD per litre).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Welfare costs of premature mortalities from exposure to ambient PM2.5 (% of GDP).MEAN",
"caption": "Welfare costs of premature mortalities from exposure to ambient PM2.5 (% of GDP).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Conversion of not-water to permanent water surface (% permanent water; since 1984).MEAN",
"caption": "Conversion of not-water to permanent water surface (% permanent water; since 1984).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "TPES per capita (Tonne of oil equivalent).MEAN",
"caption": "TPES per capita (Tonne of oil equivalent).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Conversion of permanent to seasonal water surface (% permanent water; since 1984).MEAN",
"caption": "Conversion of permanent to seasonal water surface (% permanent water; since 1984).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "CO2 emissions from air transport per capita (tonne).MEAN",
"caption": "CO2 emissions from air transport per capita (tonne).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Mortality from exposure to ambient PM2.5 (per 1M inhabitants).MEAN",
"caption": "Mortality from exposure to ambient PM2.5 (per 1M inhabitants).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "GDP per unit of TPES (USD).MEAN",
"caption": "GDP per unit of TPES (USD).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Petrol tax (USD per litre).MEAN",
"caption": "Petrol tax (USD per litre).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Gas support (% of total fossil fuel support).MEAN",
"caption": "Gas support (% of total fossil fuel support).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Development of environment-related technologies (inventions per capita).MEAN",
"caption": "Development of environment-related technologies (inventions per capita).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Total renewable freshwater per capita (m3 per capita).MEAN",
"caption": "Total renewable freshwater per capita (m3 per capita).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Percentage of population exposed to > 10 micrograms per m3.MEAN",
"caption": "Percentage of population exposed to > 10 micrograms per m3.MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Real GDP per capita (USD).MEAN",
"caption": "Real GDP per capita (USD).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Labour tax revenue (% of total tax revenue).MEAN",
"caption": "Labour tax revenue (% of total tax revenue).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Environmentally related government R&D budget (% of total government R&D).MEAN",
"caption": "Environmentally related government R&D budget (% of total government R&D).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Loss of natural and semi-natural vegetated land (% since 2004).MEAN",
"caption": "Loss of natural and semi-natural vegetated land (% since 2004).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Demand-based CO2 intensity; energy-related CO2 per capita (tonne).MEAN",
"caption": "Demand-based CO2 intensity; energy-related CO2 per capita (tonne).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Non-energy material productivity; GDP per unit of DMC (USD per kg).MEAN",
"caption": "Non-energy material productivity; GDP per unit of DMC (USD per kg).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Fossil fuel consumer support (% of total tax revenue).MEAN",
"caption": "Fossil fuel consumer support (% of total tax revenue).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "ODA - all sectors - climate change mitigation (% of total ODA).MEAN",
"caption": "ODA - all sectors - climate change mitigation (% of total ODA).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Renewable electricity (% of total electricity generation).MEAN",
"caption": "Renewable electricity (% of total electricity generation).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Intact forest landscape loss (% since 2000).MEAN",
"caption": "Intact forest landscape loss (% since 2000).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Mean feed-in tariff for solar PV electricity generation (USD).MEAN",
"caption": "Mean feed-in tariff for solar PV electricity generation (USD).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Fossil fuel consumer support (% of total fossil fuel support).MEAN",
"caption": "Fossil fuel consumer support (% of total fossil fuel support).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Net migration.SUM",
"caption": "Net migration.SUM",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Conversion of permanent water to not-water surface (% of permanent water; since 1984).MEAN",
"caption": "Conversion of permanent water to not-water surface (% of permanent water; since 1984).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Energy consumption in agriculture (% of total energy consumption).MEAN",
"caption": "Energy consumption in agriculture (% of total energy consumption).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "ODA - water supply and sanitation sector (% of total allocable ODA).MEAN",
"caption": "ODA - water supply and sanitation sector (% of total allocable ODA).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Irrigated land (% of agricultural land).MEAN",
"caption": "Irrigated land (% of agricultural land).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Environmentally related taxes (% of GDP).MEAN",
"caption": "Environmentally related taxes (% of GDP).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Life expectancy at birth.MEAN",
"caption": "Life expectancy at birth.MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Cropland (% of total).MEAN",
"caption": "Cropland (% of total).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Non-metallic minerals (% of DMC).MEAN",
"caption": "Non-metallic minerals (% of DMC).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Conversion from cropland to artificial surfaces (% since 1992).MEAN",
"caption": "Conversion from cropland to artificial surfaces (% since 1992).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Adjustment for pollution abatement (percentage point).MEAN",
"caption": "Adjustment for pollution abatement (percentage point).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Forest Birds (Index; 2000=100).MEAN",
"caption": "Forest Birds (Index; 2000=100).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Coal support (% of total fossil fuel support).MEAN",
"caption": "Coal support (% of total fossil fuel support).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Demand-based CO2 productivity; GDP per unit of energy-related CO2 emissions (USD per kg).MEAN",
"caption": "Demand-based CO2 productivity; GDP per unit of energy-related CO2 emissions (USD per kg).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Mean feed-in tariff for wind electricity generation (USD).MEAN",
"caption": "Mean feed-in tariff for wind electricity generation (USD).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Municipal waste incinerated (% treated waste).MEAN",
"caption": "Municipal waste incinerated (% treated waste).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Relative advantage in environment-related technology.MEAN",
"caption": "Relative advantage in environment-related technology.MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Biomass (% of DMC).MEAN",
"caption": "Biomass (% of DMC).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Industry electricity price (USD per kWh).MEAN",
"caption": "Industry electricity price (USD per kWh).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Threatened vascular plant species (% of total known species).MEAN",
"caption": "Threatened vascular plant species (% of total known species).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Demand-based CO2 emissions (tonne).SUM",
"caption": "Demand-based CO2 emissions (tonne).SUM",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Environmentally adjusted multifactor productivity growth (percentage point).MEAN",
"caption": "Environmentally adjusted multifactor productivity growth (percentage point).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Conversion from natural and semi-natural land to cropland (% since 1992).MEAN",
"caption": "Conversion from natural and semi-natural land to cropland (% since 1992).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "CO2 emissions from air transport per unit of GDP (kg).MEAN",
"caption": "CO2 emissions from air transport per unit of GDP (kg).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Children per woman.MEAN",
"caption": "Children per woman.MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Municipal waste recycled or composted (% treated waste).MEAN",
"caption": "Municipal waste recycled or composted (% treated waste).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Farmland Birds (Index; 2000=100).MEAN",
"caption": "Farmland Birds (Index; 2000=100).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Mortality from exposure to lead (per 1M inhabitant).MEAN",
"caption": "Mortality from exposure to lead (per 1M inhabitant).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Water stress (total freshwater abstraction as % total internal renewable resources).MEAN",
"caption": "Water stress (total freshwater abstraction as % total internal renewable resources).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Energy consumption in other sectors (% of total energy consumption).MEAN",
"caption": "Energy consumption in other sectors (% of total energy consumption).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Total primary energy supply (index; 2000=100).MEAN",
"caption": "Total primary energy supply (index; 2000=100).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Fossil fuel consumer support (% energy related tax revenue).MEAN",
"caption": "Fossil fuel consumer support (% energy related tax revenue).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Value added in industry (% of total value added).MEAN",
"caption": "Value added in industry (% of total value added).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Metals (% of DMC).MEAN",
"caption": "Metals (% of DMC).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Development of environment-related technologies (% of inventions worldwide).MEAN",
"caption": "Development of environment-related technologies (% of inventions worldwide).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Seasonal surface water (% of total surface).MEAN",
"caption": "Seasonal surface water (% of total surface).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Welfare costs of premature mortalities from exposure to residential radon (% of GDP).MEAN",
"caption": "Welfare costs of premature mortalities from exposure to residential radon (% of GDP).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Built up area per capita (m2).MEAN",
"caption": "Built up area per capita (m2).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Threatened bird species (% of total known species).MEAN",
"caption": "Threatened bird species (% of total known species).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Development of environment-related technologies (% of all technologies).MEAN",
"caption": "Development of environment-related technologies (% of all technologies).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "CO2 emissions per unit of GDP.MEAN",
"caption": "CO2 emissions per unit of GDP.MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Population; ages 65 and above (% of total).MEAN",
"caption": "Population; ages 65 and above (% of total).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Total primary energy supply (tonne of oil equivalent).SUM",
"caption": "Total primary energy supply (tonne of oil equivalent).SUM",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Population density (inhabitants per km2).SUM",
"caption": "Population density (inhabitants per km2).SUM",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Water stress (total freshwater abstraction as % total available renewable resources).MEAN",
"caption": "Water stress (total freshwater abstraction as % total available renewable resources).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Gain of natural and semi-natural vegetated land (% since 2004).MEAN",
"caption": "Gain of natural and semi-natural vegetated land (% since 2004).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Environmentally related R&D expenditure (% of GDP).MEAN",
"caption": "Environmentally related R&D expenditure (% of GDP).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "ODA - all sectors - biodiversity (% of total ODA).MEAN",
"caption": "ODA - all sectors - biodiversity (% of total ODA).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Population connected to public sewerage (% of total population).MEAN",
"caption": "Population connected to public sewerage (% of total population).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Emissions priced > 60€ per tonne of CO2 (% of total emissions).MEAN",
"caption": "Emissions priced > 60€ per tonne of CO2 (% of total emissions).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Production-based CO2 emissions (index; 2000=100).MEAN",
"caption": "Production-based CO2 emissions (index; 2000=100).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Real GDP (Index; 2000=100).MEAN",
"caption": "Real GDP (Index; 2000=100).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Petrol end-user price (USD per litre).MEAN",
"caption": "Petrol end-user price (USD per litre).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Environmentally related ODA (% of total ODA).MEAN",
"caption": "Environmentally related ODA (% of total ODA).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Conversion from natural and semi-natural land to artificial surfaces (% since 1992).MEAN",
"caption": "Conversion from natural and semi-natural land to artificial surfaces (% since 1992).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Municipal waste disposed to landfills; % treated waste.MEAN",
"caption": "Municipal waste disposed to landfills; % treated waste.MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Environmentally related taxes (% of total tax revenue).MEAN",
"caption": "Environmentally related taxes (% of total tax revenue).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Labour tax revenue (% of GDP).MEAN",
"caption": "Labour tax revenue (% of GDP).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Value added in services (% of total value added).MEAN",
"caption": "Value added in services (% of total value added).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Total fossil fuel support; % of total tax revenue.MEAN",
"caption": "Total fossil fuel support; % of total tax revenue.MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Natural and semi-natural vegetated land (% of total).MEAN",
"caption": "Natural and semi-natural vegetated land (% of total).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Marine protected area (% of total exclusive economic zone).MEAN",
"caption": "Marine protected area (% of total exclusive economic zone).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "GDP per unit of energy-related CO2 emissions (USD per kg).MEAN",
"caption": "GDP per unit of energy-related CO2 emissions (USD per kg).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Diesel end-user price (USD per litre).MEAN",
"caption": "Diesel end-user price (USD per litre).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Permanent surface water (% of total surface).MEAN",
"caption": "Permanent surface water (% of total surface).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Value added in agriculture (% of total value added).MEAN",
"caption": "Value added in agriculture (% of total value added).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Emissions priced > 30€ per tonne of CO2 (% of total emissions).MEAN",
"caption": "Emissions priced > 30€ per tonne of CO2 (% of total emissions).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Sales of pesticides per unit of agricultural land (kg).MEAN",
"caption": "Sales of pesticides per unit of agricultural land (kg).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Renewable energy supply (excluding solid biofuels) (% of total energy supply).MEAN",
"caption": "Renewable energy supply (excluding solid biofuels) (% of total energy supply).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Bare land (% of total).MEAN",
"caption": "Bare land (% of total).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Population; ages 15-64 (% of total).MEAN",
"caption": "Population; ages 15-64 (% of total).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Population.SUM",
"caption": "Population.SUM",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Energy consumption in services (% of total energy consumption).MEAN",
"caption": "Energy consumption in services (% of total energy consumption).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Energy consumption in transport (% of total energy consumption).MEAN",
"caption": "Energy consumption in transport (% of total energy consumption).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Intensity of use of forest resources.MEAN",
"caption": "Intensity of use of forest resources.MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Petroleum support (% of total fossil fuel support).MEAN",
"caption": "Petroleum support (% of total fossil fuel support).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Forest resource stocks (m3).SUM",
"caption": "Forest resource stocks (m3).SUM",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Mortality from exposure to residential radon (per 1M inhabitant).MEAN",
"caption": "Mortality from exposure to residential radon (per 1M inhabitant).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Terrestrial protected area (% of land area).MEAN",
"caption": "Terrestrial protected area (% of land area).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Phosphorus balance per hectare (kg).MEAN",
"caption": "Phosphorus balance per hectare (kg).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Loss of natural and semi-natural vegetated land (% since 1992).MEAN",
"caption": "Loss of natural and semi-natural vegetated land (% since 1992).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Road transport-related tax revenue (% of total environmental tax revenue).MEAN",
"caption": "Road transport-related tax revenue (% of total environmental tax revenue).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Energy related tax revenue (% of total environmental tax revenue).MEAN",
"caption": "Energy related tax revenue (% of total environmental tax revenue).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Municipal waste generated (kg per capita).MEAN",
"caption": "Municipal waste generated (kg per capita).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Population with access to improved drinking water sources (% of total population).MEAN",
"caption": "Population with access to improved drinking water sources (% of total population).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Energy-related CO2 per capita (Tonne).MEAN",
"caption": "Energy-related CO2 per capita (Tonne).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Annual surface temperature (change since 1951-1980).MEAN",
"caption": "Annual surface temperature (change since 1951-1980).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "ODA - all sectors - desertification (% of total ODA).MEAN",
"caption": "ODA - all sectors - desertification (% of total ODA).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Artificial surfaces (% of total).MEAN",
"caption": "Artificial surfaces (% of total).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Demand-based CO2 productivity; disposable income per unit of energy-related CO2 emissions (USD per kg).MEAN",
"caption": "Demand-based CO2 productivity; disposable income per unit of energy-related CO2 emissions (USD per kg).MEAN",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{
"name": "Net ODA provided (% of GNI).MEAN",
"caption": "Net ODA provided (% of GNI).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "ODA - all sectors - climate change adaptation (% of total ODA).MEAN",
"caption": "ODA - all sectors - climate change adaptation (% of total ODA).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Population connected to sewerage with tertiary treatment (% of total population).MEAN",
"caption": "Population connected to sewerage with tertiary treatment (% of total population).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Naturally regenerating forests (% of total forest area).MEAN",
"caption": "Naturally regenerating forests (% of total forest area).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Population with access to improved sanitation (% of total population).MEAN",
"caption": "Population with access to improved sanitation (% of total population).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "New built up area; % since 1990.MEAN",
"caption": "New built up area; % since 1990.MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Population connected to sewerage with secondary treatment (% of total population).MEAN",
"caption": "Population connected to sewerage with secondary treatment (% of total population).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Built up area (% of total land).MEAN",
"caption": "Built up area (% of total land).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Energy consumption in industry (% of total energy consumption).MEAN",
"caption": "Energy consumption in industry (% of total energy consumption).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Energy public RD&D budget (% of GDP).MEAN",
"caption": "Energy public RD&D budget (% of GDP).MEAN",
"formatString": "#.##%",
"type": "double",
"visible": true
},
{
"name": "Production-based CO2 emissions (tonne).SUM",
"caption": "Production-based CO2 emissions (tonne).SUM",
"formatString": "#,###.00",
"type": "double",
"visible": true
},
{