-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgrid_list.json
1293 lines (1293 loc) · 80.7 KB
/
grid_list.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
[
{
"name": "us_state_grid1",
"desc": "Grid layout for US states (including DC)",
"ref_img": "https://images7.alphacoders.com/687/687665.jpg"
},
{
"name": "us_state_grid2",
"desc": "Grid layout for US states (including DC)",
"ref_img": "https://images7.alphacoders.com/687/687665.jpg"
},
{
"name": "eu_grid1",
"desc": "Grid layout for the 28 EU Countries",
"ref_img": "https://ichef.bbci.co.uk/news/660/media/images/70233000/gif/_70233868_eunames.gif"
},
{
"name": "aus_grid1",
"desc": "Grid layout for the Australian States and Territories.",
"contrib": "https://github.com/jonocarroll",
"ref_img": "https://cloud.githubusercontent.com/assets/9496865/26334627/75a729d2-3fa5-11e7-88af-a1dd86b7ddf3.png"
},
{
"name": "sa_prov_grid1",
"desc": "Grid layout for the provinces of South Africa",
"contrib": "https://github.com/jonmcalder",
"ref_img": "https://camo.githubusercontent.com/14e357c36b6b72c0ef60e700d832b57aac87bddd/68747470733a2f2f7777772e736f7574686166726963612e746f2f70726f76696e6365732f5253415f62795f70726f76696e6365732e6a7067"
},
{
"name": "gb_london_boroughs_grid",
"desc": "Grid layout for the boroughs of London. Note that the column \\code{code_ons} contains the codes used by UK Office for National Statistics.",
"contrib": "https://github.com/eldenvo",
"ref_img": "https://cloud.githubusercontent.com/assets/13021448/26399784/3133d684-4076-11e7-8eac-1e74d023bf18.jpg"
},
{
"name": "nhs_scot_grid",
"desc": "Grid layout for a grid of NHS Scotland Health Boards. Note that the column \\code{code} contains the codes used by UK Office for National Statistics.",
"contrib": "https://github.com/jsphdms",
"ref_img": "https://cloud.githubusercontent.com/assets/24879214/26426113/253658d0-40cf-11e7-88b5-fe5ee7fda44f.png"
},
{
"name": "india_grid1",
"desc": "Grid layout for India states (not including union territories).",
"contrib": "https://github.com/meysubb",
"ref_img": "https://cloud.githubusercontent.com/assets/11698124/26569168/dd2ca86c-44bd-11e7-9d74-af919522f7b1.jpg"
},
{
"name": "india_grid2",
"desc": "Grid layout for India states (not including union territories).",
"ref_img": "https://cloud.githubusercontent.com/assets/11698124/26569168/dd2ca86c-44bd-11e7-9d74-af919522f7b1.jpg"
},
{
"name": "argentina_grid1",
"desc": "Grid for the 23 provinces of Argentina. It includes the Malvinas/Falkland Islands and the Antarctic Territories (these are disputed, but they are included since many researchers might use data from these locations).",
"contrib": "https://github.com/eliocamp",
"ref_img": "https://i.pinimg.com/736x/bf/cb/96/bfcb9654477c127d3b0e0b72d5be65fc.jpg"
},
{
"name": "br_states_grid1",
"desc": "Grid for the 27 states of Brazil.",
"contrib": "https://github.com/italocegatta",
"ref_img": "https://camo.githubusercontent.com/477627dce2610f18f1bf3850cd32fca01610656e/687474703a2f2f63656a656475696e66616e74696c2e7062776f726b732e636f6d2f662f313435383034313938342f4d61706142726173696c5369676c61732e676966"
},
{
"name": "sea_grid1",
"desc": "Grid for South East Asian countries.",
"contrib": "https://github.com/jasonjb82",
"ref_img": "https://camo.githubusercontent.com/694a275db0e89984f347ce8b49221352416d2c48/68747470733a2f2f7669676e65747465322e77696b69612e6e6f636f6f6b69652e6e65742f757461752f696d616765732f382f38322f536f757468656173745f617369612e6a70672f7265766973696f6e2f6c61746573743f63623d3230313130313230303431383034"
},
{
"name": "mys_grid1",
"desc": "Grid for Malaysian states and territories.",
"contrib": "https://github.com/jasonjb82",
"ref_img": "https://camo.githubusercontent.com/cd22848f0b7b53d4ef7afc6d178a0e9579ecf2aa/68747470733a2f2f7777772e6d6170736f66776f726c642e636f6d2f6d616c61797369612f6d6170732f6d616c61797369612d706f6c69746963616c2d6d61702e6a7067"
},
{
"name": "fr_regions_grid1",
"desc": "Land and overseas regions of France. Codes are INSEE codes.",
"contrib": "https://github.com/mtmx",
"ref_img": "https://camo.githubusercontent.com/b526c357a4c30cdd2e90700c6559381348111377/687474703a2f2f7777772e6361727465736672616e63652e66722f6361727465732f67656f677261706869652f63617274652d726567696f6e732e6a7067"
},
{
"name": "de_states_grid1",
"desc": "Grid for the German states ('Länder')",
"contrib": "https://github.com/DominikVogel",
"ref_img": "https://camo.githubusercontent.com/e144ebb2bdd2d82d8a4c34908cd68ab2b2388425/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f642f64332f5374617465735f6f665f4765726d616e792e737667"
},
{
"name": "us_or_counties_grid1",
"desc": "Grid for Oregon counties.",
"contrib": "https://github.com/aosmith16",
"ref_img": "https://user-images.githubusercontent.com/11638312/27445795-01b77804-5730-11e7-919b-36cde8027706.jpg"
},
{
"name": "us_wa_counties_grid1",
"desc": "Grid for Washington counties.",
"ref_img": "https://countymapsofwashington.com/aapics/washingstate.gif"
},
{
"name": "us_in_counties_grid1",
"desc": "Grid for Indiana counties.",
"contrib": "https://github.com/nateapathy",
"ref_img": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Indiana_county_map.png/640px-Indiana_county_map.png"
},
{
"name": "us_in_central_counties_grid1",
"desc": "Grid for central Indiana counties.",
"contrib": "https://github.com/nateapathy",
"ref_img": "https://camo.githubusercontent.com/eb31e821890a0c600f59234fb184335c2bf84423/687474703a2f2f7777772e736176692e6f72672f77702d636f6e74656e742f75706c6f6164732f323031352f30322f6d61702d312e6a7067"
},
{
"name": "se_counties_grid1",
"desc": "Grid for counties of Sweden.",
"contrib": "https://github.com/duleise",
"ref_img": "https://www.worldatlas.com/webimage/countrys/europe/lgcolor/secounties.gif"
},
{
"name": "sf_bay_area_counties_grid1",
"desc": "Grid of the 9 San Francisco Bay Area counties.",
"contrib": "https://github.com/Eunoia",
"ref_img": "https://user-images.githubusercontent.com/1275592/28043128-53be650a-6585-11e7-920e-4ad9a13bf1a5.png"
},
{
"name": "ua_region_grid1",
"desc": "Grid of administrative divisions of Ukraine (24 oblasts, one autonomous region, and two cities).",
"contrib": "https://github.com/woldemarg",
"ref_img": "https://camo.githubusercontent.com/0615706478de63da2c7c3c3b21fe92c6db6a2fee/687474703a2f2f696d61676573312e66616e706f702e636f6d2f696d616765732f696d6167655f75706c6f6164732f556b7261696e69616e2d6d61702d756b7261696e652d313135333138375f3733305f3530352e676966"
},
{
"name": "mx_state_grid1",
"desc": "Grid layout for the states of Mexico.",
"contrib": "https://github.com/ikashnitsky",
"ref_img": "https://user-images.githubusercontent.com/1275592/28044555-ee236b2a-658c-11e7-96e5-3af124ca9619.png"
},
{
"name": "mx_state_grid2",
"desc": "Grid layout for the states of Mexico.",
"contrib": "https://github.com/diegovalle",
"ref_img": "https://user-images.githubusercontent.com/1275592/28044555-ee236b2a-658c-11e7-96e5-3af124ca9619.png"
},
{
"name": "scotland_local_authority_grid1",
"desc": "Grid layout for the local authorities of Scotland.",
"contrib": "https://github.com/davidhen",
"ref_img": "https://user-images.githubusercontent.com/1275592/28044967-3b508570-658f-11e7-99b5-b1d73c765c2e.png"
},
{
"name": "us_state_without_DC_grid1",
"desc": "Grid layout for US states (excluding DC)",
"contrib": "https://github.com/ejr248",
"ref_img": "https://images7.alphacoders.com/687/687665.jpg"
},
{
"name": "italy_grid1",
"desc": "Grid layout for regions of Italy (in collaboration with Stella Cangelosi and Luciana Dalla Valle).",
"contrib": "https://github.com/JulianStander",
"ref_img": "https://user-images.githubusercontent.com/1275592/28291015-8f0abd66-6afd-11e7-9e2a-b4c1d4021c13.png"
},
{
"name": "italy_grid2",
"desc": "Grid layout for regions of Italy (in collaboration with Stella Cangelosi and Luciana Dalla Valle).",
"contrib": "https://github.com/JulianStander",
"ref_img": "https://user-images.githubusercontent.com/1275592/28291015-8f0abd66-6afd-11e7-9e2a-b4c1d4021c13.png"
},
{
"name": "be_province_grid1",
"desc": "Grid layout for provinces of Belgium plus Brussels, including names in three languages (French, Dutch, English) and Belgium internal codes (NIS).",
"contrib": "https://github.com/ericlecoutre",
"ref_img": "https://camo.githubusercontent.com/efa2c894793585141da8f7b9789b184eacc8d781/687474703a2f2f7777772e657570656469612e636f6d2f696d616765732f636f6e74656e742f42656c6769756d5f526567696f6e732e676966"
},
{
"name": "us_state_grid3",
"desc": "Grid layout for US states (including DC).",
"contrib": "https://github.com/kanishkamisra",
"ref_img": "https://images7.alphacoders.com/687/687665.jpg"
},
{
"name": "jp_prefs_grid1",
"desc": "Grid layout for the prefectures of Japan.",
"contrib": "https://github.com/uribo",
"ref_img": "https://camo.githubusercontent.com/bffec5ac4ae6507c1ca1b83570544f405b86b048/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f382f38372f49534f2d333136362d322d4a502e706e672f35313270782d49534f2d333136362d322d4a502e706e67"
},
{
"name": "ng_state_grid1",
"desc": "Grid layout for the 37 Federal States of Nigeria.",
"contrib": "https://github.com/aledemogr",
"ref_img": "https://camo.githubusercontent.com/fa12bca8fe3f3de3d7af707400adbc7fc4656cc3/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f382f38332f4e6967657269615f7374617465732e706e67"
},
{
"name": "bd_upazila_grid1",
"desc": "Grid layout for Bangladesh 64 Upazilas.",
"contrib": "https://github.com/aledemogr",
"ref_img": "https://camo.githubusercontent.com/df1e4aff5a3e0238afef97586d324d9b23acf27b/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f322f32382f42445f4d61705f61646d696e2e7376672f38303070782d42445f4d61705f61646d696e2e7376672e706e67"
},
{
"name": "spain_prov_grid1",
"desc": "Grid layout for Provinces of Spain.",
"contrib": "https://github.com/kintero",
"ref_img": "https://user-images.githubusercontent.com/1275592/30189589-cbfbf2de-93e9-11e7-9598-bb4c4e09e0c1.png"
},
{
"name": "ch_cantons_grid1",
"desc": "Grid layout for Cantons of Switzerland.",
"contrib": "https://github.com/tinu-schneider",
"ref_img": "https://camo.githubusercontent.com/b3c99e5725cdb60fd60a66731c8492fdb0e09ab6/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f342f34612f537769747a65726c616e642532435f61646d696e6973747261746976655f6469766973696f6e735f2d5f64655f2d5f636f6c6f7265642e737667"
},
{
"name": "ch_cantons_grid2",
"desc": "Grid layout for Cantons of Switzerland.",
"contrib": "https://github.com/rastrau",
"ref_img": "https://user-images.githubusercontent.com/4510815/29034578-0485df5c-7b99-11e7-9ff8-67a7b687de12.png"
},
{
"name": "china_prov_grid1",
"desc": "Grid layout for Provinces of China.",
"contrib": "https://github.com/weiyunna",
"ref_img": "https://user-images.githubusercontent.com/1275592/30039720-cf9c8532-9189-11e7-856b-a6ecf449ee0c.png"
},
{
"name": "world_86countries_grid",
"desc": "Grid layout for 86 countries in the world.",
"contrib": "https://github.com/akangsha",
"ref_img": "https://user-images.githubusercontent.com/1275592/30190118-0678aeb8-93ed-11e7-91b2-49738beb6f04.png"
},
{
"name": "se_counties_grid2",
"desc": "Grid for counties of Sweden.",
"contrib": "https://github.com/richardohrvall",
"ref_img": "https://user-images.githubusercontent.com/6022947/31674182-71150350-b361-11e7-9873-ffe319344c90.jpg"
},
{
"name": "uk_regions1",
"desc": "Grid for regions of the UK (aka EU standard NUTS 1 areas).",
"contrib": "https://github.com/paulb20",
"ref_img": "https://user-images.githubusercontent.com/1275592/32032394-d394b24a-b9bb-11e7-91e8-fe4da69ba005.jpg"
},
{
"name": "us_state_contiguous_grid1",
"desc": "Grid layout for the contiguous US states (including DC).",
"contrib": "https://github.com/andrewsr",
"ref_img": "https://images7.alphacoders.com/687/687665.jpg"
},
{
"name": "sk_province_grid1",
"desc": "Grid layout for South Korean sis and dos (metropolitan/special/autonomous cities and provinces).",
"contrib": "https://github.com/heon131",
"ref_img": "https://tong.visitkorea.or.kr/enu/images/koreastay/korea_map.jpg"
},
{
"name": "ch_aargau_districts_grid1",
"desc": "Grid layout for Districts of the Canton of Aargau, Switzerland.",
"contrib": "https://github.com/zumbov2",
"ref_img": "https://user-images.githubusercontent.com/31518032/32281394-fcd761d0-bf1e-11e7-9dcc-ae52307eeafd.png"
},
{
"name": "jo_gov_grid1",
"desc": "Grid layout for Governorates of Jordan.",
"contrib": "https://github.com/aledemogr",
"ref_img": "https://user-images.githubusercontent.com/1275592/82837533-32964c00-9e7e-11ea-841f-8ab3a202b888.png"
},
{
"name": "es_autonomous_communities_grid1",
"desc": "Grid layout for Spanish 'Comunidades Autónomas'.",
"contrib": "https://github.com/JoseAntonioOrtega",
"ref_img": "https://user-images.githubusercontent.com/1275592/54301007-558b5780-457b-11e9-8796-9f7a3859820d.jpg"
},
{
"name": "spain_prov_grid2",
"desc": "Grid layout for Provinces of Spain.",
"contrib": "https://github.com/JoseAntonioOrtega",
"ref_img": "https://user-images.githubusercontent.com/1275592/30189589-cbfbf2de-93e9-11e7-9598-bb4c4e09e0c1.png"
},
{
"name": "world_countries_grid1",
"desc": "Grid layout for countries of the world, with a few exclusions. See .",
"contrib": "https://github.com/JoseAntonioOrtega",
"ref_img": "https://user-images.githubusercontent.com/1275592/30189589-cbfbf2de-93e9-11e7-9598-bb4c4e09e0c1.png"
},
{
"name": "br_states_grid2",
"desc": "Grid for the 27 states of Brazil.",
"contrib": "https://github.com/hafen",
"ref_img": "https://brazil-help.com/mapa_do_brasil.gif"
},
{
"name": "china_city_grid1",
"desc": "Grid layout of cities in China.",
"contrib": "https://github.com/CharleneDeng1",
"ref_img": "https://user-images.githubusercontent.com/1275592/82846130-3f299d00-9e9c-11ea-8a38-efb4ade0e502.png"
},
{
"name": "kr_seoul_district_grid1",
"desc": "Grid layout of Seoul's 25 districts.",
"contrib": "https://github.com/yonghah",
"ref_img": "https://user-images.githubusercontent.com/1275592/38068875-494e49a8-32c8-11e8-8ace-b91982fe486f.png"
},
{
"name": "nz_regions_grid1",
"desc": "Grid layout for regions of New Zealand.",
"contrib": "https://github.com/pierreroudier",
"ref_img": "https://camo.githubusercontent.com/3db8d49d196be1e70ed0ebd4dcedf6fefc8fcfed/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f322f32312f4e5a5f526567696f6e616c5f436f756e63696c735f616e645f5465727269746f7269616c5f417574686f7269746965735f323031372e7376672f3130303070782d4e5a5f526567696f6e616c5f436f756e63696c735f616e645f5465727269746f7269616c5f417574686f7269746965735f323031372e7376672e706e67"
},
{
"name": "sl_regions_grid1",
"desc": "Grid layout of Slovenian regions.",
"contrib": "https://github.com/SR1986",
"ref_img": "https://user-images.githubusercontent.com/1275592/38069181-df2cbcb0-32c9-11e8-8a5b-0528f3e9e81c.png"
},
{
"name": "us_census_div_grid1",
"desc": "Grid layout of US Census divisions.",
"contrib": "https://github.com/mkiang",
"ref_img": "https://camo.githubusercontent.com/154dc45aaff776642ac7a5ce257106f70c97d441/68747470733a2f2f7777772e6569612e676f762f636f6e73756d7074696f6e2f636f6d6d65726369616c2f696d616765732f63656e646976636f2e676966"
},
{
"name": "ar_tucuman_province_grid1",
"desc": "Grid layout for Argentina Tucumán Province political divisions (departments)",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/03faf8f653fffe62e0beb2ad9d36cbcbce094c10/687474703a2f2f7777772e636f6d6f6c6c65676172612e636f6d2f696d616765732f617267656e74696e612f646570617274616d656e746f732d64652d6c612d70726f76696e6369612d64652d747563756d616e2e706e67"
},
{
"name": "us_nh_counties_grid1",
"desc": "Grid layout for the 10 counties in New Hampshire.",
"contrib": "https://github.com/ghost",
"ref_img": "https://en.wikipedia.org/wiki/List_of_counties_in_New_Hampshire#/media/File:New_Hampshire_Locator_Map.PNG"
},
{
"name": "china_prov_grid2",
"desc": "Grid layout for Provinces of China.",
"contrib": "https://github.com/jw2531",
"ref_img": "https://user-images.githubusercontent.com/36669758/37746305-f5c138f4-2d4f-11e8-8a48-2a21513ea828.png"
},
{
"name": "pl_voivodeships_grid1",
"desc": "Grid layout for Polish voivodeships (provinces)",
"contrib": "https://github.com/erzk",
"ref_img": "https://user-images.githubusercontent.com/5550348/37672220-69c03caa-2c65-11e8-857e-2955f25f55bf.png"
},
{
"name": "us_ia_counties_grid1",
"desc": "Grid layout for counties in Iowa",
"contrib": "https://github.com/jrennyb",
"ref_img": "https://camo.githubusercontent.com/9a5e5d3c974c85a6d3ee87b1d2858940476e74c0/68747470733a2f2f7777772e6469676974616c2d746f706f2d6d6170732e636f6d2f636f756e74792d6d61702f696f77612d636f756e74792d6d61702e676966"
},
{
"name": "us_id_counties_grid1",
"desc": "Grid layout for counties in Idaho",
"contrib": "https://github.com/hathawayj",
"ref_img": "https://camo.githubusercontent.com/dbe964d952ecd106d2a9f677950852f957be1281/68747470733a2f2f67656f6c6f67792e636f6d2f636f756e74792d6d61702f696461686f2d636f756e74792d6d61702e676966"
},
{
"name": "ar_cordoba_dep_grid1",
"desc": "Grid layout for departments of Cordoba province in Argentina.",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://user-images.githubusercontent.com/12114624/38060507-45d03c66-32a8-11e8-81c0-3ef7675dbf4e.png"
},
{
"name": "us_fl_counties_grid1",
"desc": "Grid for Florida counties.",
"contrib": "https://github.com/ejr248",
"ref_img": "https://user-images.githubusercontent.com/1275592/38098066-df3a7690-332b-11e8-9e4f-9123379e412e.jpg"
},
{
"name": "ar_buenosaires_communes_grid1",
"desc": "Grid for communes of Buenos Aires, Argentina.",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/1397b556f643333f5c0afbf074e12b316ea8f063/687474703a2f2f7777772e6e6f746963696172696f7375722e636f6d2e61722f77702d636f6e74656e742f75706c6f6164732f323031322f30322f434f4d4e41532d4d4150412e676966"
},
{
"name": "nz_regions_grid2",
"desc": "Grid layout for regions of New Zealand.",
"contrib": "https://github.com/pierreroudier",
"ref_img": "https://camo.githubusercontent.com/3db8d49d196be1e70ed0ebd4dcedf6fefc8fcfed/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f322f32312f4e5a5f526567696f6e616c5f436f756e63696c735f616e645f5465727269746f7269616c5f417574686f7269746965735f323031372e7376672f3130303070782d4e5a5f526567696f6e616c5f436f756e63696c735f616e645f5465727269746f7269616c5f417574686f7269746965735f323031372e7376672e706e67"
},
{
"name": "oecd_grid1",
"desc": "Grid layout for OECD member countries.",
"contrib": "https://github.com/arcruz0",
"ref_img": "https://camo.githubusercontent.com/9afd6ca4c97374e8d5b69c73325937e6de57ade3/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f342f34632f4f4543445f6d656d6265725f7374617465735f6d61702e7376672f3130303070782d4f4543445f6d656d6265725f7374617465735f6d61702e7376672e706e67"
},
{
"name": "ec_prov_grid1",
"desc": "Grid layout for provinces of Ecuador",
"contrib": "https://github.com/Ricardo95RM",
"ref_img": "https://camo.githubusercontent.com/7eabd24db749e5335f13c911df65f15516c10bef/68747470733a2f2f65637561646f726e6f7469636961732e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031372f30342f70726f76696e636961732d65637561646f722e6a7067"
},
{
"name": "nl_prov_grid1",
"desc": "Grid layout for provinces of Netherlands",
"contrib": "https://github.com/ruditurksema",
"ref_img": "https://camo.githubusercontent.com/a094b2603eff7e4c45b9fbdbbfd7b5637473354c/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f632f63632f4d61705f70726f76696e6365735f4e65746865726c616e64732d656e2e737667"
},
{
"name": "ca_prov_grid1",
"desc": "Grid layout for provinces of Canada",
"contrib": "https://github.com/michael-chong",
"ref_img": "https://camo.githubusercontent.com/5a0ad66e98796b817e506fe3127d48d7277a74a8/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f312f31342f506f6c69746963616c5f6d61705f6f665f43616e6164612e706e672f38303070782d506f6c69746963616c5f6d61705f6f665f43616e6164612e706e67"
},
{
"name": "us_nc_counties_grid1",
"desc": "Grid layout for Counties of North Carolina, United States",
"contrib": "https://github.com/mtdukes",
"ref_img": "https://camo.githubusercontent.com/50bf9a4f4861fa11dba4ea66f8f7712eb1b59593/68747470733a2f2f7765622e6c69622e756e632e6564752f6e632d6d6170732f696d616765732f686f74636f756e74796d61702e676966"
},
{
"name": "mx_ciudad_prov_grid1",
"desc": "Grid layout for Districts of Mexico City, Mexico",
"contrib": "https://github.com/Ivangea",
"ref_img": "https://camo.githubusercontent.com/ef6379d66d92e1ea289fcd8522853ec4348499d7/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f362f36652f4d582d44462d4469766973692543332542336e5f706f6c254333254144746963612e7376672f38303070782d4d582d44462d4469766973692543332542336e5f706f6c254333254144746963612e7376672e706e67"
},
{
"name": "bg_prov_grid1",
"desc": "Grid layout for provinces of Bulgaria",
"contrib": "https://github.com/savinastoitsova",
"ref_img": "https://camo.githubusercontent.com/46872c5c1703af4739df87eca5075ae91fe83833/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f382f38362f526567696f6e735f6f665f42756c67617269615f4d61702e706e67"
},
{
"name": "us_hhs_regions_grid1",
"desc": "This grid approximates the U.S. Health and Human Services Region map",
"contrib": "https://github.com/akitepowell",
"ref_img": "https://camo.githubusercontent.com/dd6f1a0c7749dd111d71be74f344d573eaad52f5/68747470733a2f2f7777772e6868732e676f762f73697465732f64656661756c742f66696c65732f6965612f696d616765732f726567696f6e736d61702e6a7067"
},
{
"name": "tw_counties_grid1",
"desc": "Grid layout for Counties of Taiwan",
"contrib": "https://github.com/csh484912274",
"ref_img": "https://camo.githubusercontent.com/b51d87c85c060ff96335274808600f7984f19e56/68747470733a2f2f692e696d6775722e636f6d2f744a5a6a4f4f422e706e67"
},
{
"name": "tw_counties_grid2",
"desc": "Grid layout for Counties of Taiwan including Lienchiang County",
"contrib": "https://github.com/csh484912274",
"ref_img": "https://camo.githubusercontent.com/b26bf4a5ff70294daaa6db508e06a82f2afd902f/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f652f65372f54616977616e5f524f435f706f6c69746963616c5f6469766973696f6e735f6c6162656c65642e7376672f3132303070782d54616977616e5f524f435f706f6c69746963616c5f6469766973696f6e735f6c6162656c65642e7376672e706e67"
},
{
"name": "af_prov_grid1",
"desc": "Grid layout for Provinces of Afghanistan",
"contrib": "https://github.com/jrennyb",
"ref_img": "https://camo.githubusercontent.com/86d2b1807e37f2d3009da212a870b58f9b091d67/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f342f34342f41666768616e697374616e5f70726f76696e6365735f6e756d62657265642e706e67"
},
{
"name": "us_mi_counties_grid1",
"desc": "Grid layout for Counties of Michigan, United States",
"contrib": "https://github.com/jrennyb",
"ref_img": "https://camo.githubusercontent.com/834a8eaa5d2bc37ec003d06d0cb5eee53954320d/687474703a2f2f7777772d706572736f6e616c2e756d6963682e6564752f7e62626f776d616e2f62697264732f4352414d5f696d6167656e756d732e676966"
},
{
"name": "pe_prov_grid1",
"desc": "Grid layout for Provinces of Peru",
"contrib": "https://github.com/jmcastagnetto",
"ref_img": "https://camo.githubusercontent.com/6c8d13fd43bf90b6bc7dbc3bff6c5a2abcda2e52/68747470733a2f2f696d6167656e6573746f74616c65732e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031382f30342f4d6170612d706f6c697469636f2d64656c2d506572752d322d373638783933362e706e67"
},
{
"name": "sa_prov_grid2",
"desc": "Grid layout for Provinces of South Africa",
"contrib": "https://github.com/kamermanpr",
"ref_img": "https://camo.githubusercontent.com/14e357c36b6b72c0ef60e700d832b57aac87bddd/68747470733a2f2f7777772e736f7574686166726963612e746f2f70726f76696e6365732f5253415f62795f70726f76696e6365732e6a7067"
},
{
"name": "mx_state_grid3",
"desc": "Grid layout for States of Mexico",
"contrib": "https://github.com/ikashnitsky",
"ref_img": "https://camo.githubusercontent.com/3b62258772065fe17c3a7a6a99b889251fa53d4a/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f632f63322f506f6c69746963616c5f6469766973696f6e735f6f665f4d657869636f2d656e2e7376672f3132303070782d506f6c69746963616c5f6469766973696f6e735f6f665f4d657869636f2d656e2e7376672e706e67"
},
{
"name": "cn_bj_districts_grid1",
"desc": "Grids for Administrative Districts of Beijing, China",
"contrib": "https://github.com/shiedelweiss",
"ref_img": "https://user-images.githubusercontent.com/1275592/54295842-0ccea100-4571-11e9-8d3f-c60f4f7f2c0a.png"
},
{
"name": "us_va_counties_grid1",
"desc": "Grids for Counties of Virginia, United States",
"contrib": "https://github.com/joshyazman",
"ref_img": "https://camo.githubusercontent.com/ad5f91421db6241dae5a292d841c13475b39452e/68747470733a2f2f67656f6c6f67792e636f6d2f73746174652d6d61702f6d6170732f76697267696e69612d636f756e74792d6d61702e676966"
},
{
"name": "us_mo_counties_grid1",
"desc": "Grids for Counties of Missouri, United States",
"contrib": "https://github.com/Yanqi-Xu",
"ref_img": "https://camo.githubusercontent.com/aecf36302e81059f92f399587faae8c88a81d6711ac468438c8c6ce71c2fd88a/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f322f32342f4d6973736f7572695f4c6f6361746f725f4d61702e504e47"
},
{
"name": "cl_santiago_prov_grid1",
"desc": "Communes of Santiago Province, Chile",
"contrib": "https://github.com/robsalasco",
"ref_img": "https://camo.githubusercontent.com/64e592a3c79ce5b03024cccfe43a9fca64ebffe1/68747470733a2f2f692e696d6775722e636f6d2f457361444675762e706e67"
},
{
"name": "us_tx_capcog_counties_grid1",
"desc": "This is a grid of a 10 county planning region around Austin, Texas, United States",
"contrib": "https://github.com/mth444",
"ref_img": "https://camo.githubusercontent.com/029adb9992cb52f8b655935a8ea67f3b2ba2778f/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f322f32332f434150434f472e706e67"
},
{
"name": "sg_planning_area_grid1",
"desc": "Grids for Planning Areas of Singapore",
"contrib": "https://github.com/Elenafuyi",
"ref_img": "https://user-images.githubusercontent.com/1275592/54297744-a9467280-4574-11e9-99f7-bdb62bbb34b4.png"
},
{
"name": "in_state_ut_grid1",
"desc": "Grid of Indian States and Union Territories",
"contrib": "https://github.com/seanangio",
"ref_img": "https://user-images.githubusercontent.com/1275592/54297966-1f4ad980-4575-11e9-8e8c-5006c91fccd1.png"
},
{
"name": "cn_fujian_prov_grid1",
"desc": "Grid of counties of Fujian Province, China",
"contrib": "https://github.com/nannanchen333",
"ref_img": "https://user-images.githubusercontent.com/1275592/54298318-c2035800-4575-11e9-8d68-868cc76315df.png"
},
{
"name": "ca_quebec_electoral_districts_grid1",
"desc": "Grid of Electoral Districts of Québec, Canada",
"contrib": "https://github.com/jhroy",
"ref_img": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/2022_Québec_General_Election_Map.svg/1020px-2022_Québec_General_Election_Map.svg.png?20221230235759"
},
{
"name": "nl_prov_grid2",
"desc": "Grid with the provinces of The Netherlands with codes that are used by the statistical institute of NL",
"contrib": "https://github.com/edwindj",
"ref_img": "https://camo.githubusercontent.com/2b6204b5f9856fadeb32a6042fe1fd48cbb4b06f/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f332f33302f4e656465726c616e64736550726f76696e636965734c617267652e706e67"
},
{
"name": "cn_bj_districts_grid2",
"desc": "Grid with districts of Beijing, China",
"contrib": "https://github.com/zouhx11",
"ref_img": "https://user-images.githubusercontent.com/1275592/54295842-0ccea100-4571-11e9-8d3f-c60f4f7f2c0a.png"
},
{
"name": "ar_santiago_del_estero_prov_grid1",
"desc": "Grid with districts of Santiago del Estero Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/5b7e451b3ccc8550c31644cf897c096256cc01ffc9c7f7f0a1284b29389fa34a/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f622f62382f446570617274616d656e746f5f416775697272655f25323853616e746961676f5f64656c5f45737465726f5f2d5f417267656e74696e612532392e706e67"
},
{
"name": "ar_formosa_prov_grid1",
"desc": "Grid with districts of Formosa Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/481f581ddcd2ae7a09cd47fb4779dc904a0d6b75/687474703a2f2f7777772e74656d7075736167726f2e636f6d2e61722f696d672f666f726d6f73612f6469766973696f6e706f6c69746963612e6a7067"
},
{
"name": "ar_chaco_prov_grid1",
"desc": "Grid with districts of Chaco Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/35120f89439dbdd5c147d3925d948ae6a955b0c8/68747470733a2f2f657370616e6f6c2e6d6170736f66776f726c642e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031342f30362f6d6170612d64656c2d636861636f2e6a7067"
},
{
"name": "ar_catamarca_prov_grid1",
"desc": "Grid with districts of Catamarca Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/a5997d24eda54a3ebce19a8bad590348e3926142db79d665c9a8c17b72c08d3c/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f322f32372f416d6261746f5f25323850726f76696e6369615f64655f436174616d617263615f2d5f417267656e74696e612532392e7376672f3139323070782d416d6261746f5f25323850726f76696e6369615f64655f436174616d617263615f2d5f417267656e74696e612532392e7376672e706e67"
},
{
"name": "ar_jujuy_prov_grid1",
"desc": "Grid with districts of Jujuy Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/9ccfff93636f3067deca6ead3cd7320ef0ff76b0f6628541baf2f17f9a612e14/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f372f37662f436f6368696e6f63615f25323850726f76696e6369615f64655f4a756a75795f2d5f417267656e74696e612532392e7376672f3235363070782d436f6368696e6f63615f25323850726f76696e6369615f64655f4a756a75795f2d5f417267656e74696e612532392e7376672e706e67"
},
{
"name": "ar_neuquen_prov_grid1",
"desc": "Grid with districts of Neuquen Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/5cda1ad7e1b4a39c6932a9c4cbfe7f2dc7cd9cd6/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f662f66322f4d6170615f64655f64656e73696461645f64655f706f626c6163696f6e5f323031305f70726f76696e6369615f64656c5f6e65757175656e2e7376672f32353070782d4d6170615f64655f64656e73696461645f64655f706f626c6163696f6e5f323031305f70726f76696e6369615f64656c5f6e65757175656e2e7376672e706e67"
},
{
"name": "ar_san_luis_prov_grid1",
"desc": "Grid with districts of San Luis Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/a1c246c3e3b95e7186355a5ac473bb68ac2818b4/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f612f61342f4469766973692543332542336e5f706f6c254333254144746963615f64655f6c615f50726f76696e6369615f64655f53616e5f4c7569735f2d417267656e74696e612d2e6a7067"
},
{
"name": "ar_san_juan_prov_grid1",
"desc": "Grid with districts of San Juan Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/a29a04aa5dbd26fd425abe01f07a60bb6d563013/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f302f30652f4d6170615f64655f6c615f50726f76696e6369615f64655f53616e5f4a75616e5f253238417267656e74696e612532395f636f6e5f6469766973692543332542336e5f706f6c254333254144746963612e6a70672f35303070782d4d6170615f64655f6c615f50726f76696e6369615f64655f53616e5f4a75616e5f253238417267656e74696e612532395f636f6e5f6469766973692543332542336e5f706f6c254333254144746963612e6a7067"
},
{
"name": "ar_santa_fe_prov_grid1",
"desc": "Grid with districts of Santa Fe Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/e3812264494cb18796173767991749601b0256d6/68747470733a2f2f7777772e66616d696c797365617263682e6f72672f77696b692f65732f696d675f617574682e7068702f7468756d622f372f37642f53616e74615f46655f50726f76696e6369615f4d6170612e706e672f33373070782d53616e74615f46655f50726f76696e6369615f4d6170612e706e67"
},
{
"name": "ar_la_rioja_prov_grid1",
"desc": "Grid with districts of La Rioja Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/03c888b6d01726c6832975a1535a046d91cd26ab/68747470733a2f2f7777772e66616d696c797365617263682e6f72672f77696b692f65732f696d675f617574682e7068702f7468756d622f642f64612f4c615f52696f6a615f50726f76696e6369615f4d6170612e706e672f36323070782d4c615f52696f6a615f50726f76696e6369615f4d6170612e706e67"
},
{
"name": "ar_mendoza_prov_grid1",
"desc": "Grid with districts of Mendoza Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/83ccf5cfdde385d5aa502812b61efafdcc769ecb/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f332f33342f4d6170615f64655f6c615f6469766973692543332542336e5f706f6c254333254144746963615f64655f6c615f706369612e5f64655f4d656e6f7a615f2d417267656e74696e612d2e6a70672f38303070782d4d6170615f64655f6c615f6469766973692543332542336e5f706f6c254333254144746963615f64655f6c615f706369612e5f64655f4d656e6f7a615f2d417267656e74696e612d2e6a7067"
},
{
"name": "ar_salta_prov_grid1",
"desc": "Grid with districts of Salta Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/9232d808104ddd3ab3983f9a670eb507a4d95e51/687474703a2f2f312e62702e626c6f6773706f742e636f6d2f5f564a6b71374771783743512f52303349467549766e30492f41414141414141414141632f75336655614c744e6a53672f733430302f646570617274616d656e746f732b64652b53616c74612e6a7067"
},
{
"name": "ar_rio_negro_prov_grid1",
"desc": "Grid with districts of Rio Negro Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/123414ec4933d38f3b991cc8d669138594d68b17/68747470733a2f2f63646e2e7468696e676c696e6b2e6d652f6170692f696d6167652f3536353530363334383233343537313737362f313234302f31302f7363616c65746f7769647468"
},
{
"name": "uy_departamentos_grid1",
"desc": "Grid with Departamentos of Uruguay",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/a56f891616c613ba8c120434f3d0786e005f1df8/68747470733a2f2f6d6170616d756e64692e6f6e6c696e652f77702d636f6e74656e742f75706c6f6164732f323031382f31312f6d6170612d706f6c697469636f2d64652d757275677561792e6a7067"
},
{
"name": "ar_buenos_aires_prov_electoral_dist_grid1",
"desc": "Grid with Electoral Districts of Buenos Aires Province, Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/3803a78b6fc2ca41ffd7bdf3a7a503af1cb48ba7/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f622f62302f53656363696f6e65735f656c6563746f72616c65735f64655f6c615f70726f76696e6369615f64655f4275656e6f735f41697265732e7376672f38303070782d53656363696f6e65735f656c6563746f72616c65735f64655f6c615f70726f76696e6369615f64655f4275656e6f735f41697265732e7376672e706e67"
},
{
"name": "europe_countries_grid1",
"desc": "Grid layout for all European countries except Vatican City, Monaco, San Marino and Liechtenstein",
"contrib": "https://github.com/THargreaves",
"ref_img": "https://user-images.githubusercontent.com/38204689/38485856-23e709b6-3bd3-11e8-8bc7-ae5cd892419c.png"
},
{
"name": "argentina_grid2",
"desc": "Grid layout for Argentina without Islas Malvinas and Antártida Argentina",
"contrib": "https://github.com/TuQmano",
"ref_img": "https://camo.githubusercontent.com/f14f25ac3e42051994f5fd4c53e2718c2b2290aa/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f392f39652f4d61705f6f665f417267656e74696e615f776974685f70726f76696e6365735f6e616d65735f656e2e706e67"
},
{
"name": "us_state_without_DC_grid2",
"desc": "Grid layout for United States with AK and HI flush with CA",
"contrib": "https://github.com/christophercannon",
"ref_img": "https://camo.githubusercontent.com/b446d99f631d067562f50a57449eddb0b89c1acf/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f612f61352f4d61705f6f665f5553415f776974685f73746174655f6e616d65732e737667"
},
{
"name": "jp_prefs_grid2",
"desc": "Grid layout for Prefectures of Japan",
"contrib": "https://github.com/Ryo-N7",
"ref_img": "https://user-images.githubusercontent.com/19657164/46902315-4c2f8d80-cefe-11e8-90bb-661771ce2836.JPG"
},
{
"name": "na_regions_grid1",
"desc": "Regions of Namibia",
"contrib": "https://github.com/stedy",
"ref_img": "https://camo.githubusercontent.com/a4519aa536614e5f5fc0839ff1a6208b9a79716a/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f632f63302f4e616d696269615f6e756d62657265645f636f6c6f7265645f726567696f6e735f456e676c697368312e706e672f38303070782d4e616d696269615f6e756d62657265645f636f6c6f7265645f726567696f6e735f456e676c697368312e706e67"
},
{
"name": "mm_state_grid1",
"desc": "States of Myanmar",
"contrib": "https://github.com/htinkyawaye",
"ref_img": "https://camo.githubusercontent.com/603ad86c99a004316ac5b53c9dd73d9ce0f73811/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f372f37612f4275726d615f61646d696e6973747261746976655f6469766973696f6e732e7376672f33303070782d4275726d615f61646d696e6973747261746976655f6469766973696f6e732e7376672e706e67"
},
{
"name": "us_state_with_DC_PR_grid1",
"desc": "United States of America including Washington, D.C. and Puerto Rico",
"contrib": "https://github.com/krothkin",
"ref_img": "https://camo.githubusercontent.com/c1ac0dd02771e221d5003984ab1ce518b864ef0c/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f612f61632f4d61705f6f665f5553415f50522e7376672f3132303070782d4d61705f6f665f5553415f50522e7376672e706e67"
},
{
"name": "fr_departements_grid1",
"desc": "Grid for France's departements, the second levels of administrative boundaries after the regions",
"contrib": "https://github.com/tvroylandt",
"ref_img": "https://camo.githubusercontent.com/790b9e52bccf40a4934c37ce58ea7726831811284200fc88abebce1ea22304b6/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f622f62312f50726f76696e6365735f6f665f4672616e63655f2532386e756d657265642532392e7376672f3139323070782d50726f76696e6365735f6f665f4672616e63655f2532386e756d657265642532392e7376672e706e67"
},
{
"name": "ar_salta_prov_grid2",
"desc": "Grids for Salta Province Argentina",
"contrib": "https://github.com/tartagalensis",
"ref_img": "https://camo.githubusercontent.com/bd75334802b6ef199dca758018335f162671c1d1e95147d9dabd4b0dc0d18f2c/687474703a2f2f312e62702e626c6f6773706f742e636f6d2f5f564a6b71374771783743512f52303349467549766e30492f41414141414141414141632f75336655614c744e6a53672f733430302f646570617274616d656e746f732b64652b53616c74612e6a7067"
},
{
"name": "ie_counties_grid1",
"desc": "Ireland counties. Code is the car number plate abbreviation for Republic counties, similar for the six counties of Northern Ireland. Tipperary is split North / South for historical reasons",
"contrib": "https://github.com/eugene100hickey",
"ref_img": "https://camo.githubusercontent.com/6497a5d179e5e3e64952f0334422bc0c2f634324/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f392f39632f4972656c616e645f747261645f636f756e746965735f6e616d65642e737667"
},
{
"name": "sg_regions_grid1",
"desc": "Urban planning regions of Singapore",
"contrib": "https://github.com/erhuttk",
"ref_img": "https://camo.githubusercontent.com/b5d68deaeb825640e7bf70a4965f6378b859bf22/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f392f39382f53696e6761706f72655f506c616e6e696e675f526567696f6e732e706e672f3130323470782d53696e6761706f72655f506c616e6e696e675f526567696f6e732e706e67"
},
{
"name": "us_ny_counties_grid1",
"desc": "Counties of New York State, United States",
"contrib": "https://github.com/jjdfsny",
"ref_img": "https://camo.githubusercontent.com/3792aae01199eecb778026ab8942c658896a1846/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f642f64622f4e65775f596f726b5f436f756e746965732e737667"
},
{
"name": "ru_federal_subjects_grid1",
"desc": "Federal Subjects of Russia",
"contrib": "https://github.com/ParanoidAndroid18",
"ref_img": "https://camo.githubusercontent.com/a47b5ea20c00d051979e11a5f6641dfffc4c4c94/68747470733a2f2f7777772e776f726c6461746c61732e636f6d2f722f773732382d683432352d63373238783432352f75706c6f61642f66362f33362f37632f7368757474657273746f636b2d3634313836353833352e6a7067"
},
{
"name": "us_ca_counties_grid1",
"desc": "Counties of the State of California, United States",
"contrib": "https://github.com/MartinLe5",
"ref_img": "https://camo.githubusercontent.com/796f370c0bd94a402e4ccf2d755e3664b0ec31ee/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f382f38392f43616c69666f726e69615f636f756e74795f6d61705f2532386c6162656c65642532392e7376672f38303070782d43616c69666f726e69615f636f756e74795f6d61705f2532386c6162656c65642532392e7376672e706e67"
},
{
"name": "lk_districts_grid1",
"desc": "Second level administrative divisions of Sri Lanka",
"contrib": "https://github.com/thiyangt",
"ref_img": "https://camo.githubusercontent.com/97b57a2d650118c1a5596330824feb7c4eacbcfd/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f632f63632f4469737472696374735f6f665f5372695f4c616e6b612e706e672f3132303070782d4469737472696374735f6f665f5372695f4c616e6b612e706e67"
},
{
"name": "us_state_without_DC_grid3",
"desc": "United States grid without Washington, D.C",
"contrib": "https://github.com/ghost",
"ref_img": "https://camo.githubusercontent.com/5038126fbe0052e7d42602dc6856aedc7822f639/687474703a2f2f6269742e6c792f75732d67726964"
},
{
"name": "co_cali_subdivisions_grid1",
"desc": "Corregimientos of Cali, Columbia",
"contrib": "https://github.com/Carolina101",
"ref_img": "https://user-images.githubusercontent.com/58274681/77264499-74312d80-6c68-11ea-8b87-b7185c53a8e8.png"
},
{
"name": "us_in_northern_counties_grid1",
"desc": "Northern Counties of Indiana, United States",
"contrib": "https://github.com/robertoge",
"ref_img": "https://camo.githubusercontent.com/e083d6d2b65e0e6660b602a3261a3d382d84403e/68747470733a2f2f7777772e696e2e676f762f6476612f696d616765732f696e6469616e61636f756e74796d61702e6a7067"
},
{
"name": "italy_grid3",
"desc": "Autonomous Provinces of Italy",
"contrib": "https://github.com/danilolofaro",
"ref_img": "https://camo.githubusercontent.com/c99fec4eacdf2b580301a1296e977951661b9e2e/687474703a2f2f6135312e69646174612e6f7665722d626c6f672e636f6d2f332f33322f36382f32302f43617274696e615f6974616c69612e676966"
},
{
"name": "us_state_with_DC_PR_grid2",
"desc": "Grid of 50 states, DC, and Puerto Rico",
"contrib": "https://github.com/krmaas",
"ref_img": "https://camo.githubusercontent.com/5038126fbe0052e7d42602dc6856aedc7822f639/687474703a2f2f6269742e6c792f75732d67726964"
},
{
"name": "us_state_grid7",
"desc": "United States grid with Washington, D.C",
"contrib": "https://github.com/yichenqin",
"ref_img": "https://camo.githubusercontent.com/5038126fbe0052e7d42602dc6856aedc7822f639/687474703a2f2f6269742e6c792f75732d67726964"
},
{
"name": "sg_planning_area_grid2",
"desc": "Singapore Planning Areas",
"contrib": "https://github.com/ZhimaoElliott",
"ref_img": "https://user-images.githubusercontent.com/1275592/54297744-a9467280-4574-11e9-99f7-bdb62bbb34b4.png"
},
{
"name": "ch_cantons_fl_grid1",
"desc": "Grid layout for Cantons of Switzerland and the neighbouring Prinicipality of Liechtenstein",
"contrib": "https://github.com/rastrau",
"ref_img": "https://camo.githubusercontent.com/e9cc4af58e6fd5cce80789b66965a5f6b1261043/68747470733a2f2f65787465726e616c2d636f6e74656e742e6475636b6475636b676f2e636f6d2f69752f3f753d68747470732533412532462532467777772e6d6170736f66776f726c642e636f6d253246737769747a65726c616e642532466d617073253246737769747a65726c616e642d706f6c69746963616c2d6d61702e6a706726663d31266e6f66623d31"
},
{
"name": "europe_countries_grid2",
"desc": "Grid layout for European countries (minus micro nations)",
"contrib": "https://github.com/rastrau",
"ref_img": "https://camo.githubusercontent.com/26d57bac5a363cea2e60c86241a11f85761929eb/68747470733a2f2f692e70696e696d672e636f6d2f6f726967696e616c732f66612f31662f36372f66613166363739386264346639643439303465303864633063643163323331662e676966"
},
{
"name": "us_states_territories_grid1",
"desc": "Grid layout for U.S. states and territories",
"contrib": "https://github.com/rastrau",
"ref_img": "https://camo.githubusercontent.com/83eb052673572f1a6785075d9e46759cb28ef4cc/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f392f39312f5465727269746f7269616c5f7761746572735f2d5f556e697465645f5374617465732e7376672f3238383070782d5465727269746f7269616c5f7761746572735f2d5f556e697465645f5374617465732e7376672e706e67"
},
{
"name": "us_tn_counties_grid1",
"desc": "Grid layout for counties of Tennesee, United States",
"contrib": "https://github.com/binkleym",
"ref_img": "https://camo.githubusercontent.com/18a78628dc8bae098f78d7373d471bcad8c737d9/687474703a2f2f6f6e746865776f726c646d61702e636f6d2f7573612f73746174652f74656e6e65737365652f74656e6e65737365652d636f756e74792d6d61702e6a7067"
},
{
"name": "us_il_chicago_community_areas_grid1",
"desc": "Grid layout for the Community Areas of Chicago",
"contrib": "https://github.com/leungkp",
"ref_img": "https://camo.githubusercontent.com/6a4894e55de6d844cf4641d14efb871f1fd17a60/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f322f32342f4d61705f6f665f7468655f436f6d6d756e6974795f41726561735f616e645f25323753696465732532375f6f665f7468655f436974795f6f665f4368696361676f2e7376672f33353070782d4d61705f6f665f7468655f436f6d6d756e6974795f41726561735f616e645f25323753696465732532375f6f665f7468655f436974795f6f665f4368696361676f2e7376672e706e67"
},
{
"name": "us_state_with_DC_PR_grid3",
"desc": "United States grid with Washington, D.C. and Puerto Rico",
"contrib": "https://github.com/klittle314",
"ref_img": "https://user-images.githubusercontent.com/1275592/82837790-f7484d00-9e7e-11ea-9136-7ace6c35af51.png"
},
{
"name": "in_state_ut_grid2",
"desc": "Grid of Indian States and Union Territories",
"contrib": "https://github.com/dnyansagar",
"ref_img": "https://user-images.githubusercontent.com/29943634/80574618-7a9e8c00-8a02-11ea-8387-1056410cb54b.png"
},
{
"name": "at_states_grid1",
"desc": "Grid layout for States of Austria",
"contrib": "https://github.com/werkstattcodes & https://github.com/wkapga",
"ref_img": "https://user-images.githubusercontent.com/9595585/80590528-4e900480-8a1c-11ea-9bf0-151cce354249.png"
},
{
"name": "us_pa_counties_grid1",
"desc": "Grid layout of Counties of Pennsylvania, United States",
"contrib": "https://github.com/urbanSpatial",
"ref_img": "https://camo.githubusercontent.com/9e66d19e37c885372b6782efc53f6f3200ce7497/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f382f38332f50656e6e73796c76616e69615f636f756e746965735f6d61702e706e67"
},
{
"name": "us_oh_counties_grid1",
"desc": "Grid layout of Counties of Ohio, United States",
"contrib": "https://github.com/taylorokonek",
"ref_img": "https://camo.githubusercontent.com/f52a753f240e844905bd487a35cbc3055c7fd58f/687474703a2f2f7777772e646f742e73746174652e6f682e75732f6d6170732f5075626c697368696e67496d616765732f506c61696e436f756e74792e676966"
},
{
"name": "fr_departements_grid2",
"desc": "Grid layout of Departements of France",
"contrib": "https://github.com/jerbou",
"ref_img": "https://camo.githubusercontent.com/e0992f21a9ff02c5bf792817cd17fd2bab550dfe/68747470733a2f2f61626f75742d6672616e63652e636f6d2f4d61702d6672616e63652d7265672e676966"
},
{
"name": "us_wi_counties_grid1",
"desc": "Grid layout for counties of Wisconsin, United States",
"contrib": "https://github.com/aravamu2",
"ref_img": "https://camo.githubusercontent.com/0e8c590b5984c2b061abdb1cf3d81c25a1dfd74828995f4aedc4bf8021c9e942/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f322f32352f576973636f6e73696e2d636f756e746965732d6d61702e676966"
},
{
"name": "africa_countries_grid1",
"desc": "Grid for all countries in Africa. Namibia added as 'NAM' to avoid NA collisions",
"contrib": "https://github.com/ntncmch",
"ref_img": "https://camo.githubusercontent.com/1b60515e108610e2a510e205c5cbbee28a53b85a/687474703a2f2f342e62702e626c6f6773706f742e636f6d2f2d33616d4d4e5952413255342f56654c55755779596874492f41414141414141414546672f46395a595a6f49444346342f73313630302f6166726963612d636f756e7472792d6d61702e706e67"
},
{
"name": "no_counties_grid1",
"desc": "Grid of counties of Norway",
"contrib": "https://github.com/NanAmalie1",
"ref_img": "https://camo.githubusercontent.com/1e8684781a30cdc9ce1b87068c861ebdfd51548f41de95d073217037cf9defb4/68747470733a2f2f7777772e66616d696c797365617263682e6f72672f656e2f77696b692f696d675f617574682e7068702f362f36632f4e6f727761795f3278322e6a7067"
},
{
"name": "tr_provinces_grid1",
"desc": "Grid of Provinces of Turkey",
"contrib": "https://github.com/sadettindemirel",
"ref_img": "https://camo.githubusercontent.com/1576de0be9c4381984f6082ad6e7dafdaee69f69/68747470733a2f2f62616e6e6572322e636c65616e706e672e636f6d2f32303138313230362f69746a2f6b697373706e672d697374616e62756c2d70726f76696e6365732d6f662d7475726b65792d62757273612d70726f76696e63652d6d61702d616e2d6469737472696274726c65722d726f746f666c7569642d646e65722d62616c616e742d656c652d35633039383137656139653461362e323033373431303731353434313236383436363935392e6a7067"
},
{
"name": "us_eastern_states_grid1",
"desc": "US State_grid showing only the states for which some portion falls east of the 100th meridian",
"contrib": "https://github.com/mihiarc",
"ref_img": "https://camo.githubusercontent.com/5038126fbe0052e7d42602dc6856aedc7822f639/687474703a2f2f6269742e6c792f75732d67726964"
},
{
"name": "br_states_grid3",
"desc": "Grid map of States of Brazil organized horizontally by region",
"contrib": "https://github.com/lzrmr",
"ref_img": "https://camo.githubusercontent.com/7873fec87f0dd0428d243b217546b3809762f4f1/68747470733a2f2f7777772e776f726c646f666d6170732e6e65742f7479706f3374656d702f696d616765732f62756e6465737374616174656e2d62726173696c69656e2e706e67"
},
{
"name": "us_states_territories_grid2",
"desc": "Grid map of US States and Territories",
"contrib": "https://github.com/edavidaja",
"ref_img": "https://camo.githubusercontent.com/83eb052673572f1a6785075d9e46759cb28ef4cc/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f392f39312f5465727269746f7269616c5f7761746572735f2d5f556e697465645f5374617465732e7376672f3238383070782d5465727269746f7269616c5f7761746572735f2d5f556e697465645f5374617465732e7376672e706e67"
},
{
"name": "us_state_grid8",
"desc": "Grid map of US States including Washington, D.C.",
"contrib": "https://github.com/krothkin",
"ref_img": "https://camo.githubusercontent.com/5038126fbe0052e7d42602dc6856aedc7822f639/687474703a2f2f6269742e6c792f75732d67726964"
},
{
"name": "us_state_grid9",
"desc": "Grid map of US States including Washington, D.C.",
"contrib": "https://github.com/krothkin",
"ref_img": "https://camo.githubusercontent.com/5038126fbe0052e7d42602dc6856aedc7822f639/687474703a2f2f6269742e6c792f75732d67726964"
},
{
"name": "fr_departements_grid3",
"desc": "Grid of Departements of France",
"contrib": "https://github.com/leachareyre",
"ref_img": "https://camo.githubusercontent.com/f34c4191c203854412cf767e3011286c22177b23/68747470733a2f2f6c68352e67677068742e636f6d2f7836747035465830484a7155494c57725f63614245393065756852785349553635794d42706e6c456231766a6e69627333435a496f6470743977547a594f5f61477464323d68393030"
},
{
"name": "in_state_ut_grid3",
"desc": "Grid of Indian States and Union Territories",
"contrib": "https://github.com/aeschuma",
"ref_img": "https://user-images.githubusercontent.com/29943634/80574618-7a9e8c00-8a02-11ea-8387-1056410cb54b.png"
},
{
"name": "th_provinces_grid1",
"desc": "Grid of Provinces of Thailand",
"contrib": "https://github.com/PaulApivat",
"ref_img": "https://camo.githubusercontent.com/d91bd6c6a2f88e1039e5c4c07e1faf9e7034a77e/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f632f63352f546861696c616e645f70726f76696e6365735f656e2e7376672f3132303070782d546861696c616e645f70726f76696e6365735f656e2e7376672e706e67"
},
{
"name": "th_bangkok_districts_grid1",
"desc": "Grid of Districts of Bangkok, Thailand",
"contrib": "https://github.com/PaulApivat",
"ref_img": "https://camo.githubusercontent.com/d2af0063c81f360e85703d3e6d291a3be79db99d/68747470733a2f2f6d6170732d62616e676b6f6b2e636f6d2f696d672f302f62616e676b6f6b2d64697374726963742d6d61702e6a7067"
},
{
"name": "ca_us_prov_state_grid1",
"desc": "Grid of Provinces and States of Canada and US",
"contrib": "https://github.com/ahcyip",
"ref_img": "https://camo.githubusercontent.com/3d1bf4ae0c0284f84e563c0d77afd4e546b62f12/68747470733a2f2f692e70696e696d672e636f6d2f6f726967696e616c732f33342f63342f35312f33346334353166316234396362336436313231373933353935646564323337342e6a7067"
},
{
"name": "sy_governorates_grid1",
"desc": "Grid of ADM-1 units (governorates) for Syria",
"contrib": "https://github.com/jschon637",
"ref_img": "https://user-images.githubusercontent.com/65607801/88221810-ff302d80-cc32-11ea-9cab-4db23937e2db.jpg"
},
{
"name": "ro_counties_grid1",
"desc": "Grid of counties (județe) of Romania",
"contrib": "https://github.com/bogdanantonescu",
"ref_img": "https://camo.githubusercontent.com/106d90f3bab93d7e6d54275e458f49dbd1d31798/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f382f38642f526f6d616e69616e5f6c6963656e73655f706c6174655f636f6465732e706e672f3130323470782d526f6d616e69616e5f6c6963656e73655f706c6174655f636f6465732e706e67"
},
{
"name": "us_va_health_districs_grid1",
"desc": "Grid of Commonwealth of Virginia's Health Districts",
"contrib": "https://github.com/osesusan",
"ref_img": "https://camo.githubusercontent.com/179f158ebbdc70433a88909fbed72e20273f5d43/68747470733a2f2f692e696d6775722e636f6d2f6c70594e51524f2e706e67"
},
{
"name": "us_state_without_DC_canada_prov_grid1",
"desc": "US States without DC with 10 Canadian Provinces",
"contrib": "https://github.com/opus1993",
"ref_img": "https://camo.githubusercontent.com/4f22d68c8a9401de652188a50c80f9850da1511f/68747470733a2f2f692e696d6775722e636f6d2f793461677170392e706e67"
},
{
"name": "ir_provinces_grid1",
"desc": "Provinces of Iran",
"contrib": "https://github.com/mcnakhaee",
"ref_img": "https://camo.githubusercontent.com/1ad9a8fee35be4b02ff2987d7c25940de1377ed9/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f642f64332f4d61705f6f665f4972616e5f776974685f70726f76696e63655f6e616d65735f616e645f6e65696768626f72696e675f6c616e642e7376672f36303070782d4d61705f6f665f4972616e5f776974685f70726f76696e63655f6e616d65735f616e645f6e65696768626f72696e675f6c616e642e7376672e706e67"
},
{
"name": "co_departments_grid1",
"desc": "Departments of Colombia",
"contrib": "https://github.com/mikafui2020",
"ref_img": "https://camo.githubusercontent.com/82796981a71e6d4a7650c68dc5021f926be9f964/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f362f36372f4465706172746d656e74735f6f665f636f6c6f6d6269612e7376672f34303070782d4465706172746d656e74735f6f665f636f6c6f6d6269612e7376672e706e67"
},
{
"name": "ir_tehran_districts_grid1",
"desc": "Grid for 22 districts in Tehran, Iran",
"contrib": "https://github.com/mcnakhaee",
"ref_img": "https://camo.githubusercontent.com/dbc0042773fc8f30c3047c08281add65eb9a593f/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f612f61362f41646d696e6973747261746976655f6d61705f6f665f54656872616e2e7376672f34383070782d41646d696e6973747261746976655f6d61705f6f665f54656872616e2e7376672e706e67"
},
{
"name": "ro_counties_grid2",
"desc": "Grid of Romanian Counties",
"contrib": "https://github.com/alexfg",
"ref_img": "https://camo.githubusercontent.com/737dce313fd9203c65b8f4d94576af849ee01c6f/687474703a2f2f74726176656c7366696e646572732e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031372f30352f726f6d616e69612d6d61702d776974682d636f756e746965732d5f312e676966"
},
{
"name": "gb_sct_council_areas_grid1",
"desc": "Council Areas of Scotland",
"contrib": "https://github.com/AndrewAiton",
"ref_img": "https://camo.githubusercontent.com/6037dfe2fdd1d8174a2a72d23c0ce7c070156a3a/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f382f38642f53636f746c616e645f41646d696e6973747261746976655f4d61705f323030392e706e672f38303070782d53636f746c616e645f41646d696e6973747261746976655f4d61705f323030392e706e67"
},
{
"name": "mw_districts_grid1",
"desc": "Grid of 27 districts of Malawi (all districts other than Likoma, which is an island)",
"contrib": "https://github.com/taylorokonek",
"ref_img": "https://camo.githubusercontent.com/b7b9267130118c944dc7bc0adaa744a0d5d856a2/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f612f61662f4d572d4469737472696374732e7376672f32363070782d4d572d4469737472696374732e7376672e706e67"
},
{
"name": "dk_cph_grid1",
"desc": "Grid of the 10 districts of Copenhagen, Denmark",
"contrib": "https://github.com/Straubinger",
"ref_img": "https://camo.githubusercontent.com/944b8e1eb01ad8757051b205ac543cf46ef26fef/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f362f36322f4469737472696374735f6f665f436f70656e686167656e5f757262616e5f617265612e706e67"
},
{
"name": "us_nv_counties_grid1",
"desc": "Counties of State of Nevada, United States",
"contrib": "https://github.com/schmidtDETR",
"ref_img": "https://camo.githubusercontent.com/503fec0fe4d256b3cb59453dea72656b44b4903b/687474703a2f2f6772616e742e6e762e676f762f75706c6f61646564496d616765732f6772616e746e76676f762f436f6e74656e742f4772616e745f5265736f75726365732f436f6d70726568656e736976655f45636f6e6f6d69635f446576656c6f706d656e745f537472617465676965735f2843454453292f6e65766164612d636f756e74792d6d61702e676966"
},
{
"name": "ie_counties_grid2",
"desc": "Counties of Ireland",
"contrib": "https://github.com/cbhurley",
"ref_img": "https://camo.githubusercontent.com/33b7553d410b17f6b3ebf2de8b9e248aa2c374a5/687474703a2f2f6f6e746865776f726c646d61702e636f6d2f6972656c616e642f636f756e746965732d6d61702d6f662d6972656c616e642d6d61782e6a7067"
},
{
"name": "bo_departments_grid1",
"desc": "Grid of Departamental Political Division of Bolivia",
"contrib": "https://github.com/tartagalensis",
"ref_img": "https://user-images.githubusercontent.com/46819023/96675402-318c1c80-1341-11eb-9ab7-29ab0f6139a8.png"
},
{
"name": "ie_counties_grid3.csv",
"desc": "Grid of 32 Counties of Ireland with Tipperary as one county",
"contrib": "https://github.com/superboreen",
"ref_img": "https://camo.githubusercontent.com/c0b3ed34cab8492965a9cf3493af7ef253ed0d7e/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f70686f746f732e67656e692e636f6d2f7031332f64662f63392f30642f34642f353334343438336265623633333562642f6b6971373877756a5f6f726967696e616c2e6a7067"
},
{
"name": "co_departments_grid2",
"desc": "Grid of Departments of Colombia with municipal DANE codes",
"contrib": "https://github.com/sfanchi",
"ref_img": "https://camo.githubusercontent.com/11a2308a938d782342659b44aaec0874d631d9b8/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f382f38312f436f6c6f6d6269612532435f61646d696e6973747261746976655f6469766973696f6e735f2d5f64655f2d5f636f6c6f7265642e7376672f35323470782d436f6c6f6d6269612532435f61646d696e6973747261746976655f6469766973696f6e735f2d5f64655f2d5f636f6c6f7265642e7376672e706e67"
},
{
"name": "americas_countries_grid1",