shrek 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -1
  3. data/examples/tree_pruning/.gitignore +30 -0
  4. data/examples/tree_pruning/.rspec +3 -0
  5. data/examples/tree_pruning/.rubocop.yml +10 -0
  6. data/examples/tree_pruning/.ruby-version +1 -0
  7. data/examples/tree_pruning/Gemfile +70 -0
  8. data/examples/tree_pruning/README.md +83 -0
  9. data/examples/tree_pruning/Rakefile +8 -0
  10. data/examples/tree_pruning/app/assets/config/manifest.js +3 -0
  11. data/examples/tree_pruning/app/assets/images/.keep +0 -0
  12. data/examples/tree_pruning/app/assets/javascripts/application.js +16 -0
  13. data/examples/tree_pruning/app/assets/javascripts/cable.js +13 -0
  14. data/examples/tree_pruning/app/assets/javascripts/channels/.keep +0 -0
  15. data/examples/tree_pruning/app/assets/stylesheets/application.css +15 -0
  16. data/examples/tree_pruning/app/channels/application_cable/channel.rb +6 -0
  17. data/examples/tree_pruning/app/channels/application_cable/connection.rb +6 -0
  18. data/examples/tree_pruning/app/controllers/application_controller.rb +4 -0
  19. data/examples/tree_pruning/app/controllers/concerns/.keep +0 -0
  20. data/examples/tree_pruning/app/controllers/tree_controller.rb +13 -0
  21. data/examples/tree_pruning/app/helpers/application_helper.rb +4 -0
  22. data/examples/tree_pruning/app/jobs/application_job.rb +4 -0
  23. data/examples/tree_pruning/app/lib/layers/external_fetcher.rb +21 -0
  24. data/examples/tree_pruning/app/lib/layers/parser.rb +11 -0
  25. data/examples/tree_pruning/app/lib/layers/selector.rb +46 -0
  26. data/examples/tree_pruning/app/lib/statistics_processor.rb +9 -0
  27. data/examples/tree_pruning/app/mailers/application_mailer.rb +6 -0
  28. data/examples/tree_pruning/app/models/application_record.rb +5 -0
  29. data/examples/tree_pruning/app/models/concerns/.keep +0 -0
  30. data/examples/tree_pruning/app/views/layouts/application.html.erb +15 -0
  31. data/examples/tree_pruning/app/views/layouts/mailer.html.erb +13 -0
  32. data/examples/tree_pruning/app/views/layouts/mailer.text.erb +1 -0
  33. data/examples/tree_pruning/bin/bundle +5 -0
  34. data/examples/tree_pruning/bin/rails +11 -0
  35. data/examples/tree_pruning/bin/rake +11 -0
  36. data/examples/tree_pruning/bin/setup +38 -0
  37. data/examples/tree_pruning/bin/spring +18 -0
  38. data/examples/tree_pruning/bin/update +33 -0
  39. data/examples/tree_pruning/bin/yarn +11 -0
  40. data/examples/tree_pruning/config.ru +7 -0
  41. data/examples/tree_pruning/config/application.rb +21 -0
  42. data/examples/tree_pruning/config/boot.rb +6 -0
  43. data/examples/tree_pruning/config/cable.yml +10 -0
  44. data/examples/tree_pruning/config/credentials.yml.enc +1 -0
  45. data/examples/tree_pruning/config/database.yml +25 -0
  46. data/examples/tree_pruning/config/environment.rb +7 -0
  47. data/examples/tree_pruning/config/environments/development.rb +63 -0
  48. data/examples/tree_pruning/config/environments/production.rb +96 -0
  49. data/examples/tree_pruning/config/environments/test.rb +48 -0
  50. data/examples/tree_pruning/config/initializers/application_controller_renderer.rb +9 -0
  51. data/examples/tree_pruning/config/initializers/assets.rb +16 -0
  52. data/examples/tree_pruning/config/initializers/backtrace_silencers.rb +8 -0
  53. data/examples/tree_pruning/config/initializers/content_security_policy.rb +26 -0
  54. data/examples/tree_pruning/config/initializers/cookies_serializer.rb +7 -0
  55. data/examples/tree_pruning/config/initializers/filter_parameter_logging.rb +6 -0
  56. data/examples/tree_pruning/config/initializers/inflections.rb +17 -0
  57. data/examples/tree_pruning/config/initializers/mime_types.rb +5 -0
  58. data/examples/tree_pruning/config/initializers/wrap_parameters.rb +16 -0
  59. data/examples/tree_pruning/config/locales/en.yml +33 -0
  60. data/examples/tree_pruning/config/puma.rb +36 -0
  61. data/examples/tree_pruning/config/routes.rb +6 -0
  62. data/examples/tree_pruning/config/spring.rb +8 -0
  63. data/examples/tree_pruning/config/storage.yml +34 -0
  64. data/examples/tree_pruning/db/seeds.rb +8 -0
  65. data/examples/tree_pruning/lib/assets/.keep +0 -0
  66. data/examples/tree_pruning/lib/tasks/.keep +0 -0
  67. data/examples/tree_pruning/log/.keep +0 -0
  68. data/examples/tree_pruning/package.json +5 -0
  69. data/examples/tree_pruning/public/404.html +67 -0
  70. data/examples/tree_pruning/public/422.html +67 -0
  71. data/examples/tree_pruning/public/500.html +66 -0
  72. data/examples/tree_pruning/public/apple-touch-icon-precomposed.png +0 -0
  73. data/examples/tree_pruning/public/apple-touch-icon.png +0 -0
  74. data/examples/tree_pruning/public/favicon.ico +0 -0
  75. data/examples/tree_pruning/public/robots.txt +1 -0
  76. data/examples/tree_pruning/spec/fixtures/.keep +0 -0
  77. data/examples/tree_pruning/spec/fixtures/files/.keep +0 -0
  78. data/examples/tree_pruning/spec/fixtures/files/people_stats.json +2682 -0
  79. data/examples/tree_pruning/spec/lib/layers/external_fetcher_spec.rb +32 -0
  80. data/examples/tree_pruning/spec/lib/layers/parser_spec.rb +17 -0
  81. data/examples/tree_pruning/spec/lib/layers/selector_spec.rb +40 -0
  82. data/examples/tree_pruning/spec/lib/statistics_processor_spec.rb +24 -0
  83. data/examples/tree_pruning/spec/rails_helper.rb +59 -0
  84. data/examples/tree_pruning/spec/spec_helper.rb +96 -0
  85. data/examples/tree_pruning/spec/support/people_stats.rb +15 -0
  86. data/examples/tree_pruning/spec/system/root_spec.rb +30 -0
  87. data/examples/tree_pruning/tmp/.keep +0 -0
  88. data/examples/tree_pruning/vendor/.keep +0 -0
  89. data/lib/shrek/runner.rb +5 -1
  90. data/lib/shrek/version.rb +1 -1
  91. metadata +88 -2
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ .rails-default-error-page {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ .rails-default-error-page div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ .rails-default-error-page div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ .rails-default-error-page h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ .rails-default-error-page div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body class="rails-default-error-page">
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
File without changes
@@ -0,0 +1 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
File without changes
File without changes
@@ -0,0 +1,2682 @@
1
+ [
2
+ {
3
+ "id": 1,
4
+ "name": "Urban Extent",
5
+ "sub_themes": [
6
+ {
7
+ "categories": [
8
+ {
9
+ "id": 1,
10
+ "indicators": [
11
+ {
12
+ "id": 299,
13
+ "name": "Total"
14
+ }
15
+ ],
16
+ "name": "Area",
17
+ "unit": "(sq. km.)"
18
+ },
19
+ {
20
+ "id": 2,
21
+ "indicators": [
22
+ {
23
+ "id": 300,
24
+ "name": "Total"
25
+ }
26
+ ],
27
+ "name": "Population",
28
+ "unit": "(thousands)"
29
+ },
30
+ {
31
+ "id": 3,
32
+ "indicators": [
33
+ {
34
+ "id": 301,
35
+ "name": "Total"
36
+ }
37
+ ],
38
+ "name": "Population density",
39
+ "unit": "(people per sq. km.)"
40
+ }
41
+ ],
42
+ "id": 1,
43
+ "name": "Administrative"
44
+ },
45
+ {
46
+ "categories": [
47
+ {
48
+ "id": 4,
49
+ "indicators": [
50
+ {
51
+ "id": 302,
52
+ "name": "Total"
53
+ }
54
+ ],
55
+ "name": "Area",
56
+ "unit": "(sq. km.)"
57
+ },
58
+ {
59
+ "id": 5,
60
+ "indicators": [
61
+ {
62
+ "id": 303,
63
+ "name": "Total"
64
+ }
65
+ ],
66
+ "name": "Population",
67
+ "unit": "(thousands)"
68
+ },
69
+ {
70
+ "id": 6,
71
+ "indicators": [
72
+ {
73
+ "id": 304,
74
+ "name": "Total"
75
+ }
76
+ ],
77
+ "name": "Population density",
78
+ "unit": "(people per sq. km.)"
79
+ }
80
+ ],
81
+ "id": 2,
82
+ "name": "Built up"
83
+ },
84
+ {
85
+ "categories": [
86
+ {
87
+ "id": 7,
88
+ "indicators": [
89
+ {
90
+ "id": 305,
91
+ "name": "Total"
92
+ }
93
+ ],
94
+ "name": "Area",
95
+ "unit": "(sq. km.)"
96
+ },
97
+ {
98
+ "id": 8,
99
+ "indicators": [
100
+ {
101
+ "id": 306,
102
+ "name": "Total"
103
+ }
104
+ ],
105
+ "name": "Population",
106
+ "unit": "(thousands)"
107
+ },
108
+ {
109
+ "id": 9,
110
+ "indicators": [
111
+ {
112
+ "id": 307,
113
+ "name": "Total"
114
+ }
115
+ ],
116
+ "name": "Population density",
117
+ "unit": "(people per sq. km.)"
118
+ }
119
+ ],
120
+ "id": 3,
121
+ "name": "Lit at night"
122
+ }
123
+ ]
124
+ },
125
+ {
126
+ "id": 2,
127
+ "name": "Demographics",
128
+ "sub_themes": [
129
+ {
130
+ "categories": [
131
+ {
132
+ "id": 10,
133
+ "indicators": [
134
+ {
135
+ "id": 308,
136
+ "name": "Total"
137
+ }
138
+ ],
139
+ "name": "Crude birth rate",
140
+ "unit": "(live births per 1000 people)"
141
+ },
142
+ {
143
+ "id": 11,
144
+ "indicators": [
145
+ {
146
+ "id": 1,
147
+ "name": "total"
148
+ },
149
+ {
150
+ "id": 2,
151
+ "name": "male"
152
+ },
153
+ {
154
+ "id": 3,
155
+ "name": "female"
156
+ }
157
+ ],
158
+ "name": "Crude death rate",
159
+ "unit": "(deaths per 1000 people)"
160
+ }
161
+ ],
162
+ "id": 4,
163
+ "name": "Births and Deaths"
164
+ },
165
+ {
166
+ "categories": [
167
+ {
168
+ "id": 12,
169
+ "indicators": [
170
+ {
171
+ "id": 4,
172
+ "name": "0-14 or 65+ years"
173
+ },
174
+ {
175
+ "id": 5,
176
+ "name": "0-14 years"
177
+ },
178
+ {
179
+ "id": 6,
180
+ "name": "65+ years"
181
+ }
182
+ ],
183
+ "name": "Dependency ratio",
184
+ "unit": "(percent)"
185
+ },
186
+ {
187
+ "id": 13,
188
+ "indicators": [
189
+ {
190
+ "id": 7,
191
+ "name": "All ages"
192
+ },
193
+ {
194
+ "id": 8,
195
+ "name": "At birth"
196
+ },
197
+ {
198
+ "id": 9,
199
+ "name": "0-4 years"
200
+ }
201
+ ],
202
+ "name": "Gender ratio",
203
+ "unit": "(percent)"
204
+ }
205
+ ],
206
+ "id": 5,
207
+ "name": "Age and Sex"
208
+ },
209
+ {
210
+ "categories": [
211
+ {
212
+ "id": 14,
213
+ "indicators": [
214
+ {
215
+ "id": 309,
216
+ "name": "Total"
217
+ }
218
+ ],
219
+ "name": "Scheduled Caste (SC)",
220
+ "unit": "(percent)"
221
+ },
222
+ {
223
+ "id": 15,
224
+ "indicators": [
225
+ {
226
+ "id": 310,
227
+ "name": "Total"
228
+ }
229
+ ],
230
+ "name": "Scheduled Tribe (ST)",
231
+ "unit": "(percent)"
232
+ }
233
+ ],
234
+ "id": 6,
235
+ "name": "Religion and social groups"
236
+ }
237
+ ]
238
+ },
239
+ {
240
+ "id": 3,
241
+ "name": "Jobs",
242
+ "sub_themes": [
243
+ {
244
+ "categories": [
245
+ {
246
+ "id": 16,
247
+ "indicators": [
248
+ {
249
+ "id": 10,
250
+ "name": "Total"
251
+ },
252
+ {
253
+ "id": 11,
254
+ "name": "Female"
255
+ },
256
+ {
257
+ "id": 12,
258
+ "name": "Male"
259
+ }
260
+ ],
261
+ "name": "Working population, 15+ years",
262
+ "unit": "(percent)"
263
+ },
264
+ {
265
+ "id": 17,
266
+ "indicators": [
267
+ {
268
+ "id": 13,
269
+ "name": "Total"
270
+ },
271
+ {
272
+ "id": 14,
273
+ "name": "Female"
274
+ },
275
+ {
276
+ "id": 15,
277
+ "name": "Male"
278
+ }
279
+ ],
280
+ "name": "Working population, 7+ years",
281
+ "unit": "(percent)"
282
+ },
283
+ {
284
+ "id": 18,
285
+ "indicators": [
286
+ {
287
+ "id": 16,
288
+ "name": "Total"
289
+ },
290
+ {
291
+ "id": 17,
292
+ "name": "Female"
293
+ },
294
+ {
295
+ "id": 18,
296
+ "name": "Male"
297
+ }
298
+ ],
299
+ "name": "Labor force participation, 15+ years, usual",
300
+ "unit": "(percent of age group)"
301
+ },
302
+ {
303
+ "id": 19,
304
+ "indicators": [
305
+ {
306
+ "id": 19,
307
+ "name": "Total"
308
+ },
309
+ {
310
+ "id": 20,
311
+ "name": "Female"
312
+ },
313
+ {
314
+ "id": 21,
315
+ "name": "Male"
316
+ }
317
+ ],
318
+ "name": "Labor force participation, 15+ years, weekly",
319
+ "unit": "(percent of age group)"
320
+ },
321
+ {
322
+ "id": 20,
323
+ "indicators": [
324
+ {
325
+ "id": 22,
326
+ "name": "Total"
327
+ },
328
+ {
329
+ "id": 23,
330
+ "name": "Female"
331
+ },
332
+ {
333
+ "id": 24,
334
+ "name": "Male"
335
+ }
336
+ ],
337
+ "name": "Employment rate, 7+ years, main + marginal",
338
+ "unit": "(percent of age group)"
339
+ }
340
+ ],
341
+ "id": 7,
342
+ "name": "Labor force"
343
+ },
344
+ {
345
+ "categories": [
346
+ {
347
+ "id": 21,
348
+ "indicators": [
349
+ {
350
+ "id": 25,
351
+ "name": "Total"
352
+ },
353
+ {
354
+ "id": 26,
355
+ "name": "Female"
356
+ },
357
+ {
358
+ "id": 27,
359
+ "name": "Male"
360
+ }
361
+ ],
362
+ "name": "Unemployment rate, 15+ years, usual",
363
+ "unit": "(percent of labor force)"
364
+ },
365
+ {
366
+ "id": 22,
367
+ "indicators": [
368
+ {
369
+ "id": 28,
370
+ "name": "Total"
371
+ },
372
+ {
373
+ "id": 29,
374
+ "name": "Female"
375
+ },
376
+ {
377
+ "id": 30,
378
+ "name": "Male"
379
+ }
380
+ ],
381
+ "name": "Unemployment rate, 15+ years, weekly",
382
+ "unit": "(percent of labor force)"
383
+ },
384
+ {
385
+ "id": 23,
386
+ "indicators": [
387
+ {
388
+ "id": 31,
389
+ "name": "Total"
390
+ },
391
+ {
392
+ "id": 32,
393
+ "name": "Female"
394
+ },
395
+ {
396
+ "id": 33,
397
+ "name": "Male"
398
+ }
399
+ ],
400
+ "name": "Unemployment rate, 15\u201324 years, usual",
401
+ "unit": "(percent of labor force)"
402
+ },
403
+ {
404
+ "id": 24,
405
+ "indicators": [
406
+ {
407
+ "id": 34,
408
+ "name": "Total"
409
+ },
410
+ {
411
+ "id": 35,
412
+ "name": "Female"
413
+ },
414
+ {
415
+ "id": 36,
416
+ "name": "Male"
417
+ }
418
+ ],
419
+ "name": "Unemployment rate, 15\u201324 years, weekly",
420
+ "unit": "(percent of labor force)"
421
+ },
422
+ {
423
+ "id": 25,
424
+ "indicators": [
425
+ {
426
+ "id": 37,
427
+ "name": "Total"
428
+ },
429
+ {
430
+ "id": 38,
431
+ "name": "Female"
432
+ },
433
+ {
434
+ "id": 39,
435
+ "name": "Male"
436
+ }
437
+ ],
438
+ "name": "Under-employment rate, 15+ years, marginal",
439
+ "unit": "(percent of labor force)"
440
+ }
441
+ ],
442
+ "id": 8,
443
+ "name": "Unemployment"
444
+ },
445
+ {
446
+ "categories": [
447
+ {
448
+ "id": 26,
449
+ "indicators": [
450
+ {
451
+ "id": 40,
452
+ "name": "Agriculture"
453
+ },
454
+ {
455
+ "id": 41,
456
+ "name": "Manufacturing"
457
+ },
458
+ {
459
+ "id": 42,
460
+ "name": "Industry (including manufacturing)"
461
+ },
462
+ {
463
+ "id": 43,
464
+ "name": "Services"
465
+ }
466
+ ],
467
+ "name": "Employment by sector",
468
+ "unit": "(percent of total employment)"
469
+ },
470
+ {
471
+ "id": 27,
472
+ "indicators": [
473
+ {
474
+ "id": 44,
475
+ "name": "Total"
476
+ },
477
+ {
478
+ "id": 45,
479
+ "name": "Female"
480
+ },
481
+ {
482
+ "id": 46,
483
+ "name": "Male"
484
+ }
485
+ ],
486
+ "name": "Farmers",
487
+ "unit": "(percent of total employment)"
488
+ },
489
+ {
490
+ "id": 28,
491
+ "indicators": [
492
+ {
493
+ "id": 47,
494
+ "name": "Total"
495
+ },
496
+ {
497
+ "id": 48,
498
+ "name": "Female"
499
+ },
500
+ {
501
+ "id": 49,
502
+ "name": "Male"
503
+ }
504
+ ],
505
+ "name": "Self-employed",
506
+ "unit": "(percent of total employment)"
507
+ },
508
+ {
509
+ "id": 29,
510
+ "indicators": [
511
+ {
512
+ "id": 50,
513
+ "name": "Total"
514
+ },
515
+ {
516
+ "id": 51,
517
+ "name": "Female"
518
+ },
519
+ {
520
+ "id": 52,
521
+ "name": "Male"
522
+ }
523
+ ],
524
+ "name": "Casual wage earners",
525
+ "unit": "(percent of total employment)"
526
+ },
527
+ {
528
+ "id": 30,
529
+ "indicators": [
530
+ {
531
+ "id": 53,
532
+ "name": "Total"
533
+ },
534
+ {
535
+ "id": 54,
536
+ "name": "Female"
537
+ },
538
+ {
539
+ "id": 55,
540
+ "name": "Male"
541
+ }
542
+ ],
543
+ "name": "Regular wage earners",
544
+ "unit": "(percent of total employment)"
545
+ }
546
+ ],
547
+ "id": 9,
548
+ "name": "Employment"
549
+ },
550
+ {
551
+ "categories": [
552
+ {
553
+ "id": 31,
554
+ "indicators": [
555
+ {
556
+ "id": 56,
557
+ "name": "Total"
558
+ },
559
+ {
560
+ "id": 57,
561
+ "name": "Female"
562
+ },
563
+ {
564
+ "id": 58,
565
+ "name": "Male"
566
+ }
567
+ ],
568
+ "name": "Labor earnings by gender",
569
+ "unit": "(current USD per day)"
570
+ },
571
+ {
572
+ "id": 32,
573
+ "indicators": [
574
+ {
575
+ "id": 59,
576
+ "name": "Agriculture"
577
+ },
578
+ {
579
+ "id": 60,
580
+ "name": "Industry"
581
+ },
582
+ {
583
+ "id": 61,
584
+ "name": "Services"
585
+ }
586
+ ],
587
+ "name": "Labor earnings by sector",
588
+ "unit": "(current USD per day)"
589
+ }
590
+ ],
591
+ "id": 10,
592
+ "name": "Earnings"
593
+ }
594
+ ]
595
+ },
596
+ {
597
+ "id": 4,
598
+ "name": "Economic Activity",
599
+ "sub_themes": [
600
+ {
601
+ "categories": [
602
+ {
603
+ "id": 33,
604
+ "indicators": [
605
+ {
606
+ "id": 311,
607
+ "name": "Total"
608
+ }
609
+ ],
610
+ "name": "GDP",
611
+ "unit": "(current USD, in millions)"
612
+ },
613
+ {
614
+ "id": 34,
615
+ "indicators": [
616
+ {
617
+ "id": 312,
618
+ "name": "Total"
619
+ }
620
+ ],
621
+ "name": "GDP per capita",
622
+ "unit": "(current USD)"
623
+ },
624
+ {
625
+ "id": 35,
626
+ "indicators": [
627
+ {
628
+ "id": 62,
629
+ "name": "Agriculture, fishing, hunting and forestry (A, B)"
630
+ },
631
+ {
632
+ "id": 63,
633
+ "name": "Mining and quarrying (C)"
634
+ },
635
+ {
636
+ "id": 64,
637
+ "name": "Manufacturing (D)"
638
+ },
639
+ {
640
+ "id": 65,
641
+ "name": "Electricity, gas and water supply (E)"
642
+ },
643
+ {
644
+ "id": 66,
645
+ "name": "Construction (F)"
646
+ },
647
+ {
648
+ "id": 67,
649
+ "name": "Trade, hotels and restaurants (G, H)"
650
+ },
651
+ {
652
+ "id": 68,
653
+ "name": "Transportation, storage and communications (I)"
654
+ },
655
+ {
656
+ "id": 69,
657
+ "name": "Financial intermediation (J)"
658
+ },
659
+ {
660
+ "id": 70,
661
+ "name": "Real estate, renting and business activities (K)"
662
+ },
663
+ {
664
+ "id": 71,
665
+ "name": "Public administration (L)"
666
+ },
667
+ {
668
+ "id": 72,
669
+ "name": "Other (M, N, O, P, Q)"
670
+ }
671
+ ],
672
+ "name": "GVA by sector, ISIC 3.1",
673
+ "unit": "(percent of GDP)"
674
+ }
675
+ ],
676
+ "id": 11,
677
+ "name": "Output"
678
+ },
679
+ {
680
+ "categories": [
681
+ {
682
+ "id": 36,
683
+ "indicators": [
684
+ {
685
+ "id": 313,
686
+ "name": "Total"
687
+ }
688
+ ],
689
+ "name": "Light intensity per 1000 people",
690
+ "unit": "(Digital Numbers of light per 1000 people)"
691
+ },
692
+ {
693
+ "id": 37,
694
+ "indicators": [
695
+ {
696
+ "id": 314,
697
+ "name": "Total"
698
+ }
699
+ ],
700
+ "name": "Light intensity per area",
701
+ "unit": "(Digital Numbers of light per sq. km.) "
702
+ }
703
+ ],
704
+ "id": 12,
705
+ "name": "Night light intensity"
706
+ },
707
+ {
708
+ "categories": [
709
+ {
710
+ "id": 38,
711
+ "indicators": [
712
+ {
713
+ "id": 73,
714
+ "name": "All"
715
+ },
716
+ {
717
+ "id": 74,
718
+ "name": "Groundnut"
719
+ },
720
+ {
721
+ "id": 75,
722
+ "name": "Maize"
723
+ },
724
+ {
725
+ "id": 76,
726
+ "name": "Millets"
727
+ },
728
+ {
729
+ "id": 77,
730
+ "name": "Pulses"
731
+ },
732
+ {
733
+ "id": 78,
734
+ "name": "Rice"
735
+ },
736
+ {
737
+ "id": 79,
738
+ "name": "Sugar cane"
739
+ },
740
+ {
741
+ "id": 80,
742
+ "name": "Wheat"
743
+ }
744
+ ],
745
+ "name": "Crop yields, monetary",
746
+ "unit": "(2011 USD per ha., in thousands)"
747
+ },
748
+ {
749
+ "id": 39,
750
+ "indicators": [
751
+ {
752
+ "id": 81,
753
+ "name": "All"
754
+ },
755
+ {
756
+ "id": 82,
757
+ "name": "Groundnut"
758
+ },
759
+ {
760
+ "id": 83,
761
+ "name": "Maize"
762
+ },
763
+ {
764
+ "id": 84,
765
+ "name": "Millets"
766
+ },
767
+ {
768
+ "id": 85,
769
+ "name": "Pulses"
770
+ },
771
+ {
772
+ "id": 86,
773
+ "name": "Rice"
774
+ },
775
+ {
776
+ "id": 87,
777
+ "name": "Sugar cane"
778
+ },
779
+ {
780
+ "id": 88,
781
+ "name": "Wheat"
782
+ }
783
+ ],
784
+ "name": "Crop yields, quantity",
785
+ "unit": "(tonnes per ha.)"
786
+ }
787
+ ],
788
+ "id": 13,
789
+ "name": "Productivity of agriculture"
790
+ },
791
+ {
792
+ "categories": [],
793
+ "id": 14,
794
+ "name": "Productivity of manufacturing"
795
+ },
796
+ {
797
+ "categories": [],
798
+ "id": 15,
799
+ "name": "Productivity of services"
800
+ }
801
+ ]
802
+ },
803
+ {
804
+ "id": 5,
805
+ "name": "Infrastructure",
806
+ "sub_themes": [
807
+ {
808
+ "categories": [
809
+ {
810
+ "id": 40,
811
+ "indicators": [
812
+ {
813
+ "id": 89,
814
+ "name": "Total"
815
+ },
816
+ {
817
+ "id": 90,
818
+ "name": "Major highways, primary and secondary"
819
+ },
820
+ {
821
+ "id": 91,
822
+ "name": "Tertiary and rural"
823
+ },
824
+ {
825
+ "id": 92,
826
+ "name": "Other"
827
+ }
828
+ ],
829
+ "name": "Road length",
830
+ "unit": "(km.)"
831
+ },
832
+ {
833
+ "id": 41,
834
+ "indicators": [
835
+ {
836
+ "id": 93,
837
+ "name": "Total"
838
+ },
839
+ {
840
+ "id": 94,
841
+ "name": "Major highways, primary and secondary"
842
+ },
843
+ {
844
+ "id": 95,
845
+ "name": "Tertiary and rural"
846
+ },
847
+ {
848
+ "id": 96,
849
+ "name": "Other"
850
+ }
851
+ ],
852
+ "name": "Road intensity",
853
+ "unit": "(km. per 1000 sq. km.)"
854
+ },
855
+ {
856
+ "id": 42,
857
+ "indicators": [
858
+ {
859
+ "id": 97,
860
+ "name": "Total"
861
+ },
862
+ {
863
+ "id": 98,
864
+ "name": "Railway"
865
+ },
866
+ {
867
+ "id": 99,
868
+ "name": "Metro"
869
+ }
870
+ ],
871
+ "name": "Number of stations",
872
+ "unit": "(stations)"
873
+ },
874
+ {
875
+ "id": 43,
876
+ "indicators": [
877
+ {
878
+ "id": 100,
879
+ "name": "Total"
880
+ },
881
+ {
882
+ "id": 101,
883
+ "name": "Railway"
884
+ },
885
+ {
886
+ "id": 102,
887
+ "name": "Metro"
888
+ }
889
+ ],
890
+ "name": "Density of stations",
891
+ "unit": "(stations per 1000 sq. km.)"
892
+ }
893
+ ],
894
+ "id": 16,
895
+ "name": "Connectivity"
896
+ },
897
+ {
898
+ "categories": [
899
+ {
900
+ "id": 44,
901
+ "indicators": [
902
+ {
903
+ "id": 103,
904
+ "name": "Total"
905
+ },
906
+ {
907
+ "id": 104,
908
+ "name": "Slums"
909
+ }
910
+ ],
911
+ "name": "Households\u2019 access to electricity",
912
+ "unit": "(percent of households)"
913
+ },
914
+ {
915
+ "id": 45,
916
+ "indicators": [
917
+ {
918
+ "id": 105,
919
+ "name": "Biomass"
920
+ },
921
+ {
922
+ "id": 106,
923
+ "name": "Coal/lignite/charcoal"
924
+ },
925
+ {
926
+ "id": 107,
927
+ "name": "Kerosene"
928
+ },
929
+ {
930
+ "id": 108,
931
+ "name": "LPG/PNG"
932
+ },
933
+ {
934
+ "id": 109,
935
+ "name": "Electricity"
936
+ },
937
+ {
938
+ "id": 110,
939
+ "name": "Biogas"
940
+ }
941
+ ],
942
+ "name": "Households\u2019 use of fuel for cooking",
943
+ "unit": "(percent of households)"
944
+ },
945
+ {
946
+ "id": 46,
947
+ "indicators": [
948
+ {
949
+ "id": 111,
950
+ "name": "Kerosene"
951
+ },
952
+ {
953
+ "id": 112,
954
+ "name": "Gas/other oil"
955
+ },
956
+ {
957
+ "id": 113,
958
+ "name": "Electricity"
959
+ },
960
+ {
961
+ "id": 114,
962
+ "name": "Candle/others"
963
+ },
964
+ {
965
+ "id": 115,
966
+ "name": "No lighting arrangement"
967
+ }
968
+ ],
969
+ "name": "Households\u2019 use of fuel for light",
970
+ "unit": "(percent of households)"
971
+ },
972
+ {
973
+ "id": 47,
974
+ "indicators": [
975
+ {
976
+ "id": 116,
977
+ "name": "Total"
978
+ },
979
+ {
980
+ "id": 117,
981
+ "name": "Public"
982
+ },
983
+ {
984
+ "id": 118,
985
+ "name": "Private"
986
+ }
987
+ ],
988
+ "name": "Non-agriculture enterprises\u2019 use of electricity",
989
+ "unit": "(percent of establishments)"
990
+ }
991
+ ],
992
+ "id": 17,
993
+ "name": "Energy"
994
+ },
995
+ {
996
+ "categories": [
997
+ {
998
+ "id": 48,
999
+ "indicators": [
1000
+ {
1001
+ "id": 119,
1002
+ "name": "Total"
1003
+ },
1004
+ {
1005
+ "id": 120,
1006
+ "name": "Slums"
1007
+ }
1008
+ ],
1009
+ "name": "Households\u2019 access to improved water",
1010
+ "unit": "(percent of households)"
1011
+ },
1012
+ {
1013
+ "id": 49,
1014
+ "indicators": [
1015
+ {
1016
+ "id": 121,
1017
+ "name": "Total"
1018
+ },
1019
+ {
1020
+ "id": 122,
1021
+ "name": "Slums"
1022
+ }
1023
+ ],
1024
+ "name": "Households\u2019 access to improved sanitation",
1025
+ "unit": "(percent of households)"
1026
+ },
1027
+ {
1028
+ "id": 50,
1029
+ "indicators": [
1030
+ {
1031
+ "id": 123,
1032
+ "name": "Total"
1033
+ },
1034
+ {
1035
+ "id": 124,
1036
+ "name": "Slums"
1037
+ }
1038
+ ],
1039
+ "name": "Households\u2019 access to enhanced improved sanitation",
1040
+ "unit": "(percent of households)"
1041
+ }
1042
+ ],
1043
+ "id": 18,
1044
+ "name": "Water and Sanitation"
1045
+ },
1046
+ {
1047
+ "categories": [
1048
+ {
1049
+ "id": 51,
1050
+ "indicators": [
1051
+ {
1052
+ "id": 125,
1053
+ "name": "Total"
1054
+ },
1055
+ {
1056
+ "id": 126,
1057
+ "name": "Slums"
1058
+ }
1059
+ ],
1060
+ "name": "Housing units in good condition",
1061
+ "unit": "(percent of households)"
1062
+ },
1063
+ {
1064
+ "id": 52,
1065
+ "indicators": [
1066
+ {
1067
+ "id": 315,
1068
+ "name": "Total"
1069
+ }
1070
+ ],
1071
+ "name": "Housing units located in slums",
1072
+ "unit": "(percent of housing units)"
1073
+ },
1074
+ {
1075
+ "id": 53,
1076
+ "indicators": [
1077
+ {
1078
+ "id": 127,
1079
+ "name": "Total"
1080
+ },
1081
+ {
1082
+ "id": 128,
1083
+ "name": "Slums"
1084
+ }
1085
+ ],
1086
+ "name": "Use of biomass to cook indoors",
1087
+ "unit": "(percent of households)"
1088
+ }
1089
+ ],
1090
+ "id": 19,
1091
+ "name": "Housing"
1092
+ }
1093
+ ]
1094
+ },
1095
+ {
1096
+ "id": 6,
1097
+ "name": "Information Technology",
1098
+ "sub_themes": [
1099
+ {
1100
+ "categories": [],
1101
+ "id": 20,
1102
+ "name": "Computer"
1103
+ },
1104
+ {
1105
+ "categories": [],
1106
+ "id": 21,
1107
+ "name": "Internet"
1108
+ },
1109
+ {
1110
+ "categories": [],
1111
+ "id": 22,
1112
+ "name": "Cellphone"
1113
+ }
1114
+ ]
1115
+ },
1116
+ {
1117
+ "id": 7,
1118
+ "name": "Finance",
1119
+ "sub_themes": [
1120
+ {
1121
+ "categories": [],
1122
+ "id": 23,
1123
+ "name": "Access"
1124
+ }
1125
+ ]
1126
+ },
1127
+ {
1128
+ "id": 8,
1129
+ "name": "Business",
1130
+ "sub_themes": [
1131
+ {
1132
+ "categories": [
1133
+ {
1134
+ "id": 54,
1135
+ "indicators": [
1136
+ {
1137
+ "id": 316,
1138
+ "name": "Total"
1139
+ }
1140
+ ],
1141
+ "name": "Non-agriculture enterprises",
1142
+ "unit": "(thousands)"
1143
+ },
1144
+ {
1145
+ "id": 55,
1146
+ "indicators": [
1147
+ {
1148
+ "id": 129,
1149
+ "name": "1"
1150
+ },
1151
+ {
1152
+ "id": 130,
1153
+ "name": "2-5"
1154
+ },
1155
+ {
1156
+ "id": 131,
1157
+ "name": "6-9"
1158
+ },
1159
+ {
1160
+ "id": 132,
1161
+ "name": "10\u201319"
1162
+ },
1163
+ {
1164
+ "id": 133,
1165
+ "name": "20\u201399"
1166
+ },
1167
+ {
1168
+ "id": 134,
1169
+ "name": "100+"
1170
+ }
1171
+ ],
1172
+ "name": "Non-agriculture enterprises by size",
1173
+ "unit": "(percent of establishments)"
1174
+ },
1175
+ {
1176
+ "id": 56,
1177
+ "indicators": [
1178
+ {
1179
+ "id": 135,
1180
+ "name": "Mining and quarrying (C)"
1181
+ },
1182
+ {
1183
+ "id": 136,
1184
+ "name": "Manufacturing (D)"
1185
+ },
1186
+ {
1187
+ "id": 137,
1188
+ "name": "Electricity, gas and water supply (E)"
1189
+ },
1190
+ {
1191
+ "id": 138,
1192
+ "name": "Construction (F)"
1193
+ },
1194
+ {
1195
+ "id": 139,
1196
+ "name": "Trade, hotels and restaurants (G, H)"
1197
+ },
1198
+ {
1199
+ "id": 140,
1200
+ "name": "Transportation, storage and communications (I)"
1201
+ },
1202
+ {
1203
+ "id": 141,
1204
+ "name": "Financial intermediation (J)"
1205
+ },
1206
+ {
1207
+ "id": 142,
1208
+ "name": "Real estate, renting and business activities (K)"
1209
+ },
1210
+ {
1211
+ "id": 143,
1212
+ "name": "Public administration (L)"
1213
+ },
1214
+ {
1215
+ "id": 144,
1216
+ "name": "Education, health and social (M, N, O)"
1217
+ }
1218
+ ],
1219
+ "name": "Non-agriculture enterprises by sector, ISIC 3.1",
1220
+ "unit": "(percent of establishments)"
1221
+ },
1222
+ {
1223
+ "id": 57,
1224
+ "indicators": [
1225
+ {
1226
+ "id": 145,
1227
+ "name": "2 digit"
1228
+ },
1229
+ {
1230
+ "id": 146,
1231
+ "name": "4 digit"
1232
+ }
1233
+ ],
1234
+ "name": "Specialization index of private non-agriculture enterprises, ISIC 3.1",
1235
+ "unit": "(index)"
1236
+ },
1237
+ {
1238
+ "id": 58,
1239
+ "indicators": [
1240
+ {
1241
+ "id": 147,
1242
+ "name": "2 digit"
1243
+ },
1244
+ {
1245
+ "id": 148,
1246
+ "name": "4 digit"
1247
+ }
1248
+ ],
1249
+ "name": "Diversification index of private non-agriculture enterprises, ISIC 3.1",
1250
+ "unit": "(index)"
1251
+ },
1252
+ {
1253
+ "id": 59,
1254
+ "indicators": [
1255
+ {
1256
+ "id": 149,
1257
+ "name": "Public"
1258
+ },
1259
+ {
1260
+ "id": 150,
1261
+ "name": "Private"
1262
+ }
1263
+ ],
1264
+ "name": "Non-agriculture enterprises by ownership",
1265
+ "unit": "(percent of establishments)"
1266
+ }
1267
+ ],
1268
+ "id": 24,
1269
+ "name": "Economic census"
1270
+ },
1271
+ {
1272
+ "categories": [],
1273
+ "id": 25,
1274
+ "name": "Formal manufacturing"
1275
+ },
1276
+ {
1277
+ "categories": [],
1278
+ "id": 26,
1279
+ "name": "Informal manufacturing"
1280
+ },
1281
+ {
1282
+ "categories": [],
1283
+ "id": 27,
1284
+ "name": "Informal services"
1285
+ }
1286
+ ]
1287
+ },
1288
+ {
1289
+ "id": 9,
1290
+ "name": "Living Standards",
1291
+ "sub_themes": [
1292
+ {
1293
+ "categories": [
1294
+ {
1295
+ "id": 60,
1296
+ "indicators": [
1297
+ {
1298
+ "id": 317,
1299
+ "name": "Total"
1300
+ }
1301
+ ],
1302
+ "name": "Household per capita expenditure",
1303
+ "unit": "(current USD per capita per month)"
1304
+ },
1305
+ {
1306
+ "id": 61,
1307
+ "indicators": [
1308
+ {
1309
+ "id": 318,
1310
+ "name": "Total"
1311
+ }
1312
+ ],
1313
+ "name": "Poverty rate at $1.25 a day (PPP)",
1314
+ "unit": "(percent of population)"
1315
+ },
1316
+ {
1317
+ "id": 62,
1318
+ "indicators": [
1319
+ {
1320
+ "id": 319,
1321
+ "name": "Total"
1322
+ }
1323
+ ],
1324
+ "name": "Poverty rate at national poverty line",
1325
+ "unit": "(percent of population)"
1326
+ },
1327
+ {
1328
+ "id": 63,
1329
+ "indicators": [
1330
+ {
1331
+ "id": 320,
1332
+ "name": "Total"
1333
+ }
1334
+ ],
1335
+ "name": "Share of bottom 40 percent",
1336
+ "unit": "(percent of population)"
1337
+ },
1338
+ {
1339
+ "id": 64,
1340
+ "indicators": [
1341
+ {
1342
+ "id": 321,
1343
+ "name": "Total"
1344
+ }
1345
+ ],
1346
+ "name": "90 to 10 ratio of per capita expenditure",
1347
+ "unit": "(ratio)"
1348
+ },
1349
+ {
1350
+ "id": 65,
1351
+ "indicators": [
1352
+ {
1353
+ "id": 322,
1354
+ "name": "Total"
1355
+ }
1356
+ ],
1357
+ "name": "Gini coefficient of per capita expenditure",
1358
+ "unit": "(percent)"
1359
+ },
1360
+ {
1361
+ "id": 66,
1362
+ "indicators": [
1363
+ {
1364
+ "id": 323,
1365
+ "name": "Total"
1366
+ }
1367
+ ],
1368
+ "name": "MLD of per capita expenditure",
1369
+ "unit": "(index)"
1370
+ }
1371
+ ],
1372
+ "id": 28,
1373
+ "name": "Consumption"
1374
+ },
1375
+ {
1376
+ "categories": [
1377
+ {
1378
+ "id": 67,
1379
+ "indicators": [
1380
+ {
1381
+ "id": 151,
1382
+ "name": "Total"
1383
+ },
1384
+ {
1385
+ "id": 152,
1386
+ "name": "Slums"
1387
+ }
1388
+ ],
1389
+ "name": "Access to all key durable assets",
1390
+ "unit": "(percent of households)"
1391
+ },
1392
+ {
1393
+ "id": 68,
1394
+ "indicators": [
1395
+ {
1396
+ "id": 153,
1397
+ "name": "Total"
1398
+ },
1399
+ {
1400
+ "id": 154,
1401
+ "name": "Slums"
1402
+ }
1403
+ ],
1404
+ "name": "Lack of access to durable assets",
1405
+ "unit": "(percent of households)"
1406
+ },
1407
+ {
1408
+ "id": 69,
1409
+ "indicators": [
1410
+ {
1411
+ "id": 324,
1412
+ "name": "Total"
1413
+ }
1414
+ ],
1415
+ "name": "Housing ownership",
1416
+ "unit": "(percent of households)"
1417
+ },
1418
+ {
1419
+ "id": 70,
1420
+ "indicators": [
1421
+ {
1422
+ "id": 325,
1423
+ "name": "Total"
1424
+ }
1425
+ ],
1426
+ "name": "Land ownership",
1427
+ "unit": "(percent of households)"
1428
+ },
1429
+ {
1430
+ "id": 71,
1431
+ "indicators": [
1432
+ {
1433
+ "id": 326,
1434
+ "name": "Total"
1435
+ }
1436
+ ],
1437
+ "name": "Gini coefficient of landholding",
1438
+ "unit": "(percent)"
1439
+ },
1440
+ {
1441
+ "id": 72,
1442
+ "indicators": [
1443
+ {
1444
+ "id": 327,
1445
+ "name": "Total"
1446
+ }
1447
+ ],
1448
+ "name": "MLD of landholding",
1449
+ "unit": "(index)"
1450
+ }
1451
+ ],
1452
+ "id": 29,
1453
+ "name": "Wealth"
1454
+ },
1455
+ {
1456
+ "categories": [
1457
+ {
1458
+ "id": 73,
1459
+ "indicators": [
1460
+ {
1461
+ "id": 155,
1462
+ "name": "total"
1463
+ },
1464
+ {
1465
+ "id": 156,
1466
+ "name": "slums"
1467
+ }
1468
+ ],
1469
+ "name": "People per household",
1470
+ "unit": "(people)"
1471
+ },
1472
+ {
1473
+ "id": 74,
1474
+ "indicators": [
1475
+ {
1476
+ "id": 157,
1477
+ "name": "total"
1478
+ },
1479
+ {
1480
+ "id": 158,
1481
+ "name": "slums"
1482
+ }
1483
+ ],
1484
+ "name": "People per room",
1485
+ "unit": "(people)"
1486
+ },
1487
+ {
1488
+ "id": 75,
1489
+ "indicators": [
1490
+ {
1491
+ "id": 159,
1492
+ "name": "total"
1493
+ },
1494
+ {
1495
+ "id": 160,
1496
+ "name": "slums"
1497
+ }
1498
+ ],
1499
+ "name": "Overcrowding",
1500
+ "unit": "(percent of housing units)"
1501
+ }
1502
+ ],
1503
+ "id": 30,
1504
+ "name": "Household size"
1505
+ }
1506
+ ]
1507
+ },
1508
+ {
1509
+ "id": 10,
1510
+ "name": "Health",
1511
+ "sub_themes": [
1512
+ {
1513
+ "categories": [
1514
+ {
1515
+ "id": 76,
1516
+ "indicators": [
1517
+ {
1518
+ "id": 328,
1519
+ "name": "Total"
1520
+ }
1521
+ ],
1522
+ "name": "Underweight",
1523
+ "unit": "(percent of children, 0-4 years)"
1524
+ },
1525
+ {
1526
+ "id": 77,
1527
+ "indicators": [
1528
+ {
1529
+ "id": 329,
1530
+ "name": "Total"
1531
+ }
1532
+ ],
1533
+ "name": "Wasting",
1534
+ "unit": "(percent of children, 0-4 years)"
1535
+ },
1536
+ {
1537
+ "id": 78,
1538
+ "indicators": [
1539
+ {
1540
+ "id": 330,
1541
+ "name": "Total"
1542
+ }
1543
+ ],
1544
+ "name": "Stunting",
1545
+ "unit": "(percent of children, 0-4 years)"
1546
+ }
1547
+ ],
1548
+ "id": 31,
1549
+ "name": "Nutrition"
1550
+ },
1551
+ {
1552
+ "categories": [
1553
+ {
1554
+ "id": 79,
1555
+ "indicators": [
1556
+ {
1557
+ "id": 331,
1558
+ "name": "Total"
1559
+ }
1560
+ ],
1561
+ "name": "Secondary health care centers",
1562
+ "unit": "(per 1,000 people)"
1563
+ },
1564
+ {
1565
+ "id": 80,
1566
+ "indicators": [
1567
+ {
1568
+ "id": 332,
1569
+ "name": "Total"
1570
+ }
1571
+ ],
1572
+ "name": "Primary health care centers",
1573
+ "unit": "(per 1,000 people)"
1574
+ },
1575
+ {
1576
+ "id": 81,
1577
+ "indicators": [
1578
+ {
1579
+ "id": 333,
1580
+ "name": "Total"
1581
+ }
1582
+ ],
1583
+ "name": "Institutional births",
1584
+ "unit": "(percent of population group)"
1585
+ },
1586
+ {
1587
+ "id": 82,
1588
+ "indicators": [
1589
+ {
1590
+ "id": 334,
1591
+ "name": "Total"
1592
+ }
1593
+ ],
1594
+ "name": "Diarrhea treatment",
1595
+ "unit": "(percent of population group)"
1596
+ },
1597
+ {
1598
+ "id": 83,
1599
+ "indicators": [
1600
+ {
1601
+ "id": 335,
1602
+ "name": "Total"
1603
+ }
1604
+ ],
1605
+ "name": "DPT immunization",
1606
+ "unit": "(percent of population group)"
1607
+ },
1608
+ {
1609
+ "id": 84,
1610
+ "indicators": [
1611
+ {
1612
+ "id": 336,
1613
+ "name": "Total"
1614
+ }
1615
+ ],
1616
+ "name": "Full immunization",
1617
+ "unit": "(percent of population group)"
1618
+ }
1619
+ ],
1620
+ "id": 32,
1621
+ "name": "Health Services"
1622
+ },
1623
+ {
1624
+ "categories": [
1625
+ {
1626
+ "id": 85,
1627
+ "indicators": [
1628
+ {
1629
+ "id": 337,
1630
+ "name": "Total"
1631
+ }
1632
+ ],
1633
+ "name": "Three ante-natal care visits",
1634
+ "unit": "(percent of population group)"
1635
+ },
1636
+ {
1637
+ "id": 86,
1638
+ "indicators": [
1639
+ {
1640
+ "id": 338,
1641
+ "name": "Total"
1642
+ }
1643
+ ],
1644
+ "name": "Female use of condom ",
1645
+ "unit": "(percent of population group)"
1646
+ },
1647
+ {
1648
+ "id": 87,
1649
+ "indicators": [
1650
+ {
1651
+ "id": 339,
1652
+ "name": "Total"
1653
+ }
1654
+ ],
1655
+ "name": "Female contraceptive prevalence ",
1656
+ "unit": "(percent of population group)"
1657
+ }
1658
+ ],
1659
+ "id": 33,
1660
+ "name": "Reproductive Health"
1661
+ },
1662
+ {
1663
+ "categories": [
1664
+ {
1665
+ "id": 88,
1666
+ "indicators": [
1667
+ {
1668
+ "id": 161,
1669
+ "name": "Total"
1670
+ },
1671
+ {
1672
+ "id": 162,
1673
+ "name": "Female"
1674
+ },
1675
+ {
1676
+ "id": 163,
1677
+ "name": "Male"
1678
+ }
1679
+ ],
1680
+ "name": "Infant mortality rate",
1681
+ "unit": "(deaths per 1,000 live births)"
1682
+ },
1683
+ {
1684
+ "id": 89,
1685
+ "indicators": [
1686
+ {
1687
+ "id": 340,
1688
+ "name": "Total"
1689
+ }
1690
+ ],
1691
+ "name": "Neonatal mortality rate",
1692
+ "unit": "(deaths per 1,000 live births)"
1693
+ },
1694
+ {
1695
+ "id": 90,
1696
+ "indicators": [
1697
+ {
1698
+ "id": 164,
1699
+ "name": "Total"
1700
+ },
1701
+ {
1702
+ "id": 165,
1703
+ "name": "Female"
1704
+ },
1705
+ {
1706
+ "id": 166,
1707
+ "name": "Male"
1708
+ }
1709
+ ],
1710
+ "name": "Under-five mortality rate",
1711
+ "unit": "(deaths per 1,000 live births)"
1712
+ },
1713
+ {
1714
+ "id": 91,
1715
+ "indicators": [
1716
+ {
1717
+ "id": 167,
1718
+ "name": "Acute respiratory infection"
1719
+ },
1720
+ {
1721
+ "id": 168,
1722
+ "name": "Diarrhea"
1723
+ },
1724
+ {
1725
+ "id": 169,
1726
+ "name": "Fever"
1727
+ }
1728
+ ],
1729
+ "name": "Acute illness among children",
1730
+ "unit": "(percent of children, 0\u20134 years)"
1731
+ },
1732
+ {
1733
+ "id": 92,
1734
+ "indicators": [
1735
+ {
1736
+ "id": 170,
1737
+ "name": "Acute respiratory infection"
1738
+ },
1739
+ {
1740
+ "id": 171,
1741
+ "name": "Diarrhea"
1742
+ },
1743
+ {
1744
+ "id": 172,
1745
+ "name": "Fever"
1746
+ }
1747
+ ],
1748
+ "name": "Acute illness",
1749
+ "unit": "(per 100,000 people)"
1750
+ },
1751
+ {
1752
+ "id": 93,
1753
+ "indicators": [
1754
+ {
1755
+ "id": 173,
1756
+ "name": "Arthritis"
1757
+ },
1758
+ {
1759
+ "id": 174,
1760
+ "name": "Asthma"
1761
+ },
1762
+ {
1763
+ "id": 175,
1764
+ "name": "Diabetes"
1765
+ },
1766
+ {
1767
+ "id": 176,
1768
+ "name": "Hypertension"
1769
+ },
1770
+ {
1771
+ "id": 177,
1772
+ "name": "Tuberculosis"
1773
+ }
1774
+ ],
1775
+ "name": "Chronic illness",
1776
+ "unit": "(per 100,000 people)"
1777
+ }
1778
+ ],
1779
+ "id": 34,
1780
+ "name": "Mortality and morbidity"
1781
+ }
1782
+ ]
1783
+ },
1784
+ {
1785
+ "id": 11,
1786
+ "name": "Education",
1787
+ "sub_themes": [
1788
+ {
1789
+ "categories": [
1790
+ {
1791
+ "id": 94,
1792
+ "indicators": [
1793
+ {
1794
+ "id": 178,
1795
+ "name": "Total"
1796
+ },
1797
+ {
1798
+ "id": 179,
1799
+ "name": "Female"
1800
+ },
1801
+ {
1802
+ "id": 180,
1803
+ "name": "Male"
1804
+ }
1805
+ ],
1806
+ "name": "Gross primary enrollment",
1807
+ "unit": "(percent of population group)"
1808
+ },
1809
+ {
1810
+ "id": 95,
1811
+ "indicators": [
1812
+ {
1813
+ "id": 341,
1814
+ "name": "Total"
1815
+ }
1816
+ ],
1817
+ "name": "Out-of-school children",
1818
+ "unit": "(percent of population group)"
1819
+ }
1820
+ ],
1821
+ "id": 35,
1822
+ "name": "Enrollment"
1823
+ },
1824
+ {
1825
+ "categories": [
1826
+ {
1827
+ "id": 96,
1828
+ "indicators": [
1829
+ {
1830
+ "id": 181,
1831
+ "name": "Total"
1832
+ },
1833
+ {
1834
+ "id": 182,
1835
+ "name": "Female"
1836
+ },
1837
+ {
1838
+ "id": 183,
1839
+ "name": "Male"
1840
+ }
1841
+ ],
1842
+ "name": "Literacy rate, 7+ years",
1843
+ "unit": "(percent of population group)"
1844
+ },
1845
+ {
1846
+ "id": 97,
1847
+ "indicators": [
1848
+ {
1849
+ "id": 184,
1850
+ "name": "Total"
1851
+ },
1852
+ {
1853
+ "id": 185,
1854
+ "name": "Female"
1855
+ },
1856
+ {
1857
+ "id": 186,
1858
+ "name": "Male"
1859
+ }
1860
+ ],
1861
+ "name": "Literacy rate, 15+ years",
1862
+ "unit": "(percent of population group)"
1863
+ },
1864
+ {
1865
+ "id": 98,
1866
+ "indicators": [
1867
+ {
1868
+ "id": 187,
1869
+ "name": "Total"
1870
+ },
1871
+ {
1872
+ "id": 188,
1873
+ "name": "Female"
1874
+ },
1875
+ {
1876
+ "id": 189,
1877
+ "name": "Male"
1878
+ }
1879
+ ],
1880
+ "name": "Secondary education completion rate, 15+ years",
1881
+ "unit": "(percent of population group)"
1882
+ },
1883
+ {
1884
+ "id": 99,
1885
+ "indicators": [
1886
+ {
1887
+ "id": 190,
1888
+ "name": "Total"
1889
+ },
1890
+ {
1891
+ "id": 191,
1892
+ "name": "Female"
1893
+ },
1894
+ {
1895
+ "id": 192,
1896
+ "name": "Male"
1897
+ }
1898
+ ],
1899
+ "name": "Tertiary education completion rate, 15+ years",
1900
+ "unit": "(percent of population group)"
1901
+ }
1902
+ ],
1903
+ "id": 36,
1904
+ "name": "Attainment"
1905
+ },
1906
+ {
1907
+ "categories": [
1908
+ {
1909
+ "id": 100,
1910
+ "indicators": [
1911
+ {
1912
+ "id": 342,
1913
+ "name": "Total"
1914
+ }
1915
+ ],
1916
+ "name": "Children who can recognize numbers 1\u20139",
1917
+ "unit": "(percent of population group)"
1918
+ },
1919
+ {
1920
+ "id": 101,
1921
+ "indicators": [
1922
+ {
1923
+ "id": 343,
1924
+ "name": "Total"
1925
+ }
1926
+ ],
1927
+ "name": "Children who can read letters or words",
1928
+ "unit": "(percent of population group)"
1929
+ },
1930
+ {
1931
+ "id": 102,
1932
+ "indicators": [
1933
+ {
1934
+ "id": 344,
1935
+ "name": "Total"
1936
+ }
1937
+ ],
1938
+ "name": "Children who can do subtraction",
1939
+ "unit": "(percent of population group)"
1940
+ },
1941
+ {
1942
+ "id": 103,
1943
+ "indicators": [
1944
+ {
1945
+ "id": 345,
1946
+ "name": "Total"
1947
+ }
1948
+ ],
1949
+ "name": "Children who can read Grade 1 text",
1950
+ "unit": "(percent of population group)"
1951
+ }
1952
+ ],
1953
+ "id": 37,
1954
+ "name": "Learning"
1955
+ },
1956
+ {
1957
+ "categories": [
1958
+ {
1959
+ "id": 104,
1960
+ "indicators": [
1961
+ {
1962
+ "id": 346,
1963
+ "name": "Total"
1964
+ }
1965
+ ],
1966
+ "name": "Classrooms in good condition in primary schools",
1967
+ "unit": "(percent of classrooms)"
1968
+ },
1969
+ {
1970
+ "id": 105,
1971
+ "indicators": [
1972
+ {
1973
+ "id": 347,
1974
+ "name": "Total"
1975
+ }
1976
+ ],
1977
+ "name": "Access to electricity in primary schools",
1978
+ "unit": "(percentof schools)"
1979
+ },
1980
+ {
1981
+ "id": 106,
1982
+ "indicators": [
1983
+ {
1984
+ "id": 348,
1985
+ "name": "Total"
1986
+ }
1987
+ ],
1988
+ "name": "Girls\u2019 toilets in primary schools",
1989
+ "unit": "(percent of schools with girls)"
1990
+ },
1991
+ {
1992
+ "id": 107,
1993
+ "indicators": [
1994
+ {
1995
+ "id": 349,
1996
+ "name": "Total"
1997
+ }
1998
+ ],
1999
+ "name": "Drinking water facility in primary schools",
2000
+ "unit": "(percent of schools)"
2001
+ },
2002
+ {
2003
+ "id": 108,
2004
+ "indicators": [
2005
+ {
2006
+ "id": 350,
2007
+ "name": "Total"
2008
+ }
2009
+ ],
2010
+ "name": "Pupil-teacher ratio in primary schools",
2011
+ "unit": "(students per teacher)"
2012
+ },
2013
+ {
2014
+ "id": 109,
2015
+ "indicators": [
2016
+ {
2017
+ "id": 351,
2018
+ "name": "Total"
2019
+ }
2020
+ ],
2021
+ "name": "Pupil-teacher ratio over 30 in primary schools",
2022
+ "unit": "(percent of schools)"
2023
+ }
2024
+ ],
2025
+ "id": 38,
2026
+ "name": "Education Services"
2027
+ }
2028
+ ]
2029
+ },
2030
+ {
2031
+ "id": 12,
2032
+ "name": "Environment",
2033
+ "sub_themes": [
2034
+ {
2035
+ "categories": [
2036
+ {
2037
+ "id": 110,
2038
+ "indicators": [
2039
+ {
2040
+ "id": 352,
2041
+ "name": "Total"
2042
+ }
2043
+ ],
2044
+ "name": "Elevation",
2045
+ "unit": "(meters)"
2046
+ },
2047
+ {
2048
+ "id": 111,
2049
+ "indicators": [
2050
+ {
2051
+ "id": 353,
2052
+ "name": "Total"
2053
+ }
2054
+ ],
2055
+ "name": "Surface Roughness",
2056
+ "unit": "(meters)"
2057
+ },
2058
+ {
2059
+ "id": 112,
2060
+ "indicators": [
2061
+ {
2062
+ "id": 354,
2063
+ "name": "Total"
2064
+ }
2065
+ ],
2066
+ "name": "Land area with limited or no constraints",
2067
+ "unit": "(percent of land area)"
2068
+ },
2069
+ {
2070
+ "id": 113,
2071
+ "indicators": [
2072
+ {
2073
+ "id": 193,
2074
+ "name": "Total"
2075
+ },
2076
+ {
2077
+ "id": 194,
2078
+ "name": "Ground Water"
2079
+ },
2080
+ {
2081
+ "id": 195,
2082
+ "name": "Surface Water"
2083
+ }
2084
+ ],
2085
+ "name": "Land area equipped for irrigation",
2086
+ "unit": "Percent of Land Area"
2087
+ },
2088
+ {
2089
+ "id": 114,
2090
+ "indicators": [
2091
+ {
2092
+ "id": 355,
2093
+ "name": "Total"
2094
+ }
2095
+ ],
2096
+ "name": "Land area actually irrigated",
2097
+ "unit": "Percent of Land Area"
2098
+ }
2099
+ ],
2100
+ "id": 39,
2101
+ "name": "Terrain"
2102
+ },
2103
+ {
2104
+ "categories": [
2105
+ {
2106
+ "id": 115,
2107
+ "indicators": [
2108
+ {
2109
+ "id": 356,
2110
+ "name": "Total"
2111
+ }
2112
+ ],
2113
+ "name": "Cropland",
2114
+ "unit": "(percent of area)"
2115
+ },
2116
+ {
2117
+ "id": 116,
2118
+ "indicators": [
2119
+ {
2120
+ "id": 357,
2121
+ "name": "Total"
2122
+ }
2123
+ ],
2124
+ "name": "Forest",
2125
+ "unit": "(percent of area)"
2126
+ },
2127
+ {
2128
+ "id": 117,
2129
+ "indicators": [
2130
+ {
2131
+ "id": 196,
2132
+ "name": "Total"
2133
+ },
2134
+ {
2135
+ "id": 197,
2136
+ "name": "Public"
2137
+ },
2138
+ {
2139
+ "id": 198,
2140
+ "name": "Private"
2141
+ },
2142
+ {
2143
+ "id": 199,
2144
+ "name": "Foreign"
2145
+ }
2146
+ ],
2147
+ "name": "Mineral Facilities",
2148
+ "unit": "(number of facilities)"
2149
+ },
2150
+ {
2151
+ "id": 118,
2152
+ "indicators": [
2153
+ {
2154
+ "id": 358,
2155
+ "name": "Total"
2156
+ }
2157
+ ],
2158
+ "name": "Mineral Production Capacity",
2159
+ "unit": "thousand metric tons per year"
2160
+ },
2161
+ {
2162
+ "id": 119,
2163
+ "indicators": [
2164
+ {
2165
+ "id": 200,
2166
+ "name": "Total"
2167
+ },
2168
+ {
2169
+ "id": 201,
2170
+ "name": "National"
2171
+ },
2172
+ {
2173
+ "id": 202,
2174
+ "name": "International"
2175
+ }
2176
+ ],
2177
+ "name": "Protected Land",
2178
+ "unit": "percent of area"
2179
+ }
2180
+ ],
2181
+ "id": 40,
2182
+ "name": "Natural resources"
2183
+ },
2184
+ {
2185
+ "categories": [
2186
+ {
2187
+ "id": 120,
2188
+ "indicators": [
2189
+ {
2190
+ "id": 203,
2191
+ "name": "January"
2192
+ },
2193
+ {
2194
+ "id": 204,
2195
+ "name": "February"
2196
+ },
2197
+ {
2198
+ "id": 205,
2199
+ "name": "March"
2200
+ },
2201
+ {
2202
+ "id": 206,
2203
+ "name": "April"
2204
+ },
2205
+ {
2206
+ "id": 207,
2207
+ "name": "May"
2208
+ },
2209
+ {
2210
+ "id": 208,
2211
+ "name": "June"
2212
+ },
2213
+ {
2214
+ "id": 209,
2215
+ "name": "July"
2216
+ },
2217
+ {
2218
+ "id": 210,
2219
+ "name": "August"
2220
+ },
2221
+ {
2222
+ "id": 211,
2223
+ "name": "September"
2224
+ },
2225
+ {
2226
+ "id": 212,
2227
+ "name": "October"
2228
+ },
2229
+ {
2230
+ "id": 213,
2231
+ "name": "November"
2232
+ },
2233
+ {
2234
+ "id": 214,
2235
+ "name": "December"
2236
+ }
2237
+ ],
2238
+ "name": "Monthly temperature",
2239
+ "unit": "(\u00baC)"
2240
+ },
2241
+ {
2242
+ "id": 121,
2243
+ "indicators": [
2244
+ {
2245
+ "id": 215,
2246
+ "name": "January"
2247
+ },
2248
+ {
2249
+ "id": 216,
2250
+ "name": "February"
2251
+ },
2252
+ {
2253
+ "id": 217,
2254
+ "name": "March"
2255
+ },
2256
+ {
2257
+ "id": 218,
2258
+ "name": "April"
2259
+ },
2260
+ {
2261
+ "id": 219,
2262
+ "name": "May"
2263
+ },
2264
+ {
2265
+ "id": 220,
2266
+ "name": "June"
2267
+ },
2268
+ {
2269
+ "id": 221,
2270
+ "name": "July"
2271
+ },
2272
+ {
2273
+ "id": 222,
2274
+ "name": "August"
2275
+ },
2276
+ {
2277
+ "id": 223,
2278
+ "name": "September"
2279
+ },
2280
+ {
2281
+ "id": 224,
2282
+ "name": "October"
2283
+ },
2284
+ {
2285
+ "id": 225,
2286
+ "name": "November"
2287
+ },
2288
+ {
2289
+ "id": 226,
2290
+ "name": "December"
2291
+ }
2292
+ ],
2293
+ "name": "Decadal average of monthly temperature",
2294
+ "unit": "(\u00baC)"
2295
+ },
2296
+ {
2297
+ "id": 122,
2298
+ "indicators": [
2299
+ {
2300
+ "id": 227,
2301
+ "name": "January"
2302
+ },
2303
+ {
2304
+ "id": 228,
2305
+ "name": "February"
2306
+ },
2307
+ {
2308
+ "id": 229,
2309
+ "name": "March"
2310
+ },
2311
+ {
2312
+ "id": 230,
2313
+ "name": "April"
2314
+ },
2315
+ {
2316
+ "id": 231,
2317
+ "name": "May"
2318
+ },
2319
+ {
2320
+ "id": 232,
2321
+ "name": "June"
2322
+ },
2323
+ {
2324
+ "id": 233,
2325
+ "name": "July"
2326
+ },
2327
+ {
2328
+ "id": 234,
2329
+ "name": "August"
2330
+ },
2331
+ {
2332
+ "id": 235,
2333
+ "name": "September"
2334
+ },
2335
+ {
2336
+ "id": 236,
2337
+ "name": "October"
2338
+ },
2339
+ {
2340
+ "id": 237,
2341
+ "name": "November"
2342
+ },
2343
+ {
2344
+ "id": 238,
2345
+ "name": "December"
2346
+ }
2347
+ ],
2348
+ "name": "Decadal variation of monthly temperature",
2349
+ "unit": "(\u00baC)"
2350
+ },
2351
+ {
2352
+ "id": 123,
2353
+ "indicators": [
2354
+ {
2355
+ "id": 239,
2356
+ "name": "January"
2357
+ },
2358
+ {
2359
+ "id": 240,
2360
+ "name": "February"
2361
+ },
2362
+ {
2363
+ "id": 241,
2364
+ "name": "March"
2365
+ },
2366
+ {
2367
+ "id": 242,
2368
+ "name": "April"
2369
+ },
2370
+ {
2371
+ "id": 243,
2372
+ "name": "May"
2373
+ },
2374
+ {
2375
+ "id": 244,
2376
+ "name": "June"
2377
+ },
2378
+ {
2379
+ "id": 245,
2380
+ "name": "July"
2381
+ },
2382
+ {
2383
+ "id": 246,
2384
+ "name": "August"
2385
+ },
2386
+ {
2387
+ "id": 247,
2388
+ "name": "September"
2389
+ },
2390
+ {
2391
+ "id": 248,
2392
+ "name": "October"
2393
+ },
2394
+ {
2395
+ "id": 249,
2396
+ "name": "November"
2397
+ },
2398
+ {
2399
+ "id": 250,
2400
+ "name": "December"
2401
+ }
2402
+ ],
2403
+ "name": "Temperature anomaly",
2404
+ "unit": "(\u00baC)"
2405
+ },
2406
+ {
2407
+ "id": 124,
2408
+ "indicators": [
2409
+ {
2410
+ "id": 251,
2411
+ "name": "January"
2412
+ },
2413
+ {
2414
+ "id": 252,
2415
+ "name": "February"
2416
+ },
2417
+ {
2418
+ "id": 253,
2419
+ "name": "March"
2420
+ },
2421
+ {
2422
+ "id": 254,
2423
+ "name": "April"
2424
+ },
2425
+ {
2426
+ "id": 255,
2427
+ "name": "May"
2428
+ },
2429
+ {
2430
+ "id": 256,
2431
+ "name": "June"
2432
+ },
2433
+ {
2434
+ "id": 257,
2435
+ "name": "July"
2436
+ },
2437
+ {
2438
+ "id": 258,
2439
+ "name": "August"
2440
+ },
2441
+ {
2442
+ "id": 259,
2443
+ "name": "September"
2444
+ },
2445
+ {
2446
+ "id": 260,
2447
+ "name": "October"
2448
+ },
2449
+ {
2450
+ "id": 261,
2451
+ "name": "November"
2452
+ },
2453
+ {
2454
+ "id": 262,
2455
+ "name": "December"
2456
+ }
2457
+ ],
2458
+ "name": "Precipitation",
2459
+ "unit": "(mm)"
2460
+ },
2461
+ {
2462
+ "id": 125,
2463
+ "indicators": [
2464
+ {
2465
+ "id": 263,
2466
+ "name": "January"
2467
+ },
2468
+ {
2469
+ "id": 264,
2470
+ "name": "February"
2471
+ },
2472
+ {
2473
+ "id": 265,
2474
+ "name": "March"
2475
+ },
2476
+ {
2477
+ "id": 266,
2478
+ "name": "April"
2479
+ },
2480
+ {
2481
+ "id": 267,
2482
+ "name": "May"
2483
+ },
2484
+ {
2485
+ "id": 268,
2486
+ "name": "June"
2487
+ },
2488
+ {
2489
+ "id": 269,
2490
+ "name": "July"
2491
+ },
2492
+ {
2493
+ "id": 270,
2494
+ "name": "August"
2495
+ },
2496
+ {
2497
+ "id": 271,
2498
+ "name": "September"
2499
+ },
2500
+ {
2501
+ "id": 272,
2502
+ "name": "October"
2503
+ },
2504
+ {
2505
+ "id": 273,
2506
+ "name": "November"
2507
+ },
2508
+ {
2509
+ "id": 274,
2510
+ "name": "December"
2511
+ }
2512
+ ],
2513
+ "name": "Decadal average of monthly precipitation",
2514
+ "unit": "(mm)"
2515
+ },
2516
+ {
2517
+ "id": 126,
2518
+ "indicators": [
2519
+ {
2520
+ "id": 275,
2521
+ "name": "January"
2522
+ },
2523
+ {
2524
+ "id": 276,
2525
+ "name": "February"
2526
+ },
2527
+ {
2528
+ "id": 277,
2529
+ "name": "March"
2530
+ },
2531
+ {
2532
+ "id": 278,
2533
+ "name": "April"
2534
+ },
2535
+ {
2536
+ "id": 279,
2537
+ "name": "May"
2538
+ },
2539
+ {
2540
+ "id": 280,
2541
+ "name": "June"
2542
+ },
2543
+ {
2544
+ "id": 281,
2545
+ "name": "July"
2546
+ },
2547
+ {
2548
+ "id": 282,
2549
+ "name": "August"
2550
+ },
2551
+ {
2552
+ "id": 283,
2553
+ "name": "September"
2554
+ },
2555
+ {
2556
+ "id": 284,
2557
+ "name": "October"
2558
+ },
2559
+ {
2560
+ "id": 285,
2561
+ "name": "November"
2562
+ },
2563
+ {
2564
+ "id": 286,
2565
+ "name": "December"
2566
+ }
2567
+ ],
2568
+ "name": "Decadal variation of monthly precipitation",
2569
+ "unit": "(mm)"
2570
+ },
2571
+ {
2572
+ "id": 127,
2573
+ "indicators": [
2574
+ {
2575
+ "id": 287,
2576
+ "name": "January"
2577
+ },
2578
+ {
2579
+ "id": 288,
2580
+ "name": "February"
2581
+ },
2582
+ {
2583
+ "id": 289,
2584
+ "name": "March"
2585
+ },
2586
+ {
2587
+ "id": 290,
2588
+ "name": "April"
2589
+ },
2590
+ {
2591
+ "id": 291,
2592
+ "name": "May"
2593
+ },
2594
+ {
2595
+ "id": 292,
2596
+ "name": "June"
2597
+ },
2598
+ {
2599
+ "id": 293,
2600
+ "name": "July"
2601
+ },
2602
+ {
2603
+ "id": 294,
2604
+ "name": "August"
2605
+ },
2606
+ {
2607
+ "id": 295,
2608
+ "name": "September"
2609
+ },
2610
+ {
2611
+ "id": 296,
2612
+ "name": "October"
2613
+ },
2614
+ {
2615
+ "id": 297,
2616
+ "name": "November"
2617
+ },
2618
+ {
2619
+ "id": 298,
2620
+ "name": "December"
2621
+ }
2622
+ ],
2623
+ "name": "Precipitation anomaly",
2624
+ "unit": "(mm)"
2625
+ }
2626
+ ],
2627
+ "id": 41,
2628
+ "name": "Climate"
2629
+ },
2630
+ {
2631
+ "categories": [
2632
+ {
2633
+ "id": 128,
2634
+ "indicators": [
2635
+ {
2636
+ "id": 359,
2637
+ "name": "Total"
2638
+ }
2639
+ ],
2640
+ "name": "Carbon monoxide levels",
2641
+ "unit": "(parts per billion by volume)"
2642
+ },
2643
+ {
2644
+ "id": 129,
2645
+ "indicators": [
2646
+ {
2647
+ "id": 360,
2648
+ "name": "Total"
2649
+ }
2650
+ ],
2651
+ "name": "Nitrogen dioxide levels",
2652
+ "unit": "(billion molecules/mm2)"
2653
+ },
2654
+ {
2655
+ "id": 130,
2656
+ "indicators": [
2657
+ {
2658
+ "id": 361,
2659
+ "name": "Total"
2660
+ }
2661
+ ],
2662
+ "name": "Aerosol particle radius",
2663
+ "unit": "(percent of small particles)"
2664
+ },
2665
+ {
2666
+ "id": 131,
2667
+ "indicators": [
2668
+ {
2669
+ "id": 362,
2670
+ "name": "Total"
2671
+ }
2672
+ ],
2673
+ "name": "Aerosol optical thickness",
2674
+ "unit": "(thickness scale 0\u20131)"
2675
+ }
2676
+ ],
2677
+ "id": 42,
2678
+ "name": "Pollution"
2679
+ }
2680
+ ]
2681
+ }
2682
+ ]