Commit dea107ab369aec57b0a4f17f76dc4962d9c4dce9

Authored by Eduardo Eloy
1 parent d85fc173
Exists in master

to switch

MODFIRE-Prototype/divisions.py
@@ -53,8 +53,8 @@ ax.set_facecolor('lightgray') @@ -53,8 +53,8 @@ ax.set_facecolor('lightgray')
53 53
54 54
55 55
56 -plt.plot([-25000, -25010], [165000, 165010], lw=15, c='royalblue', label='NorthWest')  
57 -plt.plot([-25000, -25010], [165000, 165010], lw=15, c='lime', label='NorthEast') 56 +plt.plot([-25000, -25010], [165000, 165010], lw=15, c='royalblue', label='Paredes')
  57 +plt.plot([-25000, -25010], [165000, 165010], lw=15, c='lime', label='Penafiel')
58 plt.plot([-25000, -25010], [165000, 165010], lw=15, c='fuchsia', label='PaivaWest') 58 plt.plot([-25000, -25010], [165000, 165010], lw=15, c='fuchsia', label='PaivaWest')
59 plt.plot([-25000, -25010], [165000, 165010], lw=15, c='yellow', label='PaivaIslands') 59 plt.plot([-25000, -25010], [165000, 165010], lw=15, c='yellow', label='PaivaIslands')
60 plt.plot([-25000, -25010], [165000, 165010], lw=15, c='red', label='PaivaEast') 60 plt.plot([-25000, -25010], [165000, 165010], lw=15, c='red', label='PaivaEast')
@@ -65,7 +65,7 @@ plt.legend() @@ -65,7 +65,7 @@ plt.legend()
65 toPaint = [1] 65 toPaint = [1]
66 66
67 67
68 -file = open('subregions/i_fulleast') 68 +file = open('subregions/penafielUGs')
69 for line in file: 69 for line in file:
70 xx = [] 70 xx = []
71 yy = [] 71 yy = []
@@ -74,7 +74,7 @@ for line in file: @@ -74,7 +74,7 @@ for line in file:
74 yy.append(v[1]) 74 yy.append(v[1])
75 plt.fill(xx, yy, facecolor='lime', edgecolor='black', linewidth=1) 75 plt.fill(xx, yy, facecolor='lime', edgecolor='black', linewidth=1)
76 76
77 -file = open('subregions/i_fullwest') 77 +file = open('subregions/paredesUGs')
78 for line in file: 78 for line in file:
79 xx = [] 79 xx = []
80 yy = [] 80 yy = []
MODFIRE-Prototype/subregions/penafielUGs 0 → 100644
@@ -0,0 +1,527 @@ @@ -0,0 +1,527 @@
  1 +1
  2 +2
  3 +6
  4 +8
  5 +9
  6 +10
  7 +11
  8 +12
  9 +13
  10 +14
  11 +15
  12 +25
  13 +27
  14 +28
  15 +30
  16 +31
  17 +32
  18 +33
  19 +35
  20 +37
  21 +38
  22 +42
  23 +43
  24 +45
  25 +48
  26 +49
  27 +50
  28 +51
  29 +52
  30 +53
  31 +54
  32 +55
  33 +56
  34 +57
  35 +58
  36 +60
  37 +61
  38 +62
  39 +67
  40 +68
  41 +69
  42 +70
  43 +71
  44 +72
  45 +73
  46 +74
  47 +77
  48 +78
  49 +79
  50 +80
  51 +81
  52 +83
  53 +84
  54 +85
  55 +86
  56 +87
  57 +88
  58 +89
  59 +94
  60 +96
  61 +107
  62 +111
  63 +112
  64 +113
  65 +114
  66 +115
  67 +116
  68 +117
  69 +118
  70 +119
  71 +120
  72 +121
  73 +122
  74 +124
  75 +125
  76 +126
  77 +127
  78 +128
  79 +129
  80 +130
  81 +131
  82 +132
  83 +133
  84 +134
  85 +140
  86 +141
  87 +142
  88 +143
  89 +145
  90 +146
  91 +147
  92 +149
  93 +150
  94 +154
  95 +155
  96 +156
  97 +157
  98 +158
  99 +159
  100 +160
  101 +161
  102 +162
  103 +165
  104 +166
  105 +167
  106 +168
  107 +169
  108 +170
  109 +171
  110 +175
  111 +176
  112 +179
  113 +182
  114 +183
  115 +185
  116 +186
  117 +188
  118 +189
  119 +190
  120 +191
  121 +192
  122 +193
  123 +198
  124 +199
  125 +200
  126 +201
  127 +202
  128 +203
  129 +204
  130 +206
  131 +207
  132 +208
  133 +209
  134 +211
  135 +212
  136 +213
  137 +214
  138 +215
  139 +217
  140 +220
  141 +221
  142 +222
  143 +223
  144 +233
  145 +238
  146 +239
  147 +240
  148 +242
  149 +243
  150 +244
  151 +249
  152 +252
  153 +253
  154 +254
  155 +264
  156 +265
  157 +273
  158 +279
  159 +280
  160 +281
  161 +282
  162 +284
  163 +285
  164 +286
  165 +287
  166 +288
  167 +289
  168 +290
  169 +291
  170 +292
  171 +293
  172 +294
  173 +295
  174 +296
  175 +298
  176 +299
  177 +300
  178 +302
  179 +303
  180 +304
  181 +305
  182 +306
  183 +308
  184 +310
  185 +312
  186 +313
  187 +314
  188 +315
  189 +316
  190 +317
  191 +318
  192 +319
  193 +320
  194 +321
  195 +322
  196 +323
  197 +324
  198 +325
  199 +326
  200 +327
  201 +328
  202 +330
  203 +331
  204 +332
  205 +333
  206 +334
  207 +335
  208 +336
  209 +337
  210 +338
  211 +339
  212 +340
  213 +341
  214 +342
  215 +343
  216 +344
  217 +345
  218 +346
  219 +350
  220 +351
  221 +352
  222 +354
  223 +355
  224 +356
  225 +357
  226 +358
  227 +359
  228 +360
  229 +361
  230 +366
  231 +382
  232 +383
  233 +388
  234 +389
  235 +390
  236 +393
  237 +394
  238 +395
  239 +396
  240 +397
  241 +398
  242 +399
  243 +400
  244 +401
  245 +402
  246 +403
  247 +404
  248 +405
  249 +406
  250 +407
  251 +411
  252 +412
  253 +413
  254 +416
  255 +417
  256 +418
  257 +419
  258 +420
  259 +421
  260 +422
  261 +423
  262 +424
  263 +426
  264 +431
  265 +432
  266 +434
  267 +435
  268 +436
  269 +437
  270 +438
  271 +439
  272 +441
  273 +442
  274 +443
  275 +444
  276 +446
  277 +447
  278 +448
  279 +449
  280 +450
  281 +451
  282 +452
  283 +454
  284 +455
  285 +456
  286 +457
  287 +462
  288 +463
  289 +466
  290 +467
  291 +468
  292 +469
  293 +471
  294 +472
  295 +473
  296 +475
  297 +476
  298 +477
  299 +478
  300 +479
  301 +480
  302 +481
  303 +482
  304 +485
  305 +486
  306 +487
  307 +488
  308 +490
  309 +491
  310 +492
  311 +493
  312 +494
  313 +495
  314 +496
  315 +497
  316 +498
  317 +499
  318 +500
  319 +506
  320 +507
  321 +508
  322 +509
  323 +510
  324 +511
  325 +514
  326 +515
  327 +516
  328 +517
  329 +518
  330 +519
  331 +520
  332 +521
  333 +523
  334 +524
  335 +525
  336 +526
  337 +527
  338 +528
  339 +529
  340 +530
  341 +531
  342 +532
  343 +534
  344 +536
  345 +537
  346 +538
  347 +539
  348 +540
  349 +541
  350 +542
  351 +543
  352 +545
  353 +546
  354 +547
  355 +549
  356 +550
  357 +551
  358 +552
  359 +553
  360 +554
  361 +561
  362 +562
  363 +563
  364 +564
  365 +565
  366 +566
  367 +568
  368 +569
  369 +570
  370 +571
  371 +572
  372 +574
  373 +575
  374 +576
  375 +577
  376 +578
  377 +579
  378 +580
  379 +581
  380 +582
  381 +583
  382 +584
  383 +585
  384 +593
  385 +594
  386 +595
  387 +596
  388 +597
  389 +598
  390 +599
  391 +600
  392 +601
  393 +602
  394 +603
  395 +604
  396 +607
  397 +608
  398 +609
  399 +610
  400 +613
  401 +620
  402 +621
  403 +622
  404 +623
  405 +624
  406 +625
  407 +626
  408 +627
  409 +628
  410 +629
  411 +630
  412 +631
  413 +632
  414 +633
  415 +634
  416 +635
  417 +636
  418 +637
  419 +638
  420 +639
  421 +640
  422 +641
  423 +643
  424 +644
  425 +645
  426 +647
  427 +648
  428 +649
  429 +650
  430 +651
  431 +652
  432 +653
  433 +654
  434 +656
  435 +657
  436 +659
  437 +660
  438 +661
  439 +662
  440 +663
  441 +664
  442 +665
  443 +666
  444 +667
  445 +668
  446 +669
  447 +670
  448 +671
  449 +672
  450 +673
  451 +674
  452 +676
  453 +677
  454 +680
  455 +681
  456 +683
  457 +684
  458 +685
  459 +686
  460 +687
  461 +688
  462 +689
  463 +690
  464 +691
  465 +692
  466 +693
  467 +694
  468 +695
  469 +696
  470 +697
  471 +698
  472 +699
  473 +700
  474 +701
  475 +702
  476 +703
  477 +704
  478 +705
  479 +706
  480 +707
  481 +708
  482 +709
  483 +710
  484 +711
  485 +715
  486 +716
  487 +717
  488 +718
  489 +719
  490 +720
  491 +721
  492 +722
  493 +723
  494 +724
  495 +725
  496 +726
  497 +728
  498 +729
  499 +732
  500 +733
  501 +734
  502 +738
  503 +739
  504 +740
  505 +741
  506 +744
  507 +745
  508 +750
  509 +751
  510 +752
  511 +753
  512 +758
  513 +759
  514 +760
  515 +761
  516 +765
  517 +766
  518 +768
  519 +769
  520 +770
  521 +778
  522 +779
  523 +780
  524 +781
  525 +783
  526 +784
  527 +785