-
Notifications
You must be signed in to change notification settings - Fork 0
/
Country_mod.f90
executable file
·1612 lines (1543 loc) · 59.7 KB
/
Country_mod.f90
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
! <Country_mod.f90 - A component of the EMEP MSC-W Chemical transport Model>
!*****************************************************************************!
module Country_mod
! Sets country index numbers (IC_xx), code, icode, time-zones, and names
!
! "icode" should match the number used in the emission files
!
! Regions external Atlantic (70) and external Russia (71) were outside
! the original EMEP grid (132x111 cells), thus they were defined separately,
! as total emissions for Russia and the Atlantic often are reported for
! the old EMEP domain only and then gridded according to this total.
!
! Area 71 became part of the extended EMEP grid from 2008, thus should
! be included for Russia. Area 70 is not included in the extended grid either.
!
! Special areas have been defined for other projects than EMEP
! outside the EMEP domain (see comments in the module).
!
! timefac_index under cc as defined below assigns timefactors to
! country/region/emission_type. As an example defining Bavaria as
! a separate region with timefactors as in Germany.
! timefac_index_hourly can be defined if the hourly timefactors are defined separately
implicit none
public :: init_Country ! sets country details
public :: self_test ! just to test numbering
integer, parameter, public :: MAXNLAND = 601 ! max number of countries
integer, public :: NLAND ! actaua number of countries defined
logical, parameter, private :: T = .true. ! shorthand
logical, parameter, private :: F = .false. ! shorthand
! Some regions
!QUer AL, HR, CS.....
character(len=10), public, parameter :: &
EU15(15) = (/ "AT", "BE", "DK", "FI", "FR", "DE", "GR", "IE", "IT", &
"NL", "PT", "ES", "SE", "GB", "LU" /),&
EU27(27) = (/ EU15,"HU", "PL", "CY", "CZ", "EE", "LT", "LV", "MT", &
"SK", "SI", "BG", "RO" /),&
EU28(28) = (/ EU27, "HR" /),&
EEA(31) = (/ EU28, "NO", "IS", "LI" /) ,&
! Countries fully inside MACC2 emission area, excluding EEA.
! 1 2 3 4 5 6 7 8 9 10
XMACC2(10) = (/ "CH", "MC", "TR", "MD", "GE", "AM", "AZ", "BA", "UA", "BY" /),& ! all?
EUMACC2(41) = (/ EEA, XMACC2 /)
!/ to be set in init_Country:
type, public :: cc
character(len=10) :: code ! up to 10 letter land code
character(len=4) :: gains ! 4 letter GAINS code
integer :: icode ! integer number for land code (corresponds to
! country code number in emission files)
logical :: is_sea ! T for sea area, F otherwise
integer :: timefac_index ! Country code to use for timefactors
integer :: timefac_index_hourly ! Country code to use for hourly timefactors
integer :: timezone ! timezone, deviation from UTC time
character(len=60) :: name ! name of country/region
end type cc
type(cc), public, save, dimension(MAXNLAND) :: Country
integer, public :: IC_AL ! Albania
integer, public :: IC_AT ! Austria
integer, public :: IC_BE ! Belgium
integer, public :: IC_BG ! Bulgaria
integer, public :: IC_FCS ! Former Czechoslovakia
integer, public :: IC_DK ! Denmark
integer, public :: IC_GL ! Greenland
integer, public :: IC_FI ! Finland
integer, public :: IC_FR ! France
integer, public :: IC_GDR ! Former East Germany
integer, public :: IC_FRG ! Former West Germany
integer, public :: IC_GR ! Greece
integer, public :: IC_HU ! Hungary
integer, public :: IC_IS ! Iceland
integer, public :: IC_IE ! Ireland
integer, public :: IC_IT ! Italy
integer, public :: IC_LU ! Luxembourg
integer, public :: IC_NL ! Netherlands
integer, public :: IC_NO ! Norway
integer, public :: IC_PL ! Poland
integer, public :: IC_PT ! Portugal
integer, public :: IC_RO ! Romania
integer, public :: IC_ES ! Spain
integer, public :: IC_SE ! Sweden
integer, public :: IC_CH ! Switzerland
integer, public :: IC_TR ! Turkey
integer, public :: IC_SU ! Former USSE
integer, public :: IC_GB ! United Kingdom
integer, public :: IC_VUL ! Vulcanoes
integer, public :: IC_REM ! Remaining Areas
integer, public :: IC_BAS ! The Baltic Sea
integer, public :: IC_NOS ! The North Sea
integer, public :: IC_ATL ! NE Atlantic Ocean (within EMEP domain)
integer, public :: IC_MED ! The Mediterranean Sea
integer, public :: IC_BLS ! The Black Sea
integer, public :: IC_NAT ! Natural marine sources
integer, public :: IC_RUO ! Kola/Karelia
integer, public :: IC_RUP ! St.Petersburg/Novgorod-Pskov
integer, public :: IC_RUA ! Kaliningrad
integer, public :: IC_BY ! Belarus
integer, public :: IC_UA ! Ukraine
integer, public :: IC_MD ! Moldova,
integer, public :: IC_RUR ! Rest
integer, public :: IC_EE ! Estonia
integer, public :: IC_LV ! Latvia
integer, public :: IC_LT ! Lithuania
integer, public :: IC_CZ ! Czech
integer, public :: IC_SK ! Slovakia
integer, public :: IC_SI ! Slovenia
integer, public :: IC_HR ! Croatia
integer, public :: IC_BA ! Bosnia
integer, public :: IC_CS ! Serbia and Montenegro
integer, public :: IC_MK ! Macedonia
integer, public :: IC_KZ ! Kazakstan
integer, public :: IC_GE ! Georgia
integer, public :: IC_CY ! Cyprus
integer, public :: IC_AM ! Armenia
integer, public :: IC_MT ! Malta
integer, public :: IC_ASI ! Other Asian Areas
integer, public :: IC_LI ! Lihtenstein
integer, public :: IC_DE ! Germany
integer, public :: IC_RU ! Russian
integer, public :: IC_MC ! Monaco
integer, public :: IC_NOA ! North Africa
integer, public :: IC_EU ! European Union
integer, public :: IC_US ! USA
integer, public :: IC_CA ! Canada
integer, public :: IC_DUMMY ! Generic or undefined country
integer, public :: IC_KG ! Kyrgyzstan
integer, public :: IC_AZ ! Azerbaijan
integer, public :: IC_ATX ! ATL outside EMEP domain
integer, public :: IC_RUX ! RU outside old EMEP domain
integer, public :: IC_RS ! Serbia
integer, public :: IC_ME ! Montenegro
!Extra cc for rest CityZen
integer, public :: IC_RAA ! Rest of Africa and Asia
integer, public :: IC_SEA ! Ship
! Biomass-burnung (Wild-fires etc.) allocated to a country-number
! Allows easy use of emissplits to allocate speciation
integer, public :: IC_BB
! Extra from IIASA/ECLIPSE/ECLAIRE global
integer, public :: IC_AFGH ! Afghanistan
integer, public :: IC_ARGE ! Argentina
integer, public :: IC_AUTR ! Australia
integer, public :: IC_BANG ! Bangladesh
integer, public :: IC_BHUT ! Bhutan
integer, public :: IC_BRAZ ! Brazil
integer, public :: IC_BRUN ! Brunei
integer, public :: IC_CAMB ! Cambodia
integer, public :: IC_CHIL ! Chile
integer, public :: IC_CHIN ! China
integer, public :: IC_FSUA ! Former_USSR_(Asia)_Tajikistan_Turkmenistan_Uzbekistan
integer, public :: IC_INDI ! India
integer, public :: IC_INDO ! Indonesia
integer, public :: IC_ISRA ! Israel
integer, public :: IC_JAPA ! Japan
integer, public :: IC_LAOS ! Laos
integer, public :: IC_MALA ! Malaysia
integer, public :: IC_MEXI ! Mexico
integer, public :: IC_MIDE ! Middle_East
integer, public :: IC_MONG ! Mongolia
integer, public :: IC_MYAN ! Myanmar
integer, public :: IC_NEPA ! Nepal
integer, public :: IC_NZEL ! New_Zealand
integer, public :: IC_NAFR ! North_Africa_Libya_Tunisia_Algeria_Sudan_Morocco
integer, public :: IC_KORN ! North_Korea
integer, public :: IC_OAFR ! Other_Africa
integer, public :: IC_OLAM ! Other_Latin_America
integer, public :: IC_PAKI ! Pakistan
integer, public :: IC_PHIL ! Philippines
integer, public :: IC_SING ! Singapore
integer, public :: IC_SAFR ! South_Africa
integer, public :: IC_KORS ! South_Korea
integer, public :: IC_SRIL ! Sri_Lanka
integer, public :: IC_TAIW ! Taiwan
integer, public :: IC_THAI ! Thailand
integer, public :: IC_VIET ! Vietnam
integer, public :: IC_EGYP ! Egypt
integer, public :: IC_HANO ! Hanoi
integer, public :: IC_NVIE ! North Vietnam
integer, public :: IC_SVIE ! South Vietnam
integer, public :: IC_BOLV ! Bolivia
integer, public :: IC_CARB ! Caribbean
integer, public :: IC_CEAM ! Central America
integer, public :: IC_COLO ! Colombia
integer, public :: IC_ECUA ! Ecuador
integer, public :: IC_PARA ! Paraguay
integer, public :: IC_PERU ! Peru
integer, public :: IC_URUG ! Uruguay
integer, public :: IC_VENE ! Venezuela
integer, public :: IC_IRAN ! Iran
integer, public :: IC_SAAR ! Saudi Arabia
integer, public :: IC_KOSO ! Kosovo
integer, public :: IC_OCEC ! Oceania
! extra subdivisions of ship emissions into shipping categories:
! Baltic Sea (30)
integer, public :: IC_BA2
integer, public :: IC_BA3
integer, public :: IC_BA4
integer, public :: IC_BA5
integer, public :: IC_BA6
integer, public :: IC_BA7
integer, public :: IC_BA8
integer, public :: IC_BA9
! North Sea (31)
integer, public :: IC_NS2
integer, public :: IC_NS3
integer, public :: IC_NS4
integer, public :: IC_NS5
integer, public :: IC_NS6
integer, public :: IC_NS7
integer, public :: IC_NS8
integer, public :: IC_NS9
! NE Atlantic (32)
integer, public :: IC_AT2
integer, public :: IC_AT3
integer, public :: IC_AT4
integer, public :: IC_AT5
integer, public :: IC_AT6
integer, public :: IC_AT7
integer, public :: IC_AT8
integer, public :: IC_AT9
! Mediterranean (33)
integer, public :: IC_ME2
integer, public :: IC_ME3
integer, public :: IC_ME4
integer, public :: IC_ME5
integer, public :: IC_ME6
integer, public :: IC_ME7
integer, public :: IC_ME8
integer, public :: IC_ME9
! Black Sea (34)
integer, public :: IC_BL2
integer, public :: IC_BL3
integer, public :: IC_BL4
integer, public :: IC_BL5
integer, public :: IC_BL6
integer, public :: IC_BL7
integer, public :: IC_BL8
integer, public :: IC_BL9
! CAMS-TNO sea regions (added Nov 2018)
integer, public :: IC_GRS !Greenland Sea
integer, public :: IC_BAR !Barents Sea
integer, public :: IC_ENC !English Channel
integer, public :: IC_NWS !Norwegian Sea
integer, public :: IC_IRC !Irish Sea
integer, public :: IC_PSG !Persian Gulf
integer, public :: IC_KAR !Kara Sea
! Ship emissions when sea areas are not divided
! Eg. TNO emissions (added on 25th March 2009)
integer, public :: IC_INTSHIPS
! Aircraft, used in AirEmis
integer, public :: IC_AIRCRAFT
! New codes defined for the extended EMEP area in 2008
integer, public :: IC_RFE! Rest of extended Russian Federation
! (in the extended EMEP domain)
integer, public :: IC_KZE! Rest of Kazakhstan
! (in the extended EMEP domain)
integer, public :: IC_UZ ! Uzbekistan (in the orig. EMEP domain)
integer, public :: IC_TM ! Turkmenistan (in the orig. EMEP domain)
integer, public :: IC_UZE! Rest of Uzbekistan
! (in the extended EMEP domain)
integer, public :: IC_TME! Rest of Turkmenistan
! (in the extended EMEP domain)
integer, public :: IC_CAS! Caspian Sea (in the orig. EMEP domain)
integer, public :: IC_TJ ! Tajikistan (in the extended EMEP domain)
integer, public :: IC_ARL! Aral Lake (in the orig. EMEP domain)
integer, public :: IC_ARE! Rest of Aral Lake
! (in the extended EMEP domain)
integer, public :: IC_ASM! Modified remaining Asian areas
! (in the original EMEP domain)
integer, public :: IC_ASE! Remaining extended Asian areas
! (in the extended EMEP domain)
integer, public :: IC_AOE! Arctic Ocean (in the extended EMEP domain)
! New external areas (outside the 132x159 grid), these are normally not used
! a) Domains: x = 160-170 y = 1-132 and x = -16-0 y = 123-170
integer, public :: IC_RFX ! Extended EMEP-external part of
! Russian Federation
integer, public :: IC_ASX ! Extended EMEP-ext. part of Asia
integer, public :: IC_PAX ! Extended EMEP-ext. part of Pacific Ocean
integer, public :: IC_AOX ! Extended EMEP-ext. part of Arctic Ocean
! Divided countries put together
integer, public :: IC_RUE ! Russian Federation in the extended EMEP domain (RU+RFE+RUX, 36, 37, 38, 42, 71, 74)
integer, public :: IC_KZT ! Kazakhstan (KZ+KZE, 53, 75)
integer, public :: IC_UZT ! Uzbekistan (UZ+UZE, 76,78)
integer, public :: IC_TMT ! Turkmenistan (TM+TME, 77,79)
!b) Domain x = -16-132 y = -11-0
integer, public :: IC_NAX ! EMEP-external part of North Africa
! New code introduced for the NMR-NH3 project, not used in other projects
! NH3Emis x=44-75, y=35-66
integer, public :: IC_NMR ! EMEP NMR-NH3 temporal emissions
! 199 not country-specific land based emissions -found in PANHAM/MEIC
integer, public :: IC_LANDX ! 199 not country-specific land based emissions
! HTAP2 regions
integer, public :: IC_HTNATL
integer, public :: IC_HTUSCA
integer, public :: IC_HTEUTU
integer, public :: IC_HTSASI
integer, public :: IC_HTEASI
integer, public :: IC_HTSEAS
integer, public :: IC_HTAUST
integer, public :: IC_HTNAFR
integer, public :: IC_HTRAFR
integer, public :: IC_HTMIDE
integer, public :: IC_HTCEAM
integer, public :: IC_HTSOAM
integer, public :: IC_HTRUBU
integer, public :: IC_HTCASI
integer, public :: IC_HTPOLA
integer, public :: IC_HTSPOL
integer, public :: IC_HT1018
integer, public :: IC_HT1019
integer, public :: IC_HT1020
integer, public :: IC_HT1000
! UNEP SR and new GAINS regions
integer, public :: IC_BANG_DHAK
integer, public :: IC_BANG_REST
integer, public :: IC_CHIN_ANHU
integer, public :: IC_CHIN_BEIJ
integer, public :: IC_CHIN_CHON
integer, public :: IC_CHIN_FUJI
integer, public :: IC_CHIN_GANS
integer, public :: IC_CHIN_GUAD
integer, public :: IC_CHIN_GUAX
integer, public :: IC_CHIN_GUIZ
integer, public :: IC_CHIN_HAIN
integer, public :: IC_CHIN_HEBE
integer, public :: IC_CHIN_HEIL
integer, public :: IC_CHIN_HENA
integer, public :: IC_CHIN_HONG
integer, public :: IC_CHIN_HUBE
integer, public :: IC_CHIN_HUNA
integer, public :: IC_CHIN_JILI
integer, public :: IC_CHIN_JINU
integer, public :: IC_CHIN_JINX
integer, public :: IC_CHIN_LIAO
integer, public :: IC_CHIN_NEMO
integer, public :: IC_CHIN_NINX
integer, public :: IC_CHIN_QING
integer, public :: IC_CHIN_SHAA
integer, public :: IC_CHIN_SHAN
integer, public :: IC_CHIN_SHND
integer, public :: IC_CHIN_SHNX
integer, public :: IC_CHIN_SICH
integer, public :: IC_CHIN_TIAN
integer, public :: IC_CHIN_TIBE
integer, public :: IC_CHIN_XING
integer, public :: IC_CHIN_YUNN
integer, public :: IC_CHIN_ZHEJ
integer, public :: IC_INDI_ANPR
integer, public :: IC_INDI_ASSA
integer, public :: IC_INDI_BENG
integer, public :: IC_INDI_BIHA
integer, public :: IC_INDI_CHHA
integer, public :: IC_INDI_DELH
integer, public :: IC_INDI_EHIM
integer, public :: IC_INDI_GOA
integer, public :: IC_INDI_GUJA
integer, public :: IC_INDI_HARY
integer, public :: IC_INDI_HIPR
integer, public :: IC_INDI_JHAR
integer, public :: IC_INDI_KARN
integer, public :: IC_INDI_KERA
integer, public :: IC_INDI_MAHA
integer, public :: IC_INDI_MAPR
integer, public :: IC_INDI_ORIS
integer, public :: IC_INDI_PUNJ
integer, public :: IC_INDI_RAJA
integer, public :: IC_INDI_TAMI
integer, public :: IC_INDI_UTAN
integer, public :: IC_INDI_UTPR
integer, public :: IC_INDI_WHIM
integer, public :: IC_INDO_JAKA
integer, public :: IC_INDO_JAVA
integer, public :: IC_INDO_REST
integer, public :: IC_INDO_SUMA
integer, public :: IC_JAPA_CHSH
integer, public :: IC_JAPA_CHUB
integer, public :: IC_JAPA_HOTO
integer, public :: IC_JAPA_KANT
integer, public :: IC_JAPA_KINK
integer, public :: IC_JAPA_KYOK
integer, public :: IC_KORS_NORT
integer, public :: IC_KORS_PUSA
integer, public :: IC_KORS_SEOI
integer, public :: IC_KORS_SOUT
integer, public :: IC_MALA_KUAL
integer, public :: IC_MALA_PENM
integer, public :: IC_MALA_SASA
integer, public :: IC_PAKI_KARA
integer, public :: IC_PAKI_NMWP
integer, public :: IC_PAKI_PUNJ
integer, public :: IC_PAKI_SIND
integer, public :: IC_PHIL_BVMI
integer, public :: IC_PHIL_LUZO
integer, public :: IC_PHIL_MANI
integer, public :: IC_RUSS_ASIA
integer, public :: IC_RUSS_EURO
integer, public :: IC_THAI_BANG
integer, public :: IC_THAI_CVAL
integer, public :: IC_THAI_NEPL
integer, public :: IC_THAI_NHIG
integer, public :: IC_THAI_SPEN
integer, public :: IC_IRAN_REST
integer, public :: IC_IRAN_TEHR
integer, public :: IC_VIET_BNIH
integer, public :: IC_VIET_HYEN
integer, public :: IC_VIET_OCAR
integer, public :: IC_VIET_ONOR
integer, public :: IC_USAM_ALAS
integer, public :: IC_USAM_REST
integer, public :: IC_EGYP_CAIR
integer, public :: IC_EGYP_REST
integer, public :: IC_NAFR_WHOL
integer, public :: IC_NIGE_LAGO
integer, public :: IC_NIGE_OLAG
integer, public :: IC_NIGE_REST
integer, public :: IC_SAFR_JOBG
integer, public :: IC_SAFR_REST
integer, public :: IC_RSAF_WHOL
integer, public :: IC_EAFR_WHOL
integer, public :: IC_WAFR_WHOL
integer, public :: IC_KENY_WHOL
integer, public :: IC_TANZ_WHOL
integer, public :: IC_NIGE_WHOL
integer, public :: IC_BERLIN
integer, public :: IC_BRUSSEL
integer, public :: IC_COPENHAGEN
integer, public :: IC_MADRID
integer, public :: IC_HELSINKI
integer, public :: IC_PARIS
integer, public :: IC_ATHENS
integer, public :: IC_BUDAPEST
integer, public :: IC_DUBLIN
integer, public :: IC_MILAN
integer, public :: IC_OSLO
integer, public :: IC_AMSTERDAM
integer, public :: IC_WARSAW
integer, public :: IC_LISBON
integer, public :: IC_LONDON
integer, public :: IC_STOCKHOLM
integer, public :: IC_GENEVA
contains
subroutine init_Country()
! Set the country details. Note that time-zones for some areas are either
! difficult (e.g. Russia should be 3 to 12) or not relevant (e.g. sea areas,
! volcanoes).
integer :: iland,ix
! First define all countries as undefined
do iland=1,NLAND
Country(iland) = cc( "N/A" ,'-', iland ,F, 17 , 17 , -100 , "Not_defined " )
end do
!The value of IC_XX is the index in Country array. Can in principle change between two runs or versions.
!The emission_code is the country code used in the emission file.
!The timefac_code is the code/index refering to the timefactor
!-------------- code emission_icode sea timefac_code timefac_code_hourly timezone Name ------------!
ix=0
ix=ix+1
IC_AL=ix
Country( IC_AL ) = cc( "AL ",'ALBA', 1 ,F, 1, 1, 1 , "Albania " )
ix=ix+1
IC_AT=ix
Country( IC_AT ) = cc( "AT ",'AUST', 2 ,F, 2, 2, 1 , "Austria " )
ix=ix+1
IC_BE=ix
Country( IC_BE ) = cc( "BE ",'BELG', 3 ,F, 3, 3, 1 , "Belgium " )
ix=ix+1
IC_BG=ix
Country( IC_BG ) = cc( "BG ",'BULG', 4 ,F, 4, 4, 2 , "Bulgaria " )
ix=ix+1
IC_FCS=ix
Country( IC_FCS ) = cc( "FCS ",'-', 5 ,F, 5, 5, 1 , "Former Czechoslovakia " )
ix=ix+1
IC_DK=ix
Country( IC_DK ) = cc( "DK ",'DENM', 6 ,F, 6, 6, 1 , "Denmark " )
ix=ix+1
IC_GL=ix
Country( IC_GL ) = cc( "GL ",'-' , 601 ,F, 6, 6, -2 , "Greenland " )
ix=ix+1
IC_FI=ix
Country( IC_FI ) = cc( "FI ",'FINL', 7 ,F, 7, 7, 2 , "Finland " )
ix=ix+1
IC_FR=ix
Country( IC_FR ) = cc( "FR ",'FRAN', 8 ,F, 8, 8, 1 , "France " )
ix=ix+1
IC_GDR=ix
Country( IC_GDR) = cc( "GDR",'-', 9 ,F, 9, 9, 1 , "Former East Germany " )
ix=ix+1
IC_FRG=ix
Country( IC_FRG) = cc( "FRG",'-', 10 ,F, 10, 10, 1 , "Former Fed. Rep. of Germany " )
ix=ix+1
IC_GR=ix
Country( IC_GR ) = cc( "GR ",'GREE', 11 ,F, 11, 11, 2 , "Greece " )
ix=ix+1
IC_HU=ix
Country( IC_HU ) = cc( "HU ",'HUNG', 12 ,F, 12, 12, 1 , "Hungary " )
ix=ix+1
IC_IS=ix
Country( IC_IS ) = cc( "IS ",'ICEL', 13 ,F, 13, 13, 0 , "Iceland " )
ix=ix+1
IC_IE=ix
Country( IC_IE ) = cc( "IE ",'IREL', 14 ,F, 14, 14, 0 , "Ireland " )
ix=ix+1
IC_IT=ix
Country( IC_IT ) = cc( "IT ",'ITAL', 15 ,F, 15, 15, 1 , "Italy " )
ix=ix+1
IC_LU=ix
Country( IC_LU ) = cc( "LU ",'LUXE', 16 ,F, 16, 16, 1 , "Luxembourg " )
ix=ix+1
IC_NL=ix
Country( IC_NL ) = cc( "NL ",'NETH', 17 ,F, 17, 17, 1 , "Netherlands " )
ix=ix+1
IC_NO=ix
Country( IC_NO ) = cc( "NO ",'NORW', 18 ,F, 18, 18, 1 , "Norway " )
ix=ix+1
IC_PL=ix
Country( IC_PL ) = cc( "PL ",'POLA', 19 ,F, 19, 19, 1 , "Poland " )
ix=ix+1
IC_PT=ix
Country( IC_PT ) = cc( "PT ",'PORT', 20 ,F, 20, 20, 0 , "Portugal " )
ix=ix+1
IC_RO=ix
Country( IC_RO ) = cc( "RO ",'ROMA', 21 ,F, 21, 21, 2 , "Romania " )
ix=ix+1
IC_ES =ix
Country( IC_ES ) = cc( "ES ",'SPAI', 22 ,F, 22, 22, 1 , "Spain " )
ix=ix+1
IC_SE=ix
Country( IC_SE ) = cc( "SE ",'SWED', 23 ,F, 23, 23, 1 , "Sweden " )
ix=ix+1
IC_CH=ix
Country( IC_CH ) = cc( "CH ",'SWIT', 24 ,F, 24, 24, 1 , "Switzerland " )
ix=ix+1
IC_TR=ix
Country( IC_TR ) = cc( "TR ",'TURK', 25 ,F, 25, 25, 2 , "Turkey " )
ix=ix+1
IC_SU=ix
Country( IC_SU ) = cc( "SU ",'-', 26 ,F, 26, 26, -100 , "Former USSR " )
ix=ix+1
IC_GB=ix
Country( IC_GB ) = cc( "GB " ,'UNKI', 27 ,F, 27, 27, 0 , "United Kingdom " )
ix=ix+1
IC_VUL=ix
Country( IC_VUL) = cc( "VUL" ,'-', 28 ,F, 28, 28, 1 , "Volcanoes " )
ix=ix+1
IC_REM=ix
Country( IC_REM) = cc( "REM" ,'-', 29 ,F, 29, 29, 1 , "Remaining land areas " )
!NB:
!Fix needed for following sea-areas (BAS,'-',NOS,ATL,MED,BLS)in GEA runs done in Emissions_mod
!if ( GRID == "HIRHAM" .and. IIFULLDOM == 182 ) then ! Special fix for HIRHAM/GEA
!if ( SEAFIX_GEA_NEEDED ) then ! Special fix for HIRHAM/GEA
ix=ix+1
IC_BAS=ix
Country( IC_BAS) = cc( "BAS" ,'-', 30 ,T, 30, 30, 1 , "The Baltic Sea " )
ix=ix+1
IC_NOS=ix
Country( IC_NOS) = cc( "NOS" ,'-', 31 ,T, 31, 31, 1 , "The North Sea " )
ix=ix+1
IC_ATL=ix
Country( IC_ATL) = cc( "ATL" ,'-', 32 ,T, 32, 32, -100 , "Remaining NE Atlantic Ocean " )
ix=ix+1
IC_MED=ix
Country( IC_MED) = cc( "MED" ,'-', 33 ,T, 33, 33, 1 , "The Mediterranean Sea " )
ix=ix+1
IC_BLS=ix
Country( IC_BLS) = cc( "BLS" ,'-', 34 ,T, 34, 34, 2 , "The Black Sea " )
!end if ! HIRHAM/GEA fix
ix=ix+1
IC_NAT=ix
Country( IC_NAT) = cc( "NAT",'-', 35 ,F, 35, 35, -100 , "Natural marine sources " )
ix=ix+1
IC_RUO=ix
Country( IC_RUO) = cc( "RUO",'KOLK', 36 ,F, 36, 36, 4 , "Kola/Karelia " )
ix=ix+1
IC_RUP=ix
! Not sure about GAINS code:
Country( IC_RUP) = cc( "RUP",'RUSS', 37 ,F, 37, 37, 4 , "St.Petersburg/Novgorod-Pskov " )
ix=ix+1
IC_RUA=ix
Country( IC_RUA) = cc( "RUA",'KALI', 38 ,F, 38, 38, 3 , "Kaliningrad " )
ix=ix+1
IC_BY=ix
Country( IC_BY ) = cc( "BY ",'BELA', 39 ,F, 39, 39, 3 , "Belarus " )
ix=ix+1
IC_UA=ix
Country( IC_UA ) = cc( "UA ",'UKRA', 40 ,F, 40, 40, 2 , "Ukraine " )
ix=ix+1
IC_MD=ix
Country( IC_MD ) = cc( "MD ",'MOLD', 41 ,F, 41, 41, 2 , "Moldova, Republic of " )
ix=ix+1
IC_RUR=ix
!Could also be REMR for GAINS
Country( IC_RUR) = cc( "RUR",'RUSS', 42 ,F, 42, 42, 4 , "Rest of Russia " )
ix=ix+1
IC_EE=ix
Country( IC_EE ) = cc( "EE ",'ESTO', 43 ,F, 43, 43, 2 , "Estonia " )
ix=ix+1
IC_LV=ix
Country( IC_LV ) = cc( "LV ",'LATV', 44 ,F, 44, 44, 2 , "Latvia " )
ix=ix+1
IC_LT=ix
Country( IC_LT ) = cc( "LT ",'LITH', 45 ,F, 45, 45, 2 , "Lithuania " )
ix=ix+1
IC_CZ=ix
Country( IC_CZ ) = cc( "CZ ",'CZRE', 46 ,F, 46, 46, 1 , "Czech " )
ix=ix+1
IC_SK=ix
Country( IC_SK ) = cc( "SK ",'SKRE', 47 ,F, 47, 47, 1 , "Slovakia " )
ix=ix+1
IC_SI=ix
Country( IC_SI ) = cc( "SI ",'SLOV', 48 ,F, 48, 48, 1 , "Slovenia " )
ix=ix+1
IC_HR=ix
Country( IC_HR ) = cc( "HR ",'CROA', 49 ,F, 49, 49, 1 , "Croatia " )
ix=ix+1
IC_BA=ix
Country( IC_BA ) = cc( "BA ",'BOHE', 50 ,F, 50, 50, 1 , "Bosnia and Herzegovina " )
ix=ix+1
IC_CS=ix
Country( IC_CS ) = cc( "CS ",'SEMO', 51 ,F, 51, 51, 1 , "Serbia and Montenegro " )
ix=ix+1
IC_MK=ix
Country( IC_MK ) = cc( "MK ",'MACE', 52 ,F, 52, 52, 1 , "Macedonia, The F.Yugo.Rep. of " )
ix=ix+1
IC_KZ=ix
Country( IC_KZ ) = cc( "KZ ",'KAZA', 53 ,F, 53, 53, -100 , "Kazakstan " )
ix=ix+1
IC_GE=ix
Country( IC_GE ) = cc( "GE ",'GEOR', 54 ,F, 54, 54, 4 , "Georgia " )
ix=ix+1
IC_CY=ix
Country( IC_CY ) = cc( "CY ",'CYPR', 55 ,F, 55, 55, 2 , "Cyprus " )
ix=ix+1
IC_AM =ix
Country( IC_AM ) = cc( "AM ",'ARME', 56 ,F, 56, 56, 4 , "Armenia " )
ix=ix+1
IC_MT=ix
Country( IC_MT ) = cc( "MT ",'MALT', 57 ,F, 57, 57, 1 , "Malta " )
ix=ix+1
IC_ASI=ix
Country( IC_ASI) = cc( "ASI" ,'-', 58 ,F, 58, 58, -100 , "Other Asian areas " )
ix=ix+1
IC_LI=ix
Country( IC_LI ) = cc( "LI " ,'-', 59 ,F, 59, 59, 1 , "Lichtenstein " )
ix=ix+1
IC_DE=ix
Country( IC_DE ) = cc( "DE ",'GERM', 60 ,F, 60, 60, 1 , "Germany " )
ix=ix+1
IC_RU=ix
Country( IC_RU ) = cc( "RU " ,'RUSS', 61 ,F, 61, 61, -100 , "Russian Federation " )
ix=ix+1
IC_MC=ix
Country( IC_MC ) = cc( "MC " ,'-', 62 ,F, 62, 62, 1 , "Monaco " )
ix=ix+1
IC_NOA=ix
Country( IC_NOA) = cc( "NOA" ,'-', 63 ,F, 63, 63, 1 , "North Africa " )
ix=ix+1
IC_EU=ix
Country( IC_EU ) = cc( "EU " ,'-', 64 ,F, 64, 64, 1 , "European Community " )
ix=ix+1
IC_US=ix
Country( IC_US ) = cc( "US " ,'-', 65 ,F, 65,65, -100 , "USA " )
ix=ix+1
IC_CA=ix
Country( IC_CA ) = cc( "CA " ,'-', 66 ,F, 66, 66, -100 , "Canada " )
ix=ix+1
IC_DUMMY=ix
Country( IC_DUMMY ) &
= cc( "N/A" ,'-', 67 ,F, 67, 67, -100 , "Not_defined " )
ix=ix+1
IC_KG=ix
Country( IC_KG ) = cc( "KG " ,'-', 68 ,F, 68, 68, 6 , "Kyrgyzstan " )
ix=ix+1
IC_AZ=ix
Country( IC_AZ ) = cc( "AZ " ,'-', 69 ,F, 69, 69, 4 , "Azerbaijan " )
ix=ix+1
IC_ATX=ix
Country( IC_ATX) = cc( "ATX" ,'-', 70 ,T, 32, 32, -100 , "Atlantic outside. EMEP " )
ix=ix+1
IC_RUX=ix
Country( IC_RUX) = cc( "RUX" ,'-', 71 ,F, 42, 42, -100 , "Russian Fed. outside emep " )
ix=ix+1
IC_RS=ix
Country( IC_RS) = cc( "RS " ,'-', 72 ,F, 72, 72, 1 , "Serbia " )
ix=ix+1
IC_ME=ix
Country( IC_ME) = cc( "ME " ,'-', 73 ,F, 73, 73, 1 , "Montenegro " )
! Extended EMEP domain
ix=ix+1
IC_RFE=ix
Country( IC_RFE ) = cc( "RFE" ,'-', 74 ,F, 74, 74, -100 , "Rest of extended Russian Federation (in the extended EMEP domain)" )
ix=ix+1
IC_KZE=ix
Country( IC_KZE ) = cc( "KZE" ,'-', 75 ,F, 75, 75, -100 , "Rest of Kazakhstan (in the extended EMEP domain) " )
ix=ix+1
IC_UZ=ix
Country( IC_UZ ) = cc( "UZ" ,'-', 76 ,F, 76, 76, -100 , "Uzbekistan (in the original EMEP domain) " )
ix=ix+1
IC_TM=ix
Country( IC_TM ) = cc( "TM" ,'-', 77 ,F, 77, 77, -100 , "Turkmenistan (in the original EMEP domain) " )
ix=ix+1
IC_UZE=ix
Country( IC_UZE ) = cc( "UZE" ,'-', 78 ,F, 78, 78, -100 , "Rest of Uzbekistan (in the extended EMEP domain) " )
ix=ix+1
IC_TME=ix
Country( IC_TME ) = cc( "TME" ,'-', 79 ,F, 79, 79, -100 , "Rest of Turkmenistan (in the extended EMEP domain) " )
ix=ix+1
IC_CAS=ix
Country( IC_CAS ) = cc( "CAS" ,'-', 80 ,F, 80, 80, -100 , "Caspian Sea (in the original EMEP domain) " )
ix=ix+1
IC_TJ=ix
Country( IC_TJ ) = cc( "TJ" ,'-', 81 ,F, 81, 81, -100 ,"Tajikistan (in the extended EMEP domain) " )
ix=ix+1
IC_ARL=ix
Country( IC_ARL ) = cc( "ARL" ,'-', 82 ,F, 82, 82, -100 , "Aral Lake (in the original EMEP domain) " )
ix=ix+1
IC_ARE=ix
Country( IC_ARE ) = cc( "ARE" ,'-', 83 ,F, 83, 83, -100 , "Rest of Aral Lake (in the extended EMEP domain) " )
ix=ix+1
IC_ASM=ix
Country( IC_ASM ) = cc( "ASM" ,'-', 84 ,F, 84, 84, -100 , "Modified remaining Asian areas (in the original EMEP domain) " )
ix=ix+1
IC_ASE=ix
Country( IC_ASE ) = cc( "ASE" ,'-', 85 ,F, 85, 85, -100 , "Remaining extended Asian areas (in the extended EMEP domain) " )
ix=ix+1
IC_AOE=ix
Country( IC_AOE ) = cc( "AOE" ,'-', 86 ,F, 86, 86, -100 , "Arctic Ocean (in the extended EMEP domain) " )
! New external areas (outside the 132x159 grid),'-', these are normally not used
! a) Domains: x = 160-170 y = 1-132 and x = -16-0 y = 123-170
ix=ix+1
IC_RFX=ix
Country( IC_RFX ) = cc( "RFX" ,'-', 87 ,F, 87, 87, -100 ,"Extended EMEP-external part of Russian Federation" )
ix=ix+1
IC_ASX=ix
Country( IC_ASX ) = cc( "ASX" ,'-', 88 ,F, 88, 88, -100 ,"Extended EMEP-external part of Asia " )
ix=ix+1
IC_PAX=ix
Country( IC_PAX ) = cc( "PAX" ,'-', 89 ,F, 89, 89, -100 ,"Extended EMEP-external part of Pacific Ocean " )
ix=ix+1
IC_AOX=ix
Country( IC_AOX ) = cc( "AOX" ,'-', 90 ,F, 90, 90, 9 ,"Extended EMEP-external part of Arctic Ocean " )
! b) Domain x = -16-132 y = -11-0 (never used)
ix=ix+1
IC_NAX=ix
Country( IC_NAX ) = cc( "NAX" ,'-', 91 ,F, 91, 91, -100 ,"EMEP-external part of North Africa " )
ix=ix+1
IC_KZT=ix
Country( IC_KZT ) = cc( "KZT" ,'-', 92 ,F, 92, 92, -100 , "Kazakhstan (all)" )
ix=ix+1
IC_RUE=ix
Country( IC_RUE ) = cc( "RUE" ,'-', 93 ,F, 93, 93, -100 , "Russian Federeation (all)" )
ix=ix+1
IC_UZT=ix
Country( IC_UZT ) = cc( "UZT" ,'-', 94 ,F, 94, 94, -100 , "Uzbekistan (all)" )
ix=ix+1
IC_TMT=ix
Country( IC_TMT ) = cc( "TMT" ,'-', 95 ,F, 95, 95, -100 , "Turkmenistan (all)" )
! NH3Emis new land code for NMR-NH3 project
ix=ix+1
IC_NMR=ix
Country( IC_NMR ) = cc( "NMR" ,'-', 98 ,F, 98, 98, 1 , "Area with temporal NMR-NH3 emissions " )
! Biomass burning
ix=ix+1
IC_BB=ix
Country( IC_BB) = cc( "BB ",'-', 101,F, 101, 101, -100 , "Biomass burning (wild) " )
!Extra cc for rest CityZen
ix=ix+1
IC_RAA=ix
Country( IC_RAA ) = cc( "RAA" ,'-', 170 ,F, 170, 170, -100, "Rest of Africa and Asia" )
ix=ix+1
IC_SEA=ix
Country( IC_SEA ) = cc( "SEA" ,'-', 171 ,F, 171, 171,-100, "Ships" )
! Extra from IIASA/ECLIPSE/ECLAIRE global
!
ix=ix+1
IC_LANDX=ix
Country( IC_LANDX) = cc( "LANDX ",'-', 199,F, 199, 199, -100 , "not country-specific land based emissions" )
ix=ix+1
IC_AFGH=ix
Country(IC_AFGH) = cc( "AFGH",'-', 201, F,201, 201, -100, "Afghanistan")
ix=ix+1
IC_ARGE=ix
Country(IC_ARGE) = cc( "ARGE",'-', 202, F,202, 202, -100, "Argentina")
ix=ix+1
IC_AUTR=ix
Country(IC_AUTR) = cc( "AUTR",'-', 203, F,203, 203, -100, "Australia")
ix=ix+1
IC_BANG=ix
Country(IC_BANG) = cc( "BANG",'-', 204, F,204, 204, -100, "Bangladesh")
ix=ix+1
IC_BHUT=ix
Country(IC_BHUT) = cc( "BHUT",'-', 205, F,205, 205, -100, "Bhutan")
ix=ix+1
IC_BRAZ=ix
Country(IC_BRAZ) = cc( "BRAZ",'-', 206, F,206, 206, -100, "Brazil")
ix=ix+1
IC_BRUN=ix
Country(IC_BRUN) = cc( "BRUN",'-', 207, F,207, 207, -100, "Brunei")
ix=ix+1
IC_CAMB=ix
Country(IC_CAMB) = cc( "CAMB",'-', 208, F,208, 208,-100, "Cambodia")
ix=ix+1
IC_CHIL=ix
Country(IC_CHIL) = cc( "CHIL",'-', 209, F,209, 209, -100, "Chile")
ix=ix+1
IC_CHIN=ix
Country(IC_CHIN) = cc( "CHIN",'-', 210, F,210, 210, -100, "China")
ix=ix+1
IC_FSUA=ix
Country(IC_FSUA) = cc( "FSUA",'-', 211, F,211, 211, -100, "Former_USSR_(Asia)_Tajikistan_Turkmenistan_Uzbekistan")
ix=ix+1
IC_INDI=ix
Country(IC_INDI) = cc( "INDI",'-', 212, F,212, 212, -100, "India")
ix=ix+1
IC_INDO=ix
Country(IC_INDO) = cc( "INDO",'-', 213, F,213, 213, -100, "Indonesia")
ix=ix+1
IC_ISRA=ix
Country(IC_ISRA) = cc( "ISRA",'-', 214, F,214, 214, -100, "Israel")
ix=ix+1
IC_JAPA=ix
Country(IC_JAPA) = cc( "JAPA",'-', 215, F,215, 215, -100, "Japan")
ix=ix+1
IC_LAOS=ix
Country(IC_LAOS) = cc( "LAOS",'-', 216, F,216, 216,-100, "Laos")
ix=ix+1
IC_MALA=ix
Country(IC_MALA) = cc( "MALA",'-', 217, F,217, 217, -100, "Malaysia")
ix=ix+1
IC_MEXI=ix
Country(IC_MEXI) = cc( "MEXI",'-', 218, F,218, 218, -100, "Mexico")
ix=ix+1
IC_MIDE=ix
Country(IC_MIDE) = cc( "MIDE",'-', 219, F,219, 219, -100, "Middle_East")
ix=ix+1
IC_MONG=ix
Country(IC_MONG) = cc( "MONG",'-', 220, F,220, 220, -100, "Mongolia")
ix=ix+1
IC_MYAN=ix
Country(IC_MYAN) = cc( "MYAN",'-', 221, F,221, 221, -100, "Myanmar")
ix=ix+1
IC_NEPA=ix
Country(IC_NEPA) = cc( "NEPA",'-', 222, F,222, 222, -100, "Nepal")
ix=ix+1
IC_NZEL=ix
Country(IC_NZEL) = cc( "NZEL",'-', 223, F,223, 223, -100, "New_Zealand")
ix=ix+1
IC_NAFR=ix
Country(IC_NAFR) = cc( "NAFR",'-', 224, F,224, 224, -100, "North_Africa_Libya_Tunisia_Algeria_Sudan_Morocco")
ix=ix+1
IC_KORN=ix
Country(IC_KORN) = cc( "KORN",'-', 225, F,225, 225, -100, "North_Korea")
ix=ix+1
IC_OAFR=ix
Country(IC_OAFR) = cc( "OAFR",'-', 226, F,226,226, -100, "Other_Africa")
ix=ix+1
IC_OLAM=ix
Country(IC_OLAM) = cc( "OLAM",'-', 227, F,227, 227, -100, "Other_Latin_America")
ix=ix+1
IC_PAKI=ix
Country(IC_PAKI) = cc( "PAKI",'-', 228, F,228, 228, -100, "Pakistan")
ix=ix+1
IC_PHIL=ix
Country(IC_PHIL) = cc( "PHIL",'-', 229, F,229,229, -100, "Philippines")
ix=ix+1
IC_SING=ix
Country(IC_SING) = cc( "SING",'-', 230, F,230,230, -100, "Singapore")
ix=ix+1
IC_SAFR=ix
Country(IC_SAFR) = cc( "SAFR",'-', 231, F,231,231, -100, "South_Africa")
ix=ix+1
IC_KORS=ix
Country(IC_KORS) = cc( "KORS",'-', 232, F,232, 232, -100, "South_Korea")
ix=ix+1
IC_SRIL=ix
Country(IC_SRIL) = cc( "SRIL",'-', 233, F,233, 233, -100, "Sri_Lanka")
ix=ix+1
IC_TAIW=ix
Country(IC_TAIW) = cc( "TAIW",'-', 234, F,234,234, -100, "Taiwan")
ix=ix+1
IC_THAI=ix
Country(IC_THAI) = cc( "THAI",'-', 235, F,235, 235, -100, "Thailand")
ix=ix+1
IC_VIET=ix
Country(IC_VIET) = cc( "VIET",'-', 236, F,236, 236, -100, "Vietnam")
ix=ix+1
IC_EGYP=ix
Country(IC_EGYP) = cc( "EGYP",'-', 237, F,237, 237, -100, "Egypt")
ix=ix+1
IC_HANO=ix
Country(IC_HANO) = cc( "Hanoi",'-', 238, F, 238,238, -100, "Hanoi")
ix=ix+1
IC_NVIE=ix
Country(IC_NVIE) = cc( "NVIET",'-', 239, F, 239,239, -100, "North Vietnam")
ix=ix+1
IC_SVIE=ix
Country(IC_SVIE) = cc( "SVIET",'-', 240, F, 240,240, -100, "South Vietnam")
ix=ix+1
IC_BOLV=ix
Country(IC_BOLV) = cc( "BOLV",'-', 241, F, 241,241, -100, "Bolivia")
ix=ix+1
IC_CARB=ix
Country(IC_CARB) = cc( "CARB",'-', 242, F, 242,242, -100, "Caribbean")
ix=ix+1
IC_CEAM=ix
Country(IC_CEAM) = cc( "CEAM",'-', 243, F, 243,243, -100, "Central America")
ix=ix+1
IC_COLO=ix
Country(IC_COLO) = cc( "COLO",'-', 244, F, 244, 244, -100, "Colombia")
ix=ix+1
IC_ECUA=ix
Country(IC_ECUA) = cc( "ECUA",'-', 245, F, 245,245, -100, "Ecuador")
ix=ix+1
IC_PARA=ix
Country(IC_PARA) = cc( "PARA",'-', 246, F, 246,246, -100, "Paraguay")
ix=ix+1
IC_PERU=ix
Country(IC_PERU) = cc( "PERU",'-', 247, F, 247, 247, -100, "Peru")
ix=ix+1
IC_URUG=ix
Country(IC_URUG) = cc( "URUG",'-', 248, F, 248, 248, -100, "Uruguay")
ix=ix+1
IC_VENE=ix
Country(IC_VENE) = cc( "VENE",'-', 249, F, 249,249, -100, " Venezuela")
ix=ix+1
IC_IRAN=ix
Country(IC_IRAN) = cc( "IRAN",'-', 250, F, 250, 250,-100, "Iran")
ix=ix+1
IC_SAAR=ix
Country(IC_SAAR) = cc( "SAAR",'-', 251, F, 251,251, -100, "Saudi Arabia")
ix=ix+1
IC_INTSHIPS=ix
Country(IC_INTSHIPS) = cc( "INTSHIPS" ,'-',350 ,T, 350,350, -100 , "International ships" )
ix=ix+1
IC_AIRCRAFT=ix
Country(IC_AIRCRAFT) = cc( "AIRCRAFT" ,'-',900 ,T, 900,900, -100 , "International Flights" )
ix=ix+1
IC_KOSO=ix
Country(IC_KOSO) = cc( "KOSO",'KOSO', 373, F, 373, 373, -100, "Kosovo")
ix=ix+1
IC_OCEC=ix
Country(IC_OCEC) = cc( "OCEC",'-', 393, F, 393,393, -100, "Oceania")
! Sea areas split according to innside/outside 12 nautical mile zone,'-',
! ferries/cargo ships,'-', registred inside/outside EU
ix=ix+1
IC_BA2=ix
Country( IC_BA2 ) = cc( "BA2" ,'-',302 ,T, 30, 30, 1 , "Baltic EU cargo outs.12 " )
ix=ix+1
IC_BA3=ix
Country( IC_BA3 ) = cc( "BA3" ,'-',303 ,T, 30, 30, 1 , "Baltic ROW cargo outs. 12 " )
ix=ix+1
IC_BA4=ix
Country( IC_BA4 ) = cc( "BA4" ,'-',304 ,T, 30, 30, 1 , "Baltic EU cargo ins. 12 " )