Project

General

Profile

« Previous | Next » 

Revision 892efc69

Added by Andreas Kohlbecker almost 14 years ago

merging /branches/cdmlib/SPRINT-Chichorieae1/ to trunk

View differences:

cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/pesi/out/PesiTransformer.java
20 20
import eu.etaxonomy.cdm.model.description.PresenceAbsenceTermBase;
21 21
import eu.etaxonomy.cdm.model.description.PresenceTerm;
22 22
import eu.etaxonomy.cdm.model.location.NamedArea;
23
import eu.etaxonomy.cdm.model.location.TdwgArea;
24
import eu.etaxonomy.cdm.model.name.NameRelationshipType;
23 25
import eu.etaxonomy.cdm.model.name.NameTypeDesignationStatus;
24 26
import eu.etaxonomy.cdm.model.name.NomenclaturalCode;
25 27
import eu.etaxonomy.cdm.model.name.NomenclaturalStatusType;
26 28
import eu.etaxonomy.cdm.model.name.Rank;
29
import eu.etaxonomy.cdm.model.occurrence.Fossil;
27 30
import eu.etaxonomy.cdm.model.reference.ISectionBase;
28 31
import eu.etaxonomy.cdm.model.reference.ReferenceBase;
29 32
import eu.etaxonomy.cdm.model.reference.ReferenceType;
......
230 233
	public static int KINGDOM_PROTOZOA = 5;
231 234
	public static int KINGDOM_BACTERIA = 6;
232 235
	public static int KINGDOM_CHROMISTA = 7;
233
	
234
	public static String STR_KINGDOM_NULL = "NULL";
235
	public static String STR_KINGDOM_ANIMALIA = "Animalia";
236
	public static String STR_KINGDOM_PLANTAE = "Plantae";
237
	public static String STR_KINGDOM_FUNGI = "Fungi";
238
	public static String STR_KINGDOM_PROTOZOA = "Protozoa";
239
	public static String STR_KINGDOM_BACTERIA = "Bacteria";
240
	public static String STR_KINGDOM_CHROMISTA = "Chromista";
241 236

  
242 237
	// Animalia Ranks
243 238
	public static int Animalia_Kingdom = 10;
......
299 294
	public static String Animalia_STR_Variety = "Variety";
300 295
	public static String Animalia_STR_Subvariety = "Subvariety";
301 296
	public static String Animalia_STR_Forma = "Forma";
297
	
298
	// Animalia Rank Abbreviations only for used Ranks
299
	public static String Animalia_Abbrev_Subgenus = "subg.";
300
	public static String Animalia_Abbrev_Species = "sp.";
301
	public static String Animalia_Abbrev_Subspecies = "subsp.";
302
	public static String Animalia_Abbrev_Variety = "var.";
303
	public static String Animalia_Abbrev_Subvariety = "subvar.";
304
	public static String Animalia_Abbrev_Forma = "f.";
302 305

  
303 306
	// Plantae Ranks
304 307
	public static int Plantae_Kingdom = 10;
......
367 370
	public static String Plantae_STR_Taxa_infragen = "Taxa infragen.";
368 371
	public static String Plantae_STR_Taxa_infraspec = "Taxa infraspec.";
369 372
	
373
	// Plantae Rank Abbreviations
374
	public static String Plantae_Abbrev_Kingdom = "reg.";
375
	public static String Plantae_Abbrev_Subkingdom = "subreg.";
376
	public static String Plantae_Abbrev_Division = "div.";
377
	public static String Plantae_Abbrev_Subdivision = "subdiv.";
378
	public static String Plantae_Abbrev_Class = "cl.";
379
	public static String Plantae_Abbrev_Subclass = "subcl.";
380
	public static String Plantae_Abbrev_Order = "ordo";
381
	public static String Plantae_Abbrev_Suborder = "subor.";
382
	public static String Plantae_Abbrev_Family = "fam.";
383
	public static String Plantae_Abbrev_Subfamily = "subfam.";
384
	public static String Plantae_Abbrev_Tribe	= "trib.";
385
	public static String Plantae_Abbrev_Subtribe = "subtrib.";
386
	public static String Plantae_Abbrev_Genus = "gen.";
387
	public static String Plantae_Abbrev_Subgenus = "subg.";
388
	public static String Plantae_Abbrev_Section = "sect.";
389
	public static String Plantae_Abbrev_Subsection = "subsect.";
390
	public static String Plantae_Abbrev_Series = "ser.";
391
	public static String Plantae_Abbrev_Subseries	= "subser.";
392
	public static String Plantae_Abbrev_Aggregate	= "aggr.";
393
	public static String Plantae_Abbrev_Coll_Species = "coll. sp.";
394
	public static String Plantae_Abbrev_Species = "sp.";
395
	public static String Plantae_Abbrev_Subspecies = "subsp.";
396
	public static String Plantae_Abbrev_Proles = "prol.";
397
	public static String Plantae_Abbrev_Race = "race";
398
	public static String Plantae_Abbrev_Convarietas = "convar.";
399
	public static String Plantae_Abbrev_Variety = "var.";
400
	public static String Plantae_Abbrev_Subvariety = "subvar.";
401
	public static String Plantae_Abbrev_Forma	= "f.";
402
	public static String Plantae_Abbrev_Subforma = "subf.";
403
	public static String Plantae_Abbrev_Forma_spec = "f.spec.";
404
	public static String Plantae_Abbrev_Taxa_infragen = "t.infgen.";
405
	public static String Plantae_Abbrev_Taxa_infraspec = "t.infr.";
406
	
370 407
	// Fungi Ranks
371 408
	public static int Fungi_Kingdom = 10;
372 409
	public static int Fungi_Subkingdom = 20;
......
441 478
	public static int Bacteria_Variety = 240;
442 479
	public static int Bacteria_Forma	= 260;
443 480
	
444
	public static String STR_BACTERIA_KINGDOM = "Kingdom";
445
	public static String STR_BACTERIA_SUBKINGDOM = "Subkingdom";
446
	public static String STR_BACTERIA_PHYLUM = "Phylum";
447
	public static String STR_BACTERIA_SUBPHYLUM = "Subphylum";
448
	public static String STR_BACTERIA_SUPERCLASS = "Superclass";
449
	public static String STR_BACTERIA_CLASS = "Class";
450
	public static String STR_BACTERIA_SUBCLASS = "Subclass";
451
	public static String STR_BACTERIA_INFRACLASS = "Infraclass";
452
	public static String STR_BACTERIA_SUPERORDER = "Superorder";
453
	public static String STR_BACTERIA_ORDER = "Order";
454
	public static String STR_BACTERIA_SUBORDER = "Suborder";
455
	public static String STR_BACTERIA_INFRAORDER = "Infraorder";
456
	public static String STR_BACTERIA_SUPERFAMILY = "Superfamily";
457
	public static String STR_BACTERIA_FAMILY = "Family";
458
	public static String STR_BACTERIA_SUBFAMILY = "Subfamily";
459
	public static String STR_BACTERIA_TRIBE = "Tribe";
460
	public static String STR_BACTERIA_SUBTRIBE = "Subtribe";
461
	public static String STR_BACTERIA_GENUS = "Genus";
462
	public static String STR_BACTERIA_SUBGENUS = "Subgenus";
463
	public static String STR_BACTERIA_SPECIES = "Species";
464
	public static String STR_BACTERIA_SUBSPECIES = "Subspecies";
465
	public static String STR_BACTERIA_VARIETY = "Variety";
466
	public static String STR_BACTERIA_FORMA = "Forma";
467
	
468 481
	// Chromista Ranks
469 482
	public static int Chromista_Kingdom = 10;
470 483
	public static int Chromista_Subkingdom = 20;
......
726 739
	public static int FOSSILSTATUS_FOSSIL_ONLY = 2;
727 740
	public static int FOSSILSTATUS_RECENT_FOSSIL = 3;
728 741
	
729
	public static String STR_FOSSILSTATUS_RECENT_ONLY = "recent only";
730
	public static String STR_FOSSILSTATUS_FOSSIL_ONLY = "fossil only";
731
	public static String STR_FOSSILSTATUS_RECENT_FOSSIL = "recent + fossil";
742
	public static String STR_RECENT_ONLY = "recent only";
743
	public static String STR_FOSSIL_ONLY = "fossil only";
744
	public static String STR_RECENT_FOSSIL = "recent + fossil";
732 745

  
733 746
	// SourceUse
734 747
	public static int ORIGINAL_DESCRIPTION = 1;
......
749 762
	public static String STR_STATUS_SOURCE = "status source";
750 763
	public static String STR_NOMENCLATURAL_REFERENCE = "nomenclatural reference";
751 764

  
752
	// Erms Area
753
	public static int ERMS_EUROPEAN_MARINE_WATERS = 7788;
754
	public static int ERMS_MEDITERRANEAN_SEA = 7789;
755
	public static int ERMS_WHITE_SEA = 7791;
756
	public static int ERMS_NORTH_SEA = 7792;
757
	public static int ERMS_BALTIC_SEA = 7793;
758
	public static int ERMS_BLACK_SEA = 7794;
759
	public static int ERMS_BARENTS_SEA = 7795;
760
	public static int ERMS_CASPIAN_SEA = 7796;
761
	public static int ERMS_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE = 7799;
762
	public static int ERMS_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE = 7802;
763
	public static int ERMS_FRENCH_EXCLUSIVE_ECONOMIC_ZONE = 7805;
764
	public static int ERMS_ENGLISH_CHANNEL = 7818;
765
	public static int ERMS_ADRIATIC_SEA = 7821;
766
	public static int ERMS_BISCAY_BAY = 7831;
767
	public static int ERMS_DUTCH_EXCLUSIVE_ECONOMIC_ZONE = 7839;
768
	public static int ERMS_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE = 7862;
769
	public static int ERMS_SPANISH_EXCLUSIVE_ECONOMIC_ZONE = 7869;
770
	public static int ERMS_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE = 7902;
771
	public static int ERMS_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE = 7939;
772
	public static int ERMS_TIRRENO_SEA = 7946;
773
	public static int ERMS_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE = 7964;
774
	public static int ERMS_IRISH_EXCLUSIVE_ECONOMIC_ZONE = 7974;
775
	public static int ERMS_IRISH_SEA = 7975;
776
	public static int ERMS_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE = 7978;
777
	public static int ERMS_NORWEGIAN_SEA = 7980;
778
	public static int ERMS_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE = 8027;
779
	public static int ERMS_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE = 8050;
780
	public static int ERMS_SKAGERRAK = 8072;
781
	public static int ERMS_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE = 8143;
782
	public static int ERMS_WADDEN_SEA = 8155;
783
	public static int ERMS_BELT_SEA = 8203;
784
	public static int ERMS_MARMARA_SEA = 8205;
785
	public static int ERMS_SEA_OF_AZOV = 8837;
786
	public static int ERMS_AEGEAN_SEA = 9146;
787
	public static int ERMS_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE = 9178;
788
	public static int ERMS_SOUTH_BALTIC_PROPER = 9903;
789
	public static int ERMS_BALTIC_PROPER = 9904;
790
	public static int ERMS_NORTH_BALTIC_PROPER = 9905;
791
	public static int ERMS_ARCHIPELAGO_SEA = 9908;
792
	public static int ERMS_BOTHNIAN_SEA = 9909;
793
	public static int ERMS_GERMAN_EXCLUSIVE_ECONOMIC_ZONE = 10515;
794
	public static int ERMS_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE = 10528;
795
	public static int ERMS_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE = 10529;
796
	public static int ERMS_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE = 10564;
797
	public static int ERMS_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE = 10574;
798
	public static int ERMS_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART = 10659;
799
	public static int ERMS_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE = 10708;
800
	public static int ERMS_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE = 10778;
801
	public static int ERMS_BALEAR_SEA = 10779;
802
	public static int ERMS_TURKISH_EXCLUSIVE_ECONOMIC_ZONE = 10782;
803
	public static int ERMS_DANISH_EXCLUSIVE_ECONOMIC_ZONE = 11039;
765
	// Area
766
	public static int AREA_EAST_AEGEAN_ISLANDS = 1;
767
	public static int AREA_GREEK_EAST_AEGEAN_ISLANDS = 2;
768
	public static int AREA_TURKISH_EAST_AEGEAN_ISLANDS = 3;
769
	public static int AREA_ALBANIA = 4;
770
	public static int AREA_AUSTRIA_WITH_LIECHTENSTEIN = 5;
771
	public static int AREA_AUSTRIA = 6;
772
	public static int AREA_LIECHTENSTEIN = 7;
773
	public static int AREA_AZORES = 8;
774
	public static int AREA_CORVO = 9;
775
	public static int AREA_FAIAL = 10;
776
	public static int AREA_GRACIOSA = 11;
777
	public static int AREA_SAO_JORGE = 12;
778
	public static int AREA_FLORES = 13;
779
	public static int AREA_SAO_MIGUEL = 14;
780
	public static int AREA_PICO = 15;
781
	public static int AREA_SANTA_MARIA = 16;
782
	public static int AREA_TERCEIRA = 17;
783
	public static int AREA_BELGIUM_WITH_LUXEMBOURG = 18;
784
	public static int AREA_BELGIUM = 19;
785
	public static int AREA_LUXEMBOURG = 20;
786
	public static int AREA_BOSNIA_HERZEGOVINA = 21;
787
	public static int AREA_BALEARES = 22;
788
	public static int AREA_IBIZA_WITH_FORMENTERA = 23;
789
	public static int AREA_MALLORCA = 24;
790
	public static int AREA_MENORCA = 25;
791
	public static int AREA_GREAT_BRITAIN = 26;
792
	public static int AREA_BALTIC_STATES_ESTONIA_LATVIA_LITHUANIA_AND_KALININGRAD_REGION = 27;
793
	public static int AREA_BULGARIA = 28;
794
	public static int AREA_BELARUS = 29;
795
	public static int AREA_CANARY_ISLANDS = 30;
796
	public static int AREA_GRAN_CANARIA = 31;
797
	public static int AREA_FUERTEVENTURA_WITH_LOBOS = 32;
798
	public static int AREA_GOMERA = 33;
799
	public static int AREA_HIERRO = 34;
800
	public static int AREA_LANZAROTE_WITH_GRACIOSA = 35;
801
	public static int AREA_LA_PALMA = 36;
802
	public static int AREA_TENERIFE = 37;
803
	public static int AREA_MONTENEGRO = 38;
804
	public static int AREA_CORSE = 39;
805
	public static int AREA_CRETE_WITH_KARPATHOS_KASOS_AND_GAVDHOS = 40;
806
	public static int AREA_CZECH_REPUBLIC = 41;
807
	public static int AREA_CROATIA = 42;
808
	public static int AREA_CYPRUS = 43;
809
	public static int AREA_FORMER_CZECHOSLOVAKIA = 44;
810
	public static int AREA_DENMARK_WITH_BORNHOLM = 45;
811
	public static int AREA_ESTONIA = 46;
812
	public static int AREA_FAROE_ISLANDS = 47;
813
	public static int AREA_FINLAND_WITH_AHVENANMAA = 48;
814
	public static int AREA_FRANCE = 49;
815
	public static int AREA_CHANNEL_ISLANDS = 50;
816
	public static int AREA_FRENCH_MAINLAND = 51;
817
	public static int AREA_MONACO = 52;
818
	public static int AREA_GERMANY = 53;
819
	public static int AREA_GREECE_WITH_CYCLADES_AND_MORE_ISLANDS = 54;
820
	public static int AREA_IRELAND = 55;
821
	public static int AREA_REPUBLIC_OF_IRELAND = 56;
822
	public static int AREA_NORTHERN_IRELAND = 57;
823
	public static int AREA_SWITZERLAND = 58;
824
	public static int AREA_NETHERLANDS = 59;
825
	public static int AREA_SPAIN = 60;
826
	public static int AREA_ANDORRA = 61;
827
	public static int AREA_GIBRALTAR = 62;
828
	public static int AREA_KINGDOM_OF_SPAIN = 63;
829
	public static int AREA_HUNGARY = 64;
830
	public static int AREA_ICELAND = 65;
831
	public static int AREA_ITALY = 66;
832
	public static int AREA_ITALIAN_MAINLAND = 67;
833
	public static int AREA_SAN_MARINO = 68;
834
	public static int AREA_FORMER_JUGOSLAVIA = 69;
835
	public static int AREA_LATVIA = 70;
836
	public static int AREA_LITHUANIA = 71;
837
	public static int AREA_PORTUGUESE_MAINLAND = 72;
838
	public static int AREA_MADEIRA_ARCHIPELAGO = 73;
839
	public static int AREA_DESERTAS = 74;
840
	public static int AREA_MADEIRA = 75;
841
	public static int AREA_PORTO_SANTO = 76;
842
	public static int AREA_THE_FORMER_JUGOSLAV_REPUBLIC_OF_MAKEDONIJA = 77;
843
	public static int AREA_MOLDOVA = 78;
844
	public static int AREA_NORWEGIAN_MAINLAND = 79;
845
	public static int AREA_POLAND = 80;
846
	public static int AREA_THE_RUSSIAN_FEDERATION = 81;
847
	public static int AREA_NOVAYA_ZEMLYA_AND_FRANZ_JOSEPH_LAND = 82;
848
	public static int AREA_CENTRAL_EUROPEAN_RUSSIA = 83;
849
	public static int AREA_EASTERN_EUROPEAN_RUSSIA = 84;
850
	public static int AREA_KALININGRAD = 85;
851
	public static int AREA_NORTHERN_EUROPEAN_RUSSIA = 86;
852
	public static int AREA_NORTHWEST_EUROPEAN_RUSSIA = 87;
853
	public static int AREA_SOUTH_EUROPEAN_RUSSIA = 88;
854
	public static int AREA_ROMANIA = 89;
855
	public static int AREA_FORMER_USSR = 90;
856
	public static int AREA_RUSSIA_BALTIC = 91;
857
	public static int AREA_RUSSIA_CENTRAL = 92;
858
	public static int AREA_RUSSIA_SOUTHEAST = 93;
859
	public static int AREA_RUSSIA_NORTHERN = 94;
860
	public static int AREA_RUSSIA_SOUTHWEST = 95;
861
	public static int AREA_SARDEGNA = 96;
862
	public static int AREA_SVALBARD_WITH_BJORNOYA_AND_JAN_MAYEN = 97;
863
	public static int AREA_SELVAGENS_ISLANDS = 98;
864
	public static int AREA_SICILY_WITH_MALTA = 99;
865
	public static int AREA_MALTA = 100;
866
	public static int AREA_SICILY = 101;
867
	public static int AREA_SLOVAKIA = 102;
868
	public static int AREA_SLOVENIA = 103;
869
	public static int AREA_SERBIA_WITH_MONTENEGRO = 104;
870
	public static int AREA_SERBIA_INCLUDING_VOJVODINA_AND_WITH_KOSOVO = 105;
871
	public static int AREA_SWEDEN = 106;
872
	public static int AREA_EUROPEAN_TURKEY = 107;
873
	public static int AREA_UKRAINE_INCLUDING_CRIMEA = 108;
874
	public static int AREA_CRIMEA = 109;
875
	public static int AREA_UKRAINE = 110;
876
	public static int AREA_GREEK_MAINLAND = 111;
877
	public static int AREA_CRETE = 112;
878
	public static int AREA_DODECANESE_ISLANDS = 113;
879
	public static int AREA_CYCLADES_ISLANDS = 114;
880
	public static int AREA_NORTH_AEGEAN_ISLANDS = 115;
881
	public static int AREA_VATICAN_CITY = 116;
882
	public static int AREA_FRANZ_JOSEF_LAND = 117;
883
	public static int AREA_NOVAYA_ZEMLYA = 118;
884
	public static int AREA_AZERBAIJAN_INCLUDING_NAKHICHEVAN = 119;
885
	public static int AREA_AZERBAIJAN = 120;
886
	public static int AREA_NAKHICHEVAN = 121;
887
	public static int AREA_ALGERIA = 122;
888
	public static int AREA_ARMENIA = 123;
889
	public static int AREA_CAUCASUS_REGION = 124;
890
	public static int AREA_EGYPT = 125;
891
	public static int AREA_GEORGIA = 126;
892
	public static int AREA_ISRAEL_JORDAN = 127;
893
	public static int AREA_ISRAEL = 128;
894
	public static int AREA_JORDAN = 129;
895
	public static int AREA_LEBANON = 130;
896
	public static int AREA_LIBYA = 131;
897
	public static int AREA_LEBANON_SYRIA = 132;
898
	public static int AREA_MOROCCO = 133;
899
	public static int AREA_NORTH_CAUCASUS = 134;
900
	public static int AREA_SINAI = 135;
901
	public static int AREA_SYRIA = 136;
902
	public static int AREA_TUNISIA = 137;
903
	public static int AREA_ASIATIC_TURKEY = 138;
904
	public static int AREA_TURKEY = 139;
905
	public static int AREA_NORTHERN_AFRICA = 140;
906
	public static int AREA_AFRO_TROPICAL_REGION = 141;
907
	public static int AREA_AUSTRALIAN_REGION = 142;
908
	public static int AREA_EAST_PALAEARCTIC = 143;
909
	public static int AREA_NEARCTIC_REGION = 144;
910
	public static int AREA_NEOTROPICAL_REGION = 145;
911
	public static int AREA_NEAR_EAST = 146;
912
	public static int AREA_ORIENTAL_REGION = 147;
913
	public static int AREA_EUROPEAN_MARINE_WATERS = 148;
914
	public static int AREA_MEDITERRANEAN_SEA = 149;
915
	public static int AREA_WHITE_SEA = 150;
916
	public static int AREA_NORTH_SEA = 151;
917
	public static int AREA_BALTIC_SEA = 152;
918
	public static int AREA_BLACK_SEA = 153;
919
	public static int AREA_BARENTS_SEA = 154;
920
	public static int AREA_CASPIAN_SEA = 155;
921
	public static int AREA_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE = 156;
922
	public static int AREA_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE = 157;
923
	public static int AREA_FRENCH_EXCLUSIVE_ECONOMIC_ZONE = 158;
924
	public static int AREA_ENGLISH_CHANNEL = 159;
925
	public static int AREA_ADRIATIC_SEA = 160;
926
	public static int AREA_BISCAY_BAY = 161;
927
	public static int AREA_DUTCH_EXCLUSIVE_ECONOMIC_ZONE = 162;
928
	public static int AREA_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE = 163;
929
	public static int AREA_SPANISH_EXCLUSIVE_ECONOMIC_ZONE = 164;
930
	public static int AREA_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE = 165;
931
	public static int AREA_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE = 166;
932
	public static int AREA_TIRRENO_SEA = 167;
933
	public static int AREA_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE = 168;
934
	public static int AREA_IRISH_EXCLUSIVE_ECONOMIC_ZONE = 169;
935
	public static int AREA_IRISH_SEA = 170;
936
	public static int AREA_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE = 171;
937
	public static int AREA_NORWEGIAN_SEA = 172;
938
	public static int AREA_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE = 173;
939
	public static int AREA_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE = 174;
940
	public static int AREA_SKAGERRAK = 175;
941
	public static int AREA_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE = 176;
942
	public static int AREA_WADDEN_SEA = 177;
943
	public static int AREA_BELT_SEA = 178;
944
	public static int AREA_MARMARA_SEA = 179;
945
	public static int AREA_SEA_OF_AZOV = 180;
946
	public static int AREA_AEGEAN_SEA = 181;
947
	public static int AREA_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE = 182;
948
	public static int AREA_SOUTH_BALTIC_PROPER = 183;
949
	public static int AREA_BALTIC_PROPER = 184;
950
	public static int AREA_NORTH_BALTIC_PROPER = 185;
951
	public static int AREA_ARCHIPELAGO_SEA = 186;
952
	public static int AREA_BOTHNIAN_SEA = 187;
953
	public static int AREA_GERMAN_EXCLUSIVE_ECONOMIC_ZONE = 188;
954
	public static int AREA_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE = 189;
955
	public static int AREA_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE = 190;
956
	public static int AREA_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE = 191;
957
	public static int AREA_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE = 192;
958
	public static int AREA_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART = 193;
959
	public static int AREA_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE = 194;
960
	public static int AREA_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE = 195;
961
	public static int AREA_BALEAR_SEA = 196;
962
	public static int AREA_TURKISH_EXCLUSIVE_ECONOMIC_ZONE = 197;
963
	public static int AREA_DANISH_EXCLUSIVE_ECONOMIC_ZONE = 198;
804 964

  
805
	public static String STR_ERMS_EUROPEAN_MARINE_WATERS = "European Marine Waters";
806
	public static String STR_ERMS_MEDITERRANEAN_SEA = "Mediterranean Sea";
807
	public static String STR_ERMS_WHITE_SEA = "White Sea";
808
	public static String STR_ERMS_NORTH_SEA = "North Sea";
809
	public static String STR_ERMS_BALTIC_SEA = "Baltic Sea";
810
	public static String STR_ERMS_BLACK_SEA = "Black Sea";
811
	public static String STR_ERMS_BARENTS_SEA = "Barents Sea";
812
	public static String STR_ERMS_CASPIAN_SEA = "Caspian Sea";
813
	public static String STR_ERMS_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE = "Portuguese Exclusive Economic Zone";
814
	public static String STR_ERMS_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE = "Belgian Exclusive Economic Zone";
815
	public static String STR_ERMS_FRENCH_EXCLUSIVE_ECONOMIC_ZONE = "French Exclusive Economic Zone";
816
	public static String STR_ERMS_ENGLISH_CHANNEL = "English Channel";
817
	public static String STR_ERMS_ADRIATIC_SEA = "Adriatic Sea";
818
	public static String STR_ERMS_BISCAY_BAY = "Biscay Bay";
819
	public static String STR_ERMS_DUTCH_EXCLUSIVE_ECONOMIC_ZONE = "Dutch Exclusive Economic Zone";
820
	public static String STR_ERMS_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE = "United Kingdom Exclusive Economic Zone";
821
	public static String STR_ERMS_SPANISH_EXCLUSIVE_ECONOMIC_ZONE = "Spanish Exclusive Economic Zone";
822
	public static String STR_ERMS_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE = "Egyptian Exclusive Economic Zone";
823
	public static String STR_ERMS_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE = "Grecian Exclusive Economic Zone";
824
	public static String STR_ERMS_TIRRENO_SEA = "Tirreno Sea";
825
	public static String STR_ERMS_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE = "Icelandic Exclusive Economic Zone";
826
	public static String STR_ERMS_IRISH_EXCLUSIVE_ECONOMIC_ZONE = "Irish Exclusive economic Zone";
827
	public static String STR_ERMS_IRISH_SEA = "Irish Sea";
828
	public static String STR_ERMS_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE = "Italian Exclusive Economic Zone";
829
	public static String STR_ERMS_NORWEGIAN_SEA = "Norwegian Sea";
830
	public static String STR_ERMS_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE = "Moroccan Exclusive Economic Zone";
831
	public static String STR_ERMS_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE = "Norwegian Exclusive Economic Zone";
832
	public static String STR_ERMS_SKAGERRAK = "Skagerrak";
833
	public static String STR_ERMS_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE = "Tunisian Exclusive Economic Zone";
834
	public static String STR_ERMS_WADDEN_SEA = "Wadden Sea";
835
	public static String STR_ERMS_BELT_SEA = "Belt Sea";
836
	public static String STR_ERMS_MARMARA_SEA = "Marmara Sea";
837
	public static String STR_ERMS_SEA_OF_AZOV = "Sea of Azov";
838
	public static String STR_ERMS_AEGEAN_SEA = "Aegean Sea";
839
	public static String STR_ERMS_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE = "Bulgarian Exclusive Economic Zone";
840
	public static String STR_ERMS_SOUTH_BALTIC_PROPER = "South Baltic proper";
841
	public static String STR_ERMS_BALTIC_PROPER = "Baltic Proper";
842
	public static String STR_ERMS_NORTH_BALTIC_PROPER = "North Baltic proper";
843
	public static String STR_ERMS_ARCHIPELAGO_SEA = "Archipelago Sea";
844
	public static String STR_ERMS_BOTHNIAN_SEA = "Bothnian Sea";
845
	public static String STR_ERMS_GERMAN_EXCLUSIVE_ECONOMIC_ZONE = "German Exclusive Economic Zone";
846
	public static String STR_ERMS_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE = "Swedish Exclusive Economic Zone";
847
	public static String STR_ERMS_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE = "Ukrainian Exclusive Economic Zone";
848
	public static String STR_ERMS_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE = "Madeiran Exclusive Economic Zone";
849
	public static String STR_ERMS_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE = "Lebanese Exclusive Economic Zone";
850
	public static String STR_ERMS_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART = "Spanish Exclusive Economic Zone [Mediterranean part]";
851
	public static String STR_ERMS_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE = "Estonian Exclusive Economic Zone";
852
	public static String STR_ERMS_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE = "Croatian Exclusive Economic Zone";
853
	public static String STR_ERMS_BALEAR_SEA = "Balear Sea";
854
	public static String STR_ERMS_TURKISH_EXCLUSIVE_ECONOMIC_ZONE = "Turkish Exclusive Economic Zone";
855
	public static String STR_ERMS_DANISH_EXCLUSIVE_ECONOMIC_ZONE = "Danish Exclusive Economic Zone";
856 965

  
857
	
858
	// PESI Area
859
	public static int PESI_EAST_AEGEAN_ISLANDS = 1;
860
	public static int PESI_GREEK_EAST_AEGEAN_ISLANDS = 2;
861
	public static int PESI_TURKISH_EAST_AEGEAN_ISLANDS = 3;
862
	public static int PESI_AUSTRIA_WITH_LIECHTENSTEIN = 5;
863
	public static int PESI_AUSTRIA = 6;
864
	public static int PESI_LIECHTENSTEIN = 7;
865
	public static int PESI_AZORES = 8;
866
	public static int PESI_CORVO = 9;
867
	public static int PESI_FAIAL = 10;
868
	public static int PESI_GRACIOSA = 11;
869
	public static int PESI_S?O_JORGE = 12;
870
	public static int PESI_FLORES = 13;
871
	public static int PESI_S?O_MIGUEL = 14;
872
	public static int PESI_PICO = 15;
873
	public static int PESI_SANTA_MARIA = 16;
874
	public static int PESI_TERCEIRA = 17;
875
	public static int PESI_BELGIUM_WITH_LUXEMBOURG = 18;
876
	public static int PESI_BELGIUM = 19;
877
	public static int PESI_LUXEMBOURG = 20;
878
	public static int PESI_BOSNIA_HERZEGOVINA = 21;
879
	public static int PESI_BALEARES = 22;
880
	public static int PESI_IBIZA_WITH_FORMENTERA = 23;
881
	public static int PESI_MALLORCA = 24;
882
	public static int PESI_MENORCA = 25;
883
	public static int PESI_GREAT_BRITAIN = 26;
884
	public static int PESI_BALTIC_STATES_ESTONIA_LATVIA_LITHUANIA_AND_KALININGRAD_REGION = 27;
885
	public static int PESI_BULGARIA = 28;
886
	public static int PESI_BELARUS = 29;
887
	public static int PESI_CANARY_ISLANDS = 30;
888
	public static int PESI_GRAN_CANARIA = 31;
889
	public static int PESI_FUERTEVENTURA_WITH_LOBOS = 32;
890
	public static int PESI_GOMERA = 33;
891
	public static int PESI_HIERRO = 34;
892
	public static int PESI_LANZAROTE_WITH_GRACIOSA = 35;
893
	public static int PESI_LA_PALMA = 36;
894
	public static int PESI_TENERIFE = 37;
895
	public static int PESI_MONTENEGRO = 38;
896
	public static int PESI_CORSE = 39;
897
	public static int PESI_CRETE_WITH_KARPATHOS,_KASOS_AND_GAVDHOS = 40;
898
	public static int PESI_CZECH_REPUBLIC = 41;
899
	public static int PESI_CROATIA = 42;
900
	public static int PESI_CYPRUS = 43;
901
	public static int PESI_FORMER_CZECHOSLOVAKIA = 44;
902
	public static int PESI_DENMARK_WITH_BORNHOLM = 45;
903
	public static int PESI_ESTONIA = 46;
904
	public static int PESI_FAROE_ISLANDS = 47;
905
	public static int PESI_FINLAND_WITH_AHVENANMAA = 48;
906
	public static int PESI_FRANCE = 49;
907
	public static int PESI_CHANNEL_ISLANDS = 50;
908
	public static int PESI_FRENCH_MAINLAND = 51;
909
	public static int PESI_MONACO = 52;
910
	public static int PESI_GERMANY = 53;
911
	public static int PESI_GREECE_WITH_CYCLADES_AND_MORE_ISLANDS = 54;
912
	public static int PESI_IRELAND = 55;
913
	public static int PESI_REPUBLIC_OF_IRELAND = 56;
914
	public static int PESI_NORTHERN_IRELAND = 57;
915
	public static int PESI_SWITZERLAND = 58;
916
	public static int PESI_NETHERLANDS = 59;
917
	public static int PESI_SPAIN = 60;
918
	public static int PESI_ANDORRA = 61;
919
	public static int PESI_GIBRALTAR = 62;
920
	public static int PESI_KINGDOM_OF_SPAIN = 63;
921
	public static int PESI_HUNGARY = 64;
922
	public static int PESI_ICELAND = 65;
923
	public static int PESI_ITALY = 66;
924
	public static int PESI_ITALIAN_MAINLAND = 67;
925
	public static int PESI_SAN_MARINO = 68;
926
	public static int PESI_FORMER_JUGOSLAVIA = 69;
927
	public static int PESI_LATVIA = 70;
928
	public static int PESI_LITHUANIA = 71;
929
	public static int PESI_PORTUGUESE_MAINLAND = 72;
930
	public static int PESI_MADEIRA_ARCHIPELAGO = 73;
931
	public static int PESI_DESERTAS = 74;
932
	public static int PESI_MADEIRA = 75;
933
	public static int PESI_PORTO_SANTO = 76;
934
	public static int PESI_THE_FORMER_JUGOSLAV_REPUBLIC_OF_MAKEDONIJA = 77;
935
	public static int PESI_MOLDOVA = 78;
936
	public static int PESI_NORWEGIAN_MAINLAND = 79;
937
	public static int PESI_POLAND = 80;
938
	public static int PESI_THE_RUSSIAN_FEDERATION = 81;
939
	public static int PESI_NOVAYA_ZEMLYA_AND_FRANZ_JOSEPH_LAND = 82;
940
	public static int PESI_CENTRAL_EUROPEAN_RUSSIA = 83;
941
	public static int PESI_EASTERN_EUROPEAN_RUSSIA = 84;
942
	public static int PESI_KALININGRAD = 85;
943
	public static int PESI_NORTHERN_EUROPEAN_RUSSIA = 86;
944
	public static int PESI_NORTHWEST_EUROPEAN_RUSSIA = 87;
945
	public static int PESI_SOUTH_EUROPEAN_RUSSIA = 88;
946
	public static int PESI_ROMANIA = 89;
947
	public static int PESI_FORMER_USSR = 90;
948
	public static int PESI_RUSSIA_BALTIC = 91;
949
	public static int PESI_RUSSIA_CENTRAL = 92;
950
	public static int PESI_RUSSIA_SOUTHEAST = 93;
951
	public static int PESI_RUSSIA_NORTHERN = 94;
952
	public static int PESI_RUSSIA_SOUTHWEST = 95;
953
	public static int PESI_SARDEGNA = 96;
954
	public static int PESI_SVALBARD_WITH_BJORNOYA_AND_JAN_MAYEN = 97;
955
	public static int PESI_SELVAGENS_ISLANDS = 98;
956
	public static int PESI_SICILY_WITH_MALTA = 99;
957
	public static int PESI_MALTA = 100;
958
	public static int PESI_SICILY = 101;
959
	public static int PESI_SLOVAKIA = 102;
960
	public static int PESI_SLOVENIA = 103;
961
	public static int PESI_SERBIA_WITH_MONTENEGRO = 104;
962
	public static int PESI_SERBIA_INCLUDING_VOJVODINA_AND_WITH_KOSOVO = 105;
963
	public static int PESI_SWEDEN = 106;
964
	public static int PESI_EUROPEAN_TURKEY = 107;
965
	public static int PESI_UKRAINE_INCLUDING_CRIMEA = 108;
966
	public static int PESI_CRIMEA = 109;
967
	public static int PESI_UKRAINE = 110;
968
	public static int PESI_GREEK_MAINLAND = 111;
969
	public static int PESI_CRETE = 112;
970
	public static int PESI_DODECANESE_ISLANDS = 113;
971
	public static int PESI_CYCLADES_ISLANDS = 114;
972
	public static int PESI_NORTH_AEGEAN_ISLANDS = 115;
973
	public static int PESI_VATICAN_CITY = 116;
974
	public static int PESI_FRANZ_JOSEF_LAND = 117;
975
	public static int PESI_NOVAYA_ZEMLYA = 118;
976
	public static int PESI_AZERBAIJAN_INCLUDING_NAKHICHEVAN = 119;
977
	public static int PESI_AZERBAIJAN = 120;
978
	public static int PESI_NAKHICHEVAN = 121;
979
	public static int PESI_ALGERIA = 122;
980
	public static int PESI_ARMENIA = 123;
981
	public static int PESI_CAUCASUS_REGION = 124;
982
	public static int PESI_EGYPT = 125;
983
	public static int PESI_GEORGIA = 126;
984
	public static int PESI_ISRAEL_JORDAN = 127;
985
	public static int PESI_ISRAEL = 128;
986
	public static int PESI_JORDAN = 129;
987
	public static int PESI_LEBANON = 130;
988
	public static int PESI_LIBYA = 131;
989
	public static int PESI_LEBANON_SYRIA = 132;
990
	public static int PESI_MOROCCO = 133;
991
	public static int PESI_NORTH_CAUCASUS = 134;
992
	public static int PESI_SINAI = 135;
993
	public static int PESI_SYRIA = 136;
994
	public static int PESI_TUNISIA = 137;
995
	public static int PESI_ASIATIC_TURKEY = 138;
996
	public static int PESI_TURKEY = 139;
997
	public static int PESI_NORTHERN_AFRICA = 140;
998
	public static int PESI_AFRO_TROPICAL_REGION = 141;
999
	public static int PESI_AUSTRALIAN_REGION = 142;
1000
	public static int PESI_EAST_PALAEARCTIC = 143;
1001
	public static int PESI_NEARCTIC_REGION = 144;
1002
	public static int PESI_NEOTROPICAL_REGION = 145;
1003
	public static int PESI_NEAR_EAST = 146;
1004
	public static int PESI_ORIENTAL_REGION = 147;
1005
	public static int PESI_EUROPEAN_MARINE_WATERS = 148;
1006
	public static int PESI_MEDITERRANEAN_SEA = 149;
1007
	public static int PESI_WHITE_SEA = 150;
1008
	public static int PESI_NORTH_SEA = 151;
1009
	public static int PESI_BALTIC_SEA = 152;
1010
	public static int PESI_BLACK_SEA = 153;
1011
	public static int PESI_BARENTS_SEA = 154;
1012
	public static int PESI_CASPIAN_SEA = 155;
1013
	public static int PESI_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE = 156;
1014
	public static int PESI_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE = 157;
1015
	public static int PESI_FRENCH_EXCLUSIVE_ECONOMIC_ZONE = 158;
1016
	public static int PESI_ENGLISH_CHANNEL = 159;
1017
	public static int PESI_ADRIATIC_SEA = 160;
1018
	public static int PESI_BISCAY_BAY = 161;
1019
	public static int PESI_DUTCH_EXCLUSIVE_ECONOMIC_ZONE = 162;
1020
	public static int PESI_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE = 163;
1021
	public static int PESI_SPANISH_EXCLUSIVE_ECONOMIC_ZONE = 164;
1022
	public static int PESI_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE = 165;
1023
	public static int PESI_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE = 166;
1024
	public static int PESI_TIRRENO_SEA = 167;
1025
	public static int PESI_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE = 168;
1026
	public static int PESI_IRISH_EXCLUSIVE_ECONOMIC_ZONE = 169;
1027
	public static int PESI_IRISH_SEA = 170;
1028
	public static int PESI_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE = 171;
1029
	public static int PESI_NORWEGIAN_SEA = 172;
1030
	public static int PESI_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE = 173;
1031
	public static int PESI_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE = 174;
1032
	public static int PESI_SKAGERRAK = 175;
1033
	public static int PESI_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE = 176;
1034
	public static int PESI_WADDEN_SEA = 177;
1035
	public static int PESI_BELT_SEA = 178;
1036
	public static int PESI_MARMARA_SEA = 179;
1037
	public static int PESI_SEA_OF_AZOV = 180;
1038
	public static int PESI_AEGEAN_SEA = 181;
1039
	public static int PESI_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE = 182;
1040
	public static int PESI_SOUTH_BALTIC_PROPER = 183;
1041
	public static int PESI_BALTIC_PROPER = 184;
1042
	public static int PESI_NORTH_BALTIC_PROPER = 185;
1043
	public static int PESI_ARCHIPELAGO_SEA = 186;
1044
	public static int PESI_BOTHNIAN_SEA = 187;
1045
	public static int PESI_GERMAN_EXCLUSIVE_ECONOMIC_ZONE = 188;
1046
	public static int PESI_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE = 189;
1047
	public static int PESI_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE = 190;
1048
	public static int PESI_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE = 191;
1049
	public static int PESI_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE = 192;
1050
	public static int PESI_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART = 193;
1051
	public static int PESI_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE = 194;
1052
	public static int PESI_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE = 195;
1053
	public static int PESI_BALEAR_SEA = 196;
1054
	public static int PESI_TURKISH_EXCLUSIVE_ECONOMIC_ZONE = 197;
1055
	public static int PESI_DANISH_EXCLUSIVE_ECONOMIC_ZONE = 198;
966
	public static String STR_AREA_EAST_AEGEAN_ISLANDS = "East Aegean Islands";
967
	public static String STR_AREA_GREEK_EAST_AEGEAN_ISLANDS = "Greek East Aegean Islands";
968
	public static String STR_AREA_TURKISH_EAST_AEGEAN_ISLANDS = "Turkish East Aegean Islands";
969
	public static String STR_AREA_ALBANIA = "Albania";
970
	public static String STR_AREA_AUSTRIA_WITH_LIECHTENSTEIN = "Austria with Liechtenstein";
971
	public static String STR_AREA_AUSTRIA = "Austria";
972
	public static String STR_AREA_LIECHTENSTEIN = "Liechtenstein";
973
	public static String STR_AREA_AZORES = "Azores";
974
	public static String STR_AREA_CORVO = "Corvo";
975
	public static String STR_AREA_FAIAL = "Faial";
976
	public static String STR_AREA_GRACIOSA = "Graciosa";
977
	public static String STR_AREA_SAO_JORGE = "S?o Jorge";
978
	public static String STR_AREA_FLORES = "Flores";
979
	public static String STR_AREA_SAO_MIGUEL = "S?o Miguel";
980
	public static String STR_AREA_PICO = "Pico";
981
	public static String STR_AREA_SANTA_MARIA = "Santa Maria";
982
	public static String STR_AREA_TERCEIRA = "Terceira";
983
	public static String STR_AREA_BELGIUM_WITH_LUXEMBOURG = "Belgium with Luxembourg";
984
	public static String STR_AREA_BELGIUM = "Belgium";
985
	public static String STR_AREA_LUXEMBOURG = "Luxembourg";
986
	public static String STR_AREA_BOSNIA_HERZEGOVINA = "Bosnia-Herzegovina";
987
	public static String STR_AREA_BALEARES = "Baleares";
988
	public static String STR_AREA_IBIZA_WITH_FORMENTERA = "Ibiza with Formentera";
989
	public static String STR_AREA_MALLORCA = "Mallorca";
990
	public static String STR_AREA_MENORCA = "Menorca";
991
	public static String STR_AREA_GREAT_BRITAIN = "Great Britain";
992
	public static String STR_AREA_BALTIC_STATES_ESTONIA_LATVIA_LITHUANIA_AND_KALININGRAD_REGION = "Baltic states (Estonia, Latvia, Lithuania) and Kaliningrad region";
993
	public static String STR_AREA_BULGARIA = "Bulgaria";
994
	public static String STR_AREA_BELARUS = "Belarus";
995
	public static String STR_AREA_CANARY_ISLANDS = "Canary Islands";
996
	public static String STR_AREA_GRAN_CANARIA = "Gran Canaria";
997
	public static String STR_AREA_FUERTEVENTURA_WITH_LOBOS = "Fuerteventura with Lobos";
998
	public static String STR_AREA_GOMERA = "Gomera";
999
	public static String STR_AREA_HIERRO = "Hierro";
1000
	public static String STR_AREA_LANZAROTE_WITH_GRACIOSA = "Lanzarote with Graciosa";
1001
	public static String STR_AREA_LA_PALMA = "La Palma";
1002
	public static String STR_AREA_TENERIFE = "Tenerife";
1003
	public static String STR_AREA_MONTENEGRO = "Montenegro";
1004
	public static String STR_AREA_CORSE = "Corse";
1005
	public static String STR_AREA_CRETE_WITH_KARPATHOS_KASOS_AND_GAVDHOS = "Crete with Karpathos, Kasos & Gavdhos";
1006
	public static String STR_AREA_CZECH_REPUBLIC = "Czech Republic";
1007
	public static String STR_AREA_CROATIA = "Croatia";
1008
	public static String STR_AREA_CYPRUS = "Cyprus";
1009
	public static String STR_AREA_FORMER_CZECHOSLOVAKIA = "Former Czechoslovakia";
1010
	public static String STR_AREA_DENMARK_WITH_BORNHOLM = "Denmark with Bornholm";
1011
	public static String STR_AREA_ESTONIA = "Estonia";
1012
	public static String STR_AREA_FAROE_ISLANDS = "Faroe Islands";
1013
	public static String STR_AREA_FINLAND_WITH_AHVENANMAA = "Finland with Ahvenanmaa";
1014
	public static String STR_AREA_FRANCE = "France";
1015
	public static String STR_AREA_CHANNEL_ISLANDS = "Channel Islands";
1016
	public static String STR_AREA_FRENCH_MAINLAND = "French mainland";
1017
	public static String STR_AREA_MONACO = "Monaco";
1018
	public static String STR_AREA_GERMANY = "Germany";
1019
	public static String STR_AREA_GREECE_WITH_CYCLADES_AND_MORE_ISLANDS = "Greece with Cyclades and more islands";
1020
	public static String STR_AREA_IRELAND = "Ireland";
1021
	public static String STR_AREA_REPUBLIC_OF_IRELAND = "Republic of Ireland";
1022
	public static String STR_AREA_NORTHERN_IRELAND = "Northern Ireland";
1023
	public static String STR_AREA_SWITZERLAND = "Switzerland";
1024
	public static String STR_AREA_NETHERLANDS = "Netherlands";
1025
	public static String STR_AREA_SPAIN = "Spain";
1026
	public static String STR_AREA_ANDORRA = "Andorra";
1027
	public static String STR_AREA_GIBRALTAR = "Gibraltar";
1028
	public static String STR_AREA_KINGDOM_OF_SPAIN = "Kingdom of Spain";
1029
	public static String STR_AREA_HUNGARY = "Hungary";
1030
	public static String STR_AREA_ICELAND = "Iceland";
1031
	public static String STR_AREA_ITALY = "Italy";
1032
	public static String STR_AREA_ITALIAN_MAINLAND = "Italian mainland";
1033
	public static String STR_AREA_SAN_MARINO = "San Marino";
1034
	public static String STR_AREA_FORMER_JUGOSLAVIA = "Former Jugoslavia";
1035
	public static String STR_AREA_LATVIA = "Latvia";
1036
	public static String STR_AREA_LITHUANIA = "Lithuania";
1037
	public static String STR_AREA_PORTUGUESE_MAINLAND = "Portuguese mainland";
1038
	public static String STR_AREA_MADEIRA_ARCHIPELAGO = "Madeira";
1039
	public static String STR_AREA_DESERTAS = "Desertas";
1040
	public static String STR_AREA_MADEIRA = "Madeira";
1041
	public static String STR_AREA_PORTO_SANTO = "Porto Santo";
1042
	public static String STR_AREA_THE_FORMER_JUGOSLAV_REPUBLIC_OF_MAKEDONIJA = "The former Jugoslav Republic of Makedonija";
1043
	public static String STR_AREA_MOLDOVA = "Moldova";
1044
	public static String STR_AREA_NORWEGIAN_MAINLAND = "Norwegian mainland";
1045
	public static String STR_AREA_POLAND = "Poland";
1046
	public static String STR_AREA_THE_RUSSIAN_FEDERATION = "The Russian Federation";
1047
	public static String STR_AREA_NOVAYA_ZEMLYA_AND_FRANZ_JOSEPH_LAND = "Novaya Zemlya & Franz-Joseph Land";
1048
	public static String STR_AREA_CENTRAL_EUROPEAN_RUSSIA = "Central European Russia";
1049
	public static String STR_AREA_EASTERN_EUROPEAN_RUSSIA = "Eastern European Russia";
1050
	public static String STR_AREA_KALININGRAD = "Kaliningrad";
1051
	public static String STR_AREA_NORTHERN_EUROPEAN_RUSSIA = "Northern European Russia";
1052
	public static String STR_AREA_NORTHWEST_EUROPEAN_RUSSIA = "Northwest European Russia";
1053
	public static String STR_AREA_SOUTH_EUROPEAN_RUSSIA = "South European Russia";
1054
	public static String STR_AREA_ROMANIA = "Romania";
1055
	public static String STR_AREA_FORMER_USSR = "Former USSR";
1056
	public static String STR_AREA_RUSSIA_BALTIC = "Russia Baltic";
1057
	public static String STR_AREA_RUSSIA_CENTRAL = "Russia Central";
1058
	public static String STR_AREA_RUSSIA_SOUTHEAST = "Russia Southeast";
1059
	public static String STR_AREA_RUSSIA_NORTHERN = "Russia Northern";
1060
	public static String STR_AREA_RUSSIA_SOUTHWEST = "Russia Southwest";
1061
	public static String STR_AREA_SARDEGNA = "Sardegna";
1062
	public static String STR_AREA_SVALBARD_WITH_BJORNOYA_AND_JAN_MAYEN = "Svalbard with Bj?rn?ya and Jan Mayen";
1063
	public static String STR_AREA_SELVAGENS_ISLANDS = "Selvagens Islands";
1064
	public static String STR_AREA_SICILY_WITH_MALTA = "Sicily with Malta";
1065
	public static String STR_AREA_MALTA = "Malta";
1066
	public static String STR_AREA_SICILY = "Sicily";
1067
	public static String STR_AREA_SLOVAKIA = "Slovakia";
1068
	public static String STR_AREA_SLOVENIA = "Slovenia";
1069
	public static String STR_AREA_SERBIA_WITH_MONTENEGRO = "Serbia with Montenegro";
1070
	public static String STR_AREA_SERBIA_INCLUDING_VOJVODINA_AND_WITH_KOSOVO = "Serbia including Vojvodina and with Kosovo";
1071
	public static String STR_AREA_SWEDEN = "Sweden";
1072
	public static String STR_AREA_EUROPEAN_TURKEY = "European Turkey";
1073
	public static String STR_AREA_UKRAINE_INCLUDING_CRIMEA = "Ukraine including Crimea";
1074
	public static String STR_AREA_CRIMEA = "Crimea";
1075
	public static String STR_AREA_UKRAINE = "Ukraine";
1076
	public static String STR_AREA_GREEK_MAINLAND = "Greek mainland";
1077
	public static String STR_AREA_CRETE = "Crete";
1078
	public static String STR_AREA_DODECANESE_ISLANDS = "Dodecanese Islands";
1079
	public static String STR_AREA_CYCLADES_ISLANDS = "Cyclades Islands";
1080
	public static String STR_AREA_NORTH_AEGEAN_ISLANDS = "North Aegean Islands";
1081
	public static String STR_AREA_VATICAN_CITY = "Vatican City";
1082
	public static String STR_AREA_FRANZ_JOSEF_LAND = "Franz Josef Land";
1083
	public static String STR_AREA_NOVAYA_ZEMLYA = "Novaya Zemlya";
1084
	public static String STR_AREA_AZERBAIJAN_INCLUDING_NAKHICHEVAN = "Azerbaijan including Nakhichevan";
1085
	public static String STR_AREA_AZERBAIJAN = "Azerbaijan";
1086
	public static String STR_AREA_NAKHICHEVAN = "Nakhichevan";
1087
	public static String STR_AREA_ALGERIA = "Algeria";
1088
	public static String STR_AREA_ARMENIA = "Armenia";
1089
	public static String STR_AREA_CAUCASUS_REGION = "Caucasus region";
1090
	public static String STR_AREA_EGYPT = "Egypt";
1091
	public static String STR_AREA_GEORGIA = "Georgia";
1092
	public static String STR_AREA_ISRAEL_JORDAN = "Israel-Jordan";
1093
	public static String STR_AREA_ISRAEL = "Israel";
1094
	public static String STR_AREA_JORDAN = "Jordan";
1095
	public static String STR_AREA_LEBANON = "Lebanon";
1096
	public static String STR_AREA_LIBYA = "Libya";
1097
	public static String STR_AREA_LEBANON_SYRIA = "Lebanon-Syria";
1098
	public static String STR_AREA_MOROCCO = "Morocco";
1099
	public static String STR_AREA_NORTH_CAUCASUS = "North Caucasus";
1100
	public static String STR_AREA_SINAI = "Sinai";
1101
	public static String STR_AREA_SYRIA = "Syria";
1102
	public static String STR_AREA_TUNISIA = "Tunisia";
1103
	public static String STR_AREA_ASIATIC_TURKEY = "Asiatic Turkey";
1104
	public static String STR_AREA_TURKEY = "Turkey";
1105
	public static String STR_AREA_NORTHERN_AFRICA = "Northern Africa";
1106
	public static String STR_AREA_AFRO_TROPICAL_REGION = "Afro-tropical region";
1107
	public static String STR_AREA_AUSTRALIAN_REGION = "Australian region";
1108
	public static String STR_AREA_EAST_PALAEARCTIC = "East Palaearctic";
1109
	public static String STR_AREA_NEARCTIC_REGION = "Nearctic region";
1110
	public static String STR_AREA_NEOTROPICAL_REGION = "Neotropical region";
1111
	public static String STR_AREA_NEAR_EAST = "Near East";
1112
	public static String STR_AREA_ORIENTAL_REGION = "Oriental region";
1113
	public static String STR_AREA_EUROPEAN_MARINE_WATERS = "European Marine Waters";
1114
	public static String STR_AREA_MEDITERRANEAN_SEA = "Mediterranean Sea";
1115
	public static String STR_AREA_WHITE_SEA = "White Sea";
1116
	public static String STR_AREA_NORTH_SEA = "North Sea";
1117
	public static String STR_AREA_BALTIC_SEA = "Baltic Sea";
1118
	public static String STR_AREA_BLACK_SEA = "Black Sea";
1119
	public static String STR_AREA_BARENTS_SEA = "Barents Sea";
1120
	public static String STR_AREA_CASPIAN_SEA = "Caspian Sea";
1121
	public static String STR_AREA_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE = "Portuguese Exclusive Economic Zone";
1122
	public static String STR_AREA_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE = "Belgian Exclusive Economic Zone";
1123
	public static String STR_AREA_FRENCH_EXCLUSIVE_ECONOMIC_ZONE = "French Exclusive Economic Zone";
1124
	public static String STR_AREA_ENGLISH_CHANNEL = "English Channel";
1125
	public static String STR_AREA_ADRIATIC_SEA = "Adriatic Sea";
1126
	public static String STR_AREA_BISCAY_BAY = "Biscay Bay";
1127
	public static String STR_AREA_DUTCH_EXCLUSIVE_ECONOMIC_ZONE = "Dutch Exclusive Economic Zone";
1128
	public static String STR_AREA_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE = "United Kingdom Exclusive Economic Zone";
1129
	public static String STR_AREA_SPANISH_EXCLUSIVE_ECONOMIC_ZONE = "Spanish Exclusive Economic Zone";
1130
	public static String STR_AREA_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE = "Egyptian Exclusive Economic Zone";
1131
	public static String STR_AREA_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE = "Grecian Exclusive Economic Zone";
1132
	public static String STR_AREA_TIRRENO_SEA = "Tirreno Sea";
1133
	public static String STR_AREA_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE = "Icelandic Exclusive Economic Zone";
1134
	public static String STR_AREA_IRISH_EXCLUSIVE_ECONOMIC_ZONE = "Irish Exclusive economic Zone";
1135
	public static String STR_AREA_IRISH_SEA = "Irish Sea";
1136
	public static String STR_AREA_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE = "Italian Exclusive Economic Zone";
1137
	public static String STR_AREA_NORWEGIAN_SEA = "Norwegian Sea";
1138
	public static String STR_AREA_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE = "Moroccan Exclusive Economic Zone";
1139
	public static String STR_AREA_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE = "Norwegian Exclusive Economic Zone";
1140
	public static String STR_AREA_SKAGERRAK = "Skagerrak";
1141
	public static String STR_AREA_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE = "Tunisian Exclusive Economic Zone";
1142
	public static String STR_AREA_WADDEN_SEA = "Wadden Sea";
1143
	public static String STR_AREA_BELT_SEA = "Belt Sea";
1144
	public static String STR_AREA_MARMARA_SEA = "Marmara Sea";
1145
	public static String STR_AREA_SEA_OF_AZOV = "Sea of Azov";
1146
	public static String STR_AREA_AEGEAN_SEA = "Aegean Sea";
1147
	public static String STR_AREA_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE = "Bulgarian Exclusive Economic Zone";
1148
	public static String STR_AREA_SOUTH_BALTIC_PROPER = "South Baltic proper";
1149
	public static String STR_AREA_BALTIC_PROPER = "Baltic Proper";
1150
	public static String STR_AREA_NORTH_BALTIC_PROPER = "North Baltic proper";
1151
	public static String STR_AREA_ARCHIPELAGO_SEA = "Archipelago Sea";
1152
	public static String STR_AREA_BOTHNIAN_SEA = "Bothnian Sea";
1153
	public static String STR_AREA_GERMAN_EXCLUSIVE_ECONOMIC_ZONE = "German Exclusive Economic Zone";
1154
	public static String STR_AREA_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE = "Swedish Exclusive Economic Zone";
1155
	public static String STR_AREA_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE = "Ukrainian Exclusive Economic Zone";
1156
	public static String STR_AREA_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE = "Madeiran Exclusive Economic Zone";
1157
	public static String STR_AREA_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE = "Lebanese Exclusive Economic Zone";
1158
	public static String STR_AREA_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART = "Spanish Exclusive Economic Zone [Mediterranean part]";
1159
	public static String STR_AREA_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE = "Estonian Exclusive Economic Zone";
1160
	public static String STR_AREA_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE = "Croatian Exclusive Economic Zone";
1161
	public static String STR_AREA_BALEAR_SEA = "Balear Sea";
1162
	public static String STR_AREA_TURKISH_EXCLUSIVE_ECONOMIC_ZONE = "Turkish Exclusive Economic Zone";
1163
	public static String STR_AREA_DANISH_EXCLUSIVE_ECONOMIC_ZONE = "Danish Exclusive Economic Zone";
1056 1164

  
1057
	public static String STR_PESI_EAST_AEGEAN_ISLANDS = "East Aegean Islands";
1058
	public static String STR_PESI_GREEK_EAST_AEGEAN_ISLANDS = "Greek East Aegean Islands";
1059
	public static String STR_PESI_TURKISH_EAST_AEGEAN_ISLANDS = "Turkish East Aegean Islands";
1060
	public static String STR_PESI_ALBANIA = "Albania";
1061
	public static String STR_PESI_AUSTRIA_WITH_LIECHTENSTEIN = "Austria with Liechtenstein";
1062
	public static String STR_PESI_AUSTRIA = "Austria";
1063
	public static String STR_PESI_LIECHTENSTEIN = "Liechtenstein";
1064
	public static String STR_PESI_AZORES = "Azores";
1065
	public static String STR_PESI_CORVO = "Corvo";
1066
	public static String STR_PESI_FAIAL = "Faial";
1067
	public static String STR_PESI_GRACIOSA = "Graciosa";
1068
	public static String STR_PESI_S?O_JORGE = "S?o Jorge";
1069
	public static String STR_PESI_FLORES = "Flores";
1070
	public static String STR_PESI_S?O_MIGUEL = "S?o Miguel";
1071
	public static String STR_PESI_PICO = "Pico";
1072
	public static String STR_PESI_SANTA_MARIA = "Santa Maria";
1073
	public static String STR_PESI_TERCEIRA = "Terceira";
1074
	public static String STR_PESI_BELGIUM_WITH_LUXEMBOURG = "Belgium with Luxembourg";
1075
	public static String STR_PESI_BELGIUM = "Belgium";
1076
	public static String STR_PESI_LUXEMBOURG = "Luxembourg";
1077
	public static String STR_PESI_BOSNIA_HERZEGOVINA = "Bosnia-Herzegovina";
1078
	public static String STR_PESI_BALEARES = "Baleares";
1079
	public static String STR_PESI_IBIZA_WITH_FORMENTERA = "Ibiza with Formentera";
1080
	public static String STR_PESI_MALLORCA = "Mallorca";
1081
	public static String STR_PESI_MENORCA = "Menorca";
1082
	public static String STR_PESI_GREAT_BRITAIN = "Great Britain";
1083
	public static String STR_PESI_BALTIC_STATES_ESTONIA_LATVIA_LITHUANIA_AND_KALININGRAD_REGION = "Baltic states (Estonia, Latvia, Lithuania) and Kaliningrad region";
1084
	public static String STR_PESI_BULGARIA = "Bulgaria";
1085
	public static String STR_PESI_BELARUS = "Belarus";
1086
	public static String STR_PESI_CANARY_ISLANDS = "Canary Islands";
1087
	public static String STR_PESI_GRAN_CANARIA = "Gran Canaria";
1088
	public static String STR_PESI_FUERTEVENTURA_WITH_LOBOS = "Fuerteventura with Lobos";
1089
	public static String STR_PESI_GOMERA = "Gomera";
1090
	public static String STR_PESI_HIERRO = "Hierro";
1091
	public static String STR_PESI_LANZAROTE_WITH_GRACIOSA = "Lanzarote with Graciosa";
1092
	public static String STR_PESI_LA_PALMA = "La Palma";
1093
	public static String STR_PESI_TENERIFE = "Tenerife";
1094
	public static String STR_PESI_MONTENEGRO = "Montenegro";
1095
	public static String STR_PESI_CORSE = "Corse";
1096
	public static String STR_PESI_CRETE_WITH_KARPATHOS_KASOS_AND_GAVDHOS = "Crete with Karpathos, Kasos & Gavdhos";
1097
	public static String STR_PESI_CZECH_REPUBLIC = "Czech Republic";
1098
	public static String STR_PESI_CROATIA = "Croatia";
1099
	public static String STR_PESI_CYPRUS = "Cyprus";
1100
	public static String STR_PESI_FORMER_CZECHOSLOVAKIA = "Former Czechoslovakia";
1101
	public static String STR_PESI_DENMARK_WITH_BORNHOLM = "Denmark with Bornholm";
1102
	public static String STR_PESI_ESTONIA = "Estonia";
1103
	public static String STR_PESI_FAROE_ISLANDS = "Faroe Islands";
1104
	public static String STR_PESI_FINLAND_WITH_AHVENANMAA = "Finland with Ahvenanmaa";
1105
	public static String STR_PESI_FRANCE = "France";
1106
	public static String STR_PESI_CHANNEL_ISLANDS = "Channel Islands";
1107
	public static String STR_PESI_FRENCH_MAINLAND = "French mainland";
1108
	public static String STR_PESI_MONACO = "Monaco";
1109
	public static String STR_PESI_GERMANY = "Germany";
1110
	public static String STR_PESI_GREECE_WITH_CYCLADES_AND_MORE_ISLANDS = "Greece with Cyclades and more islands";
1111
	public static String STR_PESI_IRELAND = "Ireland";
1112
	public static String STR_PESI_REPUBLIC_OF_IRELAND = "Republic of Ireland";
1113
	public static String STR_PESI_NORTHERN_IRELAND = "Northern Ireland";
1114
	public static String STR_PESI_SWITZERLAND = "Switzerland";
1115
	public static String STR_PESI_NETHERLANDS = "Netherlands";
1116
	public static String STR_PESI_SPAIN = "Spain";
1117
	public static String STR_PESI_ANDORRA = "Andorra";
1118
	public static String STR_PESI_GIBRALTAR = "Gibraltar";
1119
	public static String STR_PESI_KINGDOM_OF_SPAIN = "Kingdom of Spain";
1120
	public static String STR_PESI_HUNGARY = "Hungary";
1121
	public static String STR_PESI_ICELAND = "Iceland";
1122
	public static String STR_PESI_ITALY = "Italy";
1123
	public static String STR_PESI_ITALIAN_MAINLAND = "Italian mainland";
1124
	public static String STR_PESI_SAN_MARINO = "San Marino";
1125
	public static String STR_PESI_FORMER_JUGOSLAVIA = "Former Jugoslavia";
1126
	public static String STR_PESI_LATVIA = "Latvia";
1127
	public static String STR_PESI_LITHUANIA = "Lithuania";
1128
	public static String STR_PESI_PORTUGUESE_MAINLAND = "Portuguese mainland";
1129
	public static String STR_PESI_MADEIRA_ARCHIPELAGO = "Madeira";
1130
	public static String STR_PESI_DESERTAS = "Desertas";
1131
	public static String STR_PESI_MADEIRA = "Madeira";
1132
	public static String STR_PESI_PORTO_SANTO = "Porto Santo";
1133
	public static String STR_PESI_THE_FORMER_JUGOSLAV_REPUBLIC_OF_MAKEDONIJA = "The former Jugoslav Republic of Makedonija";
1134
	public static String STR_PESI_MOLDOVA = "Moldova";
1135
	public static String STR_PESI_NORWEGIAN_MAINLAND = "Norwegian mainland";
1136
	public static String STR_PESI_POLAND = "Poland";
1137
	public static String STR_PESI_THE_RUSSIAN_FEDERATION = "The Russian Federation";
1138
	public static String STR_PESI_NOVAYA_ZEMLYA_AND_FRANZ_JOSEPH_LAND = "Novaya Zemlya & Franz-Joseph Land";
1139
	public static String STR_PESI_CENTRAL_EUROPEAN_RUSSIA = "Central European Russia";
1140
	public static String STR_PESI_EASTERN_EUROPEAN_RUSSIA = "Eastern European Russia";
1141
	public static String STR_PESI_KALININGRAD = "Kaliningrad";
1142
	public static String STR_PESI_NORTHERN_EUROPEAN_RUSSIA = "Northern European Russia";
1143
	public static String STR_PESI_NORTHWEST_EUROPEAN_RUSSIA = "Northwest European Russia";
1144
	public static String STR_PESI_SOUTH_EUROPEAN_RUSSIA = "South European Russia";
1145
	public static String STR_PESI_ROMANIA = "Romania";
1146
	public static String STR_PESI_FORMER_USSR = "Former USSR";
1147
	public static String STR_PESI_RUSSIA_BALTIC = "Russia Baltic";
1148
	public static String STR_PESI_RUSSIA_CENTRAL = "Russia Central";
1149
	public static String STR_PESI_RUSSIA_SOUTHEAST = "Russia Southeast";
1150
	public static String STR_PESI_RUSSIA_NORTHERN = "Russia Northern";
1151
	public static String STR_PESI_RUSSIA_SOUTHWEST = "Russia Southwest";
1152
	public static String STR_PESI_SARDEGNA = "Sardegna";
1153
	public static String STR_PESI_SVALBARD_WITH_BJ?RN?YA_AND_JAN_MAYEN = "Svalbard with Bj?rn?ya and Jan Mayen";
1154
	public static String STR_PESI_SELVAGENS_ISLANDS = "Selvagens Islands";
1155
	public static String STR_PESI_SICILY_WITH_MALTA = "Sicily with Malta";
1156
	public static String STR_PESI_MALTA = "Malta";
1157
	public static String STR_PESI_SICILY = "Sicily";
1158
	public static String STR_PESI_SLOVAKIA = "Slovakia";
1159
	public static String STR_PESI_SLOVENIA = "Slovenia";
1160
	public static String STR_PESI_SERBIA_WITH_MONTENEGRO = "Serbia with Montenegro";
1161
	public static String STR_PESI_SERBIA_INCLUDING_VOJVODINA_AND_WITH_KOSOVO = "Serbia including Vojvodina and with Kosovo";
1162
	public static String STR_PESI_SWEDEN = "Sweden";
1163
	public static String STR_PESI_EUROPEAN_TURKEY = "European Turkey";
1164
	public static String STR_PESI_UKRAINE_INCLUDING_CRIMEA = "Ukraine including Crimea";
1165
	public static String STR_PESI_CRIMEA = "Crimea";
1166
	public static String STR_PESI_UKRAINE = "Ukraine";
1167
	public static String STR_PESI_GREEK_MAINLAND = "Greek mainland";
1168
	public static String STR_PESI_CRETE = "Crete";
1169
	public static String STR_PESI_DODECANESE_ISLANDS = "Dodecanese Islands";
1170
	public static String STR_PESI_CYCLADES_ISLANDS = "Cyclades Islands";
1171
	public static String STR_PESI_NORTH_AEGEAN_ISLANDS = "North Aegean Islands";
1172
	public static String STR_PESI_VATICAN_CITY = "Vatican City";
1173
	public static String STR_PESI_FRANZ_JOSEF_LAND = "Franz Josef Land";
1174
	public static String STR_PESI_NOVAYA_ZEMLYA = "Novaya Zemlya";
1175
	public static String STR_PESI_AZERBAIJAN_INCLUDING_NAKHICHEVAN = "Azerbaijan including Nakhichevan";
1176
	public static String STR_PESI_AZERBAIJAN = "Azerbaijan";
1177
	public static String STR_PESI_NAKHICHEVAN = "Nakhichevan";
1178
	public static String STR_PESI_ALGERIA = "Algeria";
1179
	public static String STR_PESI_ARMENIA = "Armenia";
1180
	public static String STR_PESI_CAUCASUS_REGION = "Caucasus region";
1181
	public static String STR_PESI_EGYPT = "Egypt";
1182
	public static String STR_PESI_GEORGIA = "Georgia";
1183
	public static String STR_PESI_ISRAEL_JORDAN = "Israel-Jordan";
1184
	public static String STR_PESI_ISRAEL = "Israel";
1185
	public static String STR_PESI_JORDAN = "Jordan";
1186
	public static String STR_PESI_LEBANON = "Lebanon";
1187
	public static String STR_PESI_LIBYA = "Libya";
1188
	public static String STR_PESI_LEBANON_SYRIA = "Lebanon-Syria";
1189
	public static String STR_PESI_MOROCCO = "Morocco";
1190
	public static String STR_PESI_NORTH_CAUCASUS = "North Caucasus";
1191
	public static String STR_PESI_SINAI = "Sinai";
1192
	public static String STR_PESI_SYRIA = "Syria";
1193
	public static String STR_PESI_TUNISIA = "Tunisia";
1194
	public static String STR_PESI_ASIATIC_TURKEY = "Asiatic Turkey";
1195
	public static String STR_PESI_TURKEY = "Turkey";
1196
	public static String STR_PESI_NORTHERN_AFRICA = "Northern Africa";
1197
	public static String STR_PESI_AFRO_TROPICAL_REGION = "Afro-tropical region";
1198
	public static String STR_PESI_AUSTRALIAN_REGION = "Australian region";
1199
	public static String STR_PESI_EAST_PALAEARCTIC = "East Palaearctic";
1200
	public static String STR_PESI_NEARCTIC_REGION = "Nearctic region";
1201
	public static String STR_PESI_NEOTROPICAL_REGION = "Neotropical region";
1202
	public static String STR_PESI_NEAR_EAST = "Near East";
1203
	public static String STR_PESI_ORIENTAL_REGION = "Oriental region";
1204
	public static String STR_PESI_EUROPEAN_MARINE_WATERS = "European Marine Waters";
1205
	public static String STR_PESI_MEDITERRANEAN_SEA = "Mediterranean Sea";
1206
	public static String STR_PESI_WHITE_SEA = "White Sea";
1207
	public static String STR_PESI_NORTH_SEA = "North Sea";
1208
	public static String STR_PESI_BALTIC_SEA = "Baltic Sea";
1209
	public static String STR_PESI_BLACK_SEA = "Black Sea";
1210
	public static String STR_PESI_BARENTS_SEA = "Barents Sea";
1211
	public static String STR_PESI_CASPIAN_SEA = "Caspian Sea";
1212
	public static String STR_PESI_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE = "Portuguese Exclusive Economic Zone";
1213
	public static String STR_PESI_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE = "Belgian Exclusive Economic Zone";
1214
	public static String STR_PESI_FRENCH_EXCLUSIVE_ECONOMIC_ZONE = "French Exclusive Economic Zone";
1215
	public static String STR_PESI_ENGLISH_CHANNEL = "English Channel";
1216
	public static String STR_PESI_ADRIATIC_SEA = "Adriatic Sea";
1217
	public static String STR_PESI_BISCAY_BAY = "Biscay Bay";
1218
	public static String STR_PESI_DUTCH_EXCLUSIVE_ECONOMIC_ZONE = "Dutch Exclusive Economic Zone";
1219
	public static String STR_PESI_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE = "United Kingdom Exclusive Economic Zone";
1220
	public static String STR_PESI_SPANISH_EXCLUSIVE_ECONOMIC_ZONE = "Spanish Exclusive Economic Zone";
1221
	public static String STR_PESI_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE = "Egyptian Exclusive Economic Zone";
1222
	public static String STR_PESI_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE = "Grecian Exclusive Economic Zone";
1223
	public static String STR_PESI_TIRRENO_SEA = "Tirreno Sea";
1224
	public static String STR_PESI_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE = "Icelandic Exclusive Economic Zone";
1225
	public static String STR_PESI_IRISH_EXCLUSIVE_ECONOMIC_ZONE = "Irish Exclusive economic Zone";
1226
	public static String STR_PESI_IRISH_SEA = "Irish Sea";
1227
	public static String STR_PESI_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE = "Italian Exclusive Economic Zone";
1228
	public static String STR_PESI_NORWEGIAN_SEA = "Norwegian Sea";
1229
	public static String STR_PESI_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE = "Moroccan Exclusive Economic Zone";
1230
	public static String STR_PESI_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE = "Norwegian Exclusive Economic Zone";
1231
	public static String STR_PESI_SKAGERRAK = "Skagerrak";
1232
	public static String STR_PESI_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE = "Tunisian Exclusive Economic Zone";
1233
	public static String STR_PESI_WADDEN_SEA = "Wadden Sea";
1234
	public static String STR_PESI_BELT_SEA = "Belt Sea";
1235
	public static String STR_PESI_MARMARA_SEA = "Marmara Sea";
1236
	public static String STR_PESI_SEA_OF_AZOV = "Sea of Azov";
1237
	public static String STR_PESI_AEGEAN_SEA = "Aegean Sea";
1238
	public static String STR_PESI_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE = "Bulgarian Exclusive Economic Zone";
1239
	public static String STR_PESI_SOUTH_BALTIC_PROPER = "South Baltic proper";
1240
	public static String STR_PESI_BALTIC_PROPER = "Baltic Proper";
1241
	public static String STR_PESI_NORTH_BALTIC_PROPER = "North Baltic proper";
1242
	public static String STR_PESI_ARCHIPELAGO_SEA = "Archipelago Sea";
1243
	public static String STR_PESI_BOTHNIAN_SEA = "Bothnian Sea";
1244
	public static String STR_PESI_GERMAN_EXCLUSIVE_ECONOMIC_ZONE = "German Exclusive Economic Zone";
1245
	public static String STR_PESI_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE = "Swedish Exclusive Economic Zone";
1246
	public static String STR_PESI_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE = "Ukrainian Exclusive Economic Zone";
1247
	public static String STR_PESI_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE = "Madeiran Exclusive Economic Zone";
1248
	public static String STR_PESI_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE = "Lebanese Exclusive Economic Zone";
1249
	public static String STR_PESI_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART = "Spanish Exclusive Economic Zone [Mediterranean part]";
1250
	public static String STR_PESI_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE = "Estonian Exclusive Economic Zone";
1251
	public static String STR_PESI_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE = "Croatian Exclusive Economic Zone";
1252
	public static String STR_PESI_BALEAR_SEA = "Balear Sea";
1253
	public static String STR_PESI_TURKISH_EXCLUSIVE_ECONOMIC_ZONE = "Turkish Exclusive Economic Zone";
1254
	public static String STR_PESI_DANISH_EXCLUSIVE_ECONOMIC_ZONE = "Danish Exclusive Economic Zone";
1255 1165

  
1256 1166
	
1257 1167
	// OccurrenceStatus
......
1273 1183
	public static String STR_STATUS_MANAGED = "Managed";
1274 1184
	public static String STR_STATUS_DOUBTFUL = "Doubtful";
1275 1185

  
1276
	
1277
	// QualityStatus
1278
	public static int CHECKED_BY_TAXONOMIC_EDITOR_INCLUDED_IN_ERMS_1_1 = 0;
1279
	public static int ADDED_BY_DATABASE_MANAGEMENT_TEAM = 2;
1280
	public static int CHECKED_BY_TAXONOMIC_EDITOR = 3;
1281
	public static int EDITED_BY_DATABASE_MANAGEMENT_TEAM = 4;
1282

  
1283
	public static String STR_CHECKED_BY_TAXONOMIC_EDITOR_INCLUDED_IN_ERMS_1_1 = "Checked by Taxonomic Editor: included in ERMS 1.1";
1284
	public static String STR_ADDED_BY_DATABASE_MANAGEMENT_TEAM = "Added by Database Management Team";
1285
	public static String STR_CHECKED_BY_TAXONOMIC_EDITOR = "Checked by Taxonomic Editor";
1286
	public static String STR_EDITED_BY_DATABASE_MANAGEMENT_TEAM = "Edited by Database Management Team";
1287 1186

  
1288 1187
	/**
1289
	 * 
1290
	 * @param qualityStatus
1188
	 * Converts the databaseString to its abbreviation if its known.
1189
	 * Otherwise the databaseString is returned.
1190
	 * @param databaseString
1291 1191
	 * @return
1292 1192
	 */
1293
	public static Integer qualityStatus2QualityStatusFk(String qualityStatus) {
1294
		Integer result = null;
1295
		if (qualityStatus == null) {
1296
			logger.error("The given QualityStatus is NULL.");
1297
			return null;
1298
		}
1299
		if (qualityStatus.equals(STR_CHECKED_BY_TAXONOMIC_EDITOR_INCLUDED_IN_ERMS_1_1)) {
1300
			return CHECKED_BY_TAXONOMIC_EDITOR_INCLUDED_IN_ERMS_1_1;
1301
		} else if (qualityStatus.equals(STR_ADDED_BY_DATABASE_MANAGEMENT_TEAM)) {
1302
			return ADDED_BY_DATABASE_MANAGEMENT_TEAM;
1303
		} else if (qualityStatus.equals(STR_CHECKED_BY_TAXONOMIC_EDITOR)) {
1304
			return CHECKED_BY_TAXONOMIC_EDITOR;
1305
		} else if (qualityStatus.equals(STR_EDITED_BY_DATABASE_MANAGEMENT_TEAM)) {
1306
			return EDITED_BY_DATABASE_MANAGEMENT_TEAM;
1193
	public static String databaseString2Abbreviation(String databaseString) {
1194
		String result = databaseString;
1195
		if (databaseString.equals("Fauna Europaea database")) {
1196
			result = "FaEu";
1307 1197
		}
1308 1198
		return result;
1309 1199
	}
1310 1200
	
1311
	
1312 1201
	/**
1313 1202
	 * Returns the OccurrenceStatusCache for a given PresenceAbsenceTerm.
1314 1203
	 * @param term
......
1317 1206
	 */
1318 1207
	public static String presenceAbsenceTerm2OccurrenceStatusCache(PresenceAbsenceTermBase<?> term) {
1319 1208
		String result = STR_STATUS_PRESENT; // TODO: What should be returned if a PresenceTerm/AbsenceTerm could not be translated to a datawarehouse occurrence status id?
1320
		if (term == null) {
1321
			logger.error("The given PresenceAbsenceTerm is NULL.");
1322
			return null;
1323
		}
1324 1209
		if (term.isInstanceOf(PresenceTerm.class)) {
1325 1210
			PresenceTerm presenceTerm = CdmBase.deproxy(term, PresenceTerm.class);
1326 1211
			if (presenceTerm.equals(PresenceTerm.PRESENT())) {
......
1333 1218
				result = STR_STATUS_NATURALISED;
1334 1219
			} else if (presenceTerm.equals(PresenceTerm.INVASIVE())) {
1335 1220
				result = STR_STATUS_INVASIVE;
1336
//			} else if (presenceTerm.equals(PresenceTerm.)) {
1337
//				result = STR_STATUS_MANAGED;
1338
//			} else if (presenceTerm.equals(PresenceTerm.)) {
1339
//				result = STR_STATUS_DOUBTFUL;
1221
			} else if (presenceTerm.equals(PresenceTerm.INTRODUCED_CULTIVATED())) {
1222
				result = STR_STATUS_MANAGED;
1223
			} else if (presenceTerm.equals(PresenceTerm.PRESENT_DOUBTFULLY())) {
1224
				result = STR_STATUS_DOUBTFUL;
1340 1225
			} else {
1341 1226
				logger.error("PresenceTerm could not be translated to datawarehouse occurrence status id: " + presenceTerm.getLabel());
1342 1227
			}
......
1360 1245
	 */
1361 1246
	public static Integer presenceAbsenceTerm2OccurrenceStatusId(PresenceAbsenceTermBase<?> term) {
1362 1247
		Integer result = STATUS_PRESENT; // TODO: What should be returned if a PresenceTerm/AbsenceTerm could not be translated to a datawarehouse occurrence status id?
1363
		if (term == null) {
1364
			logger.error("The given PresenceAbsenceTerm is NULL.");
1365
//			return null;
1366
			return result; // TODO: It crashes otherwise because the OccurrenceStatusId must not be NULL.
1367
		}
1368 1248
		if (term.isInstanceOf(PresenceTerm.class)) {
1369 1249
			PresenceTerm presenceTerm = CdmBase.deproxy(term, PresenceTerm.class);
1370 1250
			if (presenceTerm.equals(PresenceTerm.PRESENT())) {
......
1377 1257
				result = STATUS_NATURALISED;
1378 1258
			} else if (presenceTerm.equals(PresenceTerm.INVASIVE())) {
1379 1259
				result = STATUS_INVASIVE;
1380
//			} else if (presenceTerm.equals(PresenceTerm.)) {
1381
//				result = STATUS_MANAGED;
1382
//			} else if (presenceTerm.equals(PresenceTerm.)) {
1383
//				result = STATUS_DOUBTFUL;
1260
			} else if (presenceTerm.equals(PresenceTerm.CULTIVATED())) {
1261
				result = STATUS_MANAGED;
1262
			} else if (presenceTerm.equals(PresenceTerm.PRESENT_DOUBTFULLY())) {
1263
				result = STATUS_DOUBTFUL;
1384 1264
			} else {
1385 1265
				logger.error("PresenceTerm could not be translated to datawarehouse occurrence status id: " + presenceTerm.getLabel());
1386 1266
			}
......
1397 1277
	}
1398 1278
	
1399 1279
	/**
1400
	 * Returns the PESI Area Cache for an ERMS Area.
1280
	 * Returns the AreaCache for a given Area.
1401 1281
	 * @param area
1402 1282
	 * @return
1403 1283
	 */
1404
	public static String area2AreaCache(NamedArea ermsArea) {
1405
		if (ermsArea == null) {
1406
			logger.error("The given NamedArea is NULL.");
1284
	public static String area2AreaCache(NamedArea area) {
1285
		if (area == null) {
1407 1286
			return null;
1287
		} else if (area.isInstanceOf(TdwgArea.class)) {
1288
			TdwgArea tdwgArea = CdmBase.deproxy(area, TdwgArea.class);
1289

  
1290
			// TODO: Areas identified by the string "TODO" (for now) have to be identified correctly after additions have been made to the list of TdwgArea's
1291
			if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_EAST_AEGEAN_ISLANDS; }
1292
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("EAI-OO")) { return STR_AREA_GREEK_EAST_AEGEAN_ISLANDS; }
1293
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_TURKISH_EAST_AEGEAN_ISLANDS; }
1294
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("ALB-OO")) { return STR_AREA_ALBANIA; }
1295
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("AUT")) { return STR_AREA_AUSTRIA_WITH_LIECHTENSTEIN; }
1296
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("AUT-AU")) { return STR_AREA_AUSTRIA; }
1297
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("AUT-LI")) { return STR_AREA_LIECHTENSTEIN; }
1298
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("AZO-OO")) { return STR_AREA_AZORES; }
1299
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_CORVO; }
1300
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_FAIAL; }
1301
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_GRACIOSA; }
1302
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SAO_JORGE; }
1303
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_FLORES; }
1304
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SAO_MIGUEL; }
1305
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_PICO; }
1306
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SANTA_MARIA; }
1307
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_TERCEIRA; }
1308
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BGM")) { return STR_AREA_BELGIUM_WITH_LUXEMBOURG; }
1309
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BGM-BE")) { return STR_AREA_BELGIUM; }
1310
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BGM-LU")) { return STR_AREA_LUXEMBOURG; }
1311
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-BH")) { return STR_AREA_BOSNIA_HERZEGOVINA; }
1312
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BAL-OO")) { return STR_AREA_BALEARES; }
1313
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_IBIZA_WITH_FORMENTERA; }
1314
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_MALLORCA; }
1315
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_MENORCA; }
1316
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("GRB-OO")) { return STR_AREA_GREAT_BRITAIN; }
1317
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLT")) { return STR_AREA_BALTIC_STATES_ESTONIA_LATVIA_LITHUANIA_AND_KALININGRAD_REGION; }
1318
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BUL-OO")) { return STR_AREA_BULGARIA; }
1319
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLR-OO")) { return STR_AREA_BELARUS; }
1320
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CNY-OO")) { return STR_AREA_CANARY_ISLANDS; }
1321
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_GRAN_CANARIA; }
1322
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_FUERTEVENTURA_WITH_LOBOS; }
1323
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_GOMERA; }
1324
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_HIERRO; }
1325
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_LANZAROTE_WITH_GRACIOSA; }
1326
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_LA_PALMA; }
1327
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_TENERIFE; }
1328
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-MN")) { return STR_AREA_MONTENEGRO; }
1329
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("COR-OO")) { return STR_AREA_CORSE; }
1330
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("KRI-OO")) { return STR_AREA_CRETE_WITH_KARPATHOS_KASOS_AND_GAVDHOS; }
1331
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CZE-CZ")) { return STR_AREA_CZECH_REPUBLIC; }
1332
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-CR")) { return STR_AREA_CROATIA; }
1333
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CYP-OO")) { return STR_AREA_CYPRUS; }
1334
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CZE")) { return STR_AREA_FORMER_CZECHOSLOVAKIA; }
1335
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("DEN-OO")) { return STR_AREA_DENMARK_WITH_BORNHOLM; }
1336
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLT-ES")) { return STR_AREA_ESTONIA; }
1337
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FOR-OO")) { return STR_AREA_FAROE_ISLANDS; }
1338
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FIN-OO")) { return STR_AREA_FINLAND_WITH_AHVENANMAA; }
1339
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FRA")) { return STR_AREA_FRANCE; }
1340
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FRA-CI")) { return STR_AREA_CHANNEL_ISLANDS; }
1341
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FRA-FR")) { return STR_AREA_FRENCH_MAINLAND; }
1342
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FRA-MO")) { return STR_AREA_MONACO; }
1343
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("GER-OO")) { return STR_AREA_GERMANY; }
1344
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("GRC-OO")) { return STR_AREA_GREECE_WITH_CYCLADES_AND_MORE_ISLANDS; }
1345
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("IRE")) { return STR_AREA_IRELAND; }
1346
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("IRE-IR")) { return STR_AREA_REPUBLIC_OF_IRELAND; }
1347
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("IRE-NI")) { return STR_AREA_NORTHERN_IRELAND; }
1348
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SWI-OO")) { return STR_AREA_SWITZERLAND; }
1349
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("NET-OO")) { return STR_AREA_NETHERLANDS; }
1350
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SPA")) { return STR_AREA_SPAIN; }
1351
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SPA-AN")) { return STR_AREA_ANDORRA; }
1352
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SPA-GI")) { return STR_AREA_GIBRALTAR; }
1353
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SPA-SP")) { return STR_AREA_KINGDOM_OF_SPAIN; }
1354
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("HUN-OO")) { return STR_AREA_HUNGARY; }
1355
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("ICE-OO")) { return STR_AREA_ICELAND; }
1356
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("ITA")) { return STR_AREA_ITALY; }
1357
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("ITA-IT")) { return STR_AREA_ITALIAN_MAINLAND; }
1358
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("ITA-SM")) { return STR_AREA_SAN_MARINO; }
1359
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG")) { return STR_AREA_FORMER_JUGOSLAVIA; }
1360
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLT-LA")) { return STR_AREA_LATVIA; }
1361
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLT-LI")) { return STR_AREA_LITHUANIA; }
1362
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("POR-OO")) { return STR_AREA_PORTUGUESE_MAINLAND; }
1363
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("MDR-OO")) { return STR_AREA_MADEIRA; }
1364
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_DESERTAS; }
1365
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_MADEIRA; }
1366
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_PORTO_SANTO; }
1367
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-MA")) { return STR_AREA_THE_FORMER_JUGOSLAV_REPUBLIC_OF_MAKEDONIJA; }
1368
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("OKR-MO")) { return STR_AREA_MOLDOVA; }
1369
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("NOR-OO")) { return STR_AREA_NORWEGIAN_MAINLAND; }
1370
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("POL-OO")) { return STR_AREA_POLAND; }
1371
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_THE_RUSSIAN_FEDERATION; }
1372
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("WSB-OO")) { return STR_AREA_NOVAYA_ZEMLYA_AND_FRANZ_JOSEPH_LAND; }
1373
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("RUC-OO")) { return STR_AREA_CENTRAL_EUROPEAN_RUSSIA; }
1374
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("RUE-OO")) { return STR_AREA_EASTERN_EUROPEAN_RUSSIA; }
1375
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLT-KA")) { return STR_AREA_KALININGRAD; }
1376
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("RUN-OO")) { return STR_AREA_NORTHERN_EUROPEAN_RUSSIA; }
1377
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("RUW-OO")) { return STR_AREA_NORTHWEST_EUROPEAN_RUSSIA; }
1378
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("RUS-OO")) { return STR_AREA_SOUTH_EUROPEAN_RUSSIA; }
1379
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("ROM-OO")) { return STR_AREA_ROMANIA; }
1380
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_FORMER_USSR; }
1381
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_RUSSIA_BALTIC; }
1382
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_RUSSIA_CENTRAL; }
1383
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_RUSSIA_SOUTHEAST; }
1384
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_RUSSIA_NORTHERN; }
1385
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_RUSSIA_SOUTHWEST; }
1386
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SAR-OO")) { return STR_AREA_SARDEGNA; }
1387
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SVA-OO")) { return STR_AREA_SVALBARD_WITH_BJORNOYA_AND_JAN_MAYEN; }
1388
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SEL-OO")) { return STR_AREA_SELVAGENS_ISLANDS; }
1389
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SIC")) { return STR_AREA_SICILY_WITH_MALTA; }
1390
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SIC-MA")) { return STR_AREA_MALTA; }
1391
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SIC-SI")) { return STR_AREA_SICILY; }
1392
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CZE-SK")) { return STR_AREA_SLOVAKIA; }
1393
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-SL")) { return STR_AREA_SLOVENIA; }
1394
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SERBIA_WITH_MONTENEGRO; }
1395
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-SE")) { return STR_AREA_SERBIA_INCLUDING_VOJVODINA_AND_WITH_KOSOVO; }
1396
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SWE-OO")) { return STR_AREA_SWEDEN; }
1397
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TUE-OO")) { return STR_AREA_EUROPEAN_TURKEY; }
1398
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_UKRAINE_INCLUDING_CRIMEA; }
1399
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("KRY-OO")) { return STR_AREA_CRIMEA; }
1400
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("UKR-UK")) { return STR_AREA_UKRAINE; }
1401
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_GREEK_MAINLAND; }
1402
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_CRETE; }
1403
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_DODECANESE_ISLANDS; }
1404
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_CYCLADES_ISLANDS; }
1405
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NORTH_AEGEAN_ISLANDS; }
1406
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_VATICAN_CITY; }
1407
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_FRANZ_JOSEF_LAND; }
1408
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NOVAYA_ZEMLYA; }
1409
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_AZERBAIJAN_INCLUDING_NAKHICHEVAN; }
1410
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TCS-AZ")) { return STR_AREA_AZERBAIJAN; }
1411
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TCS-NA")) { return STR_AREA_NAKHICHEVAN; }
1412
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("ALG-OO")) { return STR_AREA_ALGERIA; }
1413
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_ARMENIA; }
1414
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_CAUCASUS_REGION; }
1415
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("EGY-OO")) { return STR_AREA_EGYPT; }
1416
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_GEORGIA; }
1417
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("PAL")) { return STR_AREA_ISRAEL_JORDAN; }
1418
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("PAL-IS")) { return STR_AREA_ISRAEL; }
1419
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("PAL-JO")) { return STR_AREA_JORDAN; }
1420
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("LBS-LB")) { return STR_AREA_LEBANON; }
1421
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("LBY-OO")) { return STR_AREA_LIBYA; }
1422
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("LBS")) { return STR_AREA_LEBANON_SYRIA; }
1423
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("MOR")) { return STR_AREA_MOROCCO; }
1424
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("NCS")) { return STR_AREA_NORTH_CAUCASUS; }
1425
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("SIN-OO")) { return STR_AREA_SINAI; }
1426
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("LBS-SY")) { return STR_AREA_SYRIA; }
1427
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TUN-OO")) { return STR_AREA_TUNISIA; }
1428
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TUR-OO")) { return STR_AREA_ASIATIC_TURKEY; }
1429
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_TURKEY; }
1430
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NORTHERN_AFRICA; }
1431
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_AFRO_TROPICAL_REGION; }
1432
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_AUSTRALIAN_REGION; }
1433
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_EAST_PALAEARCTIC; }
1434
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NEARCTIC_REGION; }
1435
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NEOTROPICAL_REGION; }
1436
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NEAR_EAST; }
1437
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_ORIENTAL_REGION; }
1438
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_EUROPEAN_MARINE_WATERS; }
1439
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_MEDITERRANEAN_SEA; }
1440
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_WHITE_SEA; }
1441
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NORTH_SEA; }
1442
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BALTIC_SEA; }
1443
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BLACK_SEA; }
1444
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BARENTS_SEA; }
1445
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_CASPIAN_SEA; }
1446
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE; }
1447
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1448
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_FRENCH_EXCLUSIVE_ECONOMIC_ZONE; }
1449
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_ENGLISH_CHANNEL; }
1450
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_ADRIATIC_SEA; }
1451
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BISCAY_BAY; }
1452
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_DUTCH_EXCLUSIVE_ECONOMIC_ZONE; }
1453
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE; }
1454
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SPANISH_EXCLUSIVE_ECONOMIC_ZONE; }
1455
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1456
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1457
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_TIRRENO_SEA; }
1458
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE; }
1459
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_IRISH_EXCLUSIVE_ECONOMIC_ZONE; }
1460
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_IRISH_SEA; }
1461
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1462
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NORWEGIAN_SEA; }
1463
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE; }
1464
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1465
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SKAGERRAK; }
1466
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1467
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_WADDEN_SEA; }
1468
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BELT_SEA; }
1469
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_MARMARA_SEA; }
1470
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SEA_OF_AZOV; }
1471
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_AEGEAN_SEA; }
1472
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1473
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SOUTH_BALTIC_PROPER; }
1474
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BALTIC_PROPER; }
1475
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_NORTH_BALTIC_PROPER; }
1476
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_ARCHIPELAGO_SEA; }
1477
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BOTHNIAN_SEA; }
1478
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_GERMAN_EXCLUSIVE_ECONOMIC_ZONE; }
1479
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE; }
1480
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1481
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE; }
1482
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE; }
1483
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART; }
1484
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1485
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE; }
1486
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_BALEAR_SEA; }
1487
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_TURKISH_EXCLUSIVE_ECONOMIC_ZONE; }
1488
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return STR_AREA_DANISH_EXCLUSIVE_ECONOMIC_ZONE; }
1489
			else {
1490
				logger.error("Unknown TdwgArea Area: " + area.getTitleCache());
1491
				return null; // Actually the export has to stop here because AreaFk's are not allowed to be NULL.
1492
			}
1408 1493
		}
1409
		// cdm_test_andreas2
1410
		String result = null;
1411
		String areaName = ermsArea.getRepresentation(Language.DEFAULT()).getLabel();
1412
		if (areaName.equalsIgnoreCase(STR_ERMS_EUROPEAN_MARINE_WATERS)) { result = STR_PESI_EUROPEAN_MARINE_WATERS;
1413
		} else if (areaName.equalsIgnoreCase(STR_ERMS_MEDITERRANEAN_SEA)) { result = STR_PESI_MEDITERRANEAN_SEA;
1414
		} else if (areaName.equalsIgnoreCase(STR_ERMS_WHITE_SEA)) { result = STR_PESI_WHITE_SEA;
1415
		} else if (areaName.equalsIgnoreCase(STR_ERMS_NORTH_SEA)) { result = STR_PESI_NORTH_SEA;
1416
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BALTIC_SEA)) { result = STR_PESI_BALTIC_SEA;
1417
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BLACK_SEA)) { result = STR_PESI_BLACK_SEA;
1418
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BARENTS_SEA)) { result = STR_PESI_BARENTS_SEA;
1419
		} else if (areaName.equalsIgnoreCase(STR_ERMS_CASPIAN_SEA)) { result = STR_PESI_CASPIAN_SEA;
1420
		} else if (areaName.equalsIgnoreCase(STR_ERMS_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_PORTUGUESE_EXCLUSIVE_ECONOMIC_ZONE;
1421
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_BELGIAN_EXCLUSIVE_ECONOMIC_ZONE;
1422
		} else if (areaName.equalsIgnoreCase(STR_ERMS_FRENCH_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_FRENCH_EXCLUSIVE_ECONOMIC_ZONE;
1423
		} else if (areaName.equalsIgnoreCase(STR_ERMS_ENGLISH_CHANNEL)) { result = STR_PESI_ENGLISH_CHANNEL;
1424
		} else if (areaName.equalsIgnoreCase(STR_ERMS_ADRIATIC_SEA)) { result = STR_PESI_ADRIATIC_SEA;
1425
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BISCAY_BAY)) { result = STR_PESI_BISCAY_BAY;
1426
		} else if (areaName.equalsIgnoreCase(STR_ERMS_DUTCH_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_DUTCH_EXCLUSIVE_ECONOMIC_ZONE;
1427
		} else if (areaName.equalsIgnoreCase(STR_ERMS_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_UNITED_KINGDOM_EXCLUSIVE_ECONOMIC_ZONE;
1428
		} else if (areaName.equalsIgnoreCase(STR_ERMS_SPANISH_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_SPANISH_EXCLUSIVE_ECONOMIC_ZONE;
1429
		} else if (areaName.equalsIgnoreCase(STR_ERMS_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_EGYPTIAN_EXCLUSIVE_ECONOMIC_ZONE;
1430
		} else if (areaName.equalsIgnoreCase(STR_ERMS_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_GRECIAN_EXCLUSIVE_ECONOMIC_ZONE;
1431
		} else if (areaName.equalsIgnoreCase(STR_ERMS_TIRRENO_SEA)) { result = STR_PESI_TIRRENO_SEA;
1432
		} else if (areaName.equalsIgnoreCase(STR_ERMS_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_ICELANDIC_EXCLUSIVE_ECONOMIC_ZONE;
1433
		} else if (areaName.equalsIgnoreCase(STR_ERMS_IRISH_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_IRISH_EXCLUSIVE_ECONOMIC_ZONE;
1434
		} else if (areaName.equalsIgnoreCase(STR_ERMS_IRISH_SEA)) { result = STR_PESI_IRISH_SEA;
1435
		} else if (areaName.equalsIgnoreCase(STR_ERMS_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_ITALIAN_EXCLUSIVE_ECONOMIC_ZONE;
1436
		} else if (areaName.equalsIgnoreCase(STR_ERMS_NORWEGIAN_SEA)) { result = STR_PESI_NORWEGIAN_SEA;
1437
		} else if (areaName.equalsIgnoreCase(STR_ERMS_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_MOROCCAN_EXCLUSIVE_ECONOMIC_ZONE;
1438
		} else if (areaName.equalsIgnoreCase(STR_ERMS_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_NORWEGIAN_EXCLUSIVE_ECONOMIC_ZONE;
1439
		} else if (areaName.equalsIgnoreCase(STR_ERMS_SKAGERRAK)) { result = STR_PESI_SKAGERRAK;
1440
		} else if (areaName.equalsIgnoreCase(STR_ERMS_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_TUNISIAN_EXCLUSIVE_ECONOMIC_ZONE;
1441
		} else if (areaName.equalsIgnoreCase(STR_ERMS_WADDEN_SEA)) { result = STR_PESI_WADDEN_SEA;
1442
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BELT_SEA)) { result = STR_PESI_BELT_SEA;
1443
		} else if (areaName.equalsIgnoreCase(STR_ERMS_MARMARA_SEA)) { result = STR_PESI_MARMARA_SEA;
1444
		} else if (areaName.equalsIgnoreCase(STR_ERMS_SEA_OF_AZOV)) { result = STR_PESI_SEA_OF_AZOV;
1445
		} else if (areaName.equalsIgnoreCase(STR_ERMS_AEGEAN_SEA)) { result = STR_PESI_AEGEAN_SEA;
1446
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_BULGARIAN_EXCLUSIVE_ECONOMIC_ZONE;
1447
		} else if (areaName.equalsIgnoreCase(STR_ERMS_SOUTH_BALTIC_PROPER)) { result = STR_PESI_SOUTH_BALTIC_PROPER;
1448
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BALTIC_PROPER)) { result = STR_PESI_BALTIC_PROPER;
1449
		} else if (areaName.equalsIgnoreCase(STR_ERMS_NORTH_BALTIC_PROPER)) { result = STR_PESI_NORTH_BALTIC_PROPER;
1450
		} else if (areaName.equalsIgnoreCase(STR_ERMS_ARCHIPELAGO_SEA)) { result = STR_PESI_ARCHIPELAGO_SEA;
1451
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BOTHNIAN_SEA)) { result = STR_PESI_BOTHNIAN_SEA;
1452
		} else if (areaName.equalsIgnoreCase(STR_ERMS_GERMAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_GERMAN_EXCLUSIVE_ECONOMIC_ZONE;
1453
		} else if (areaName.equalsIgnoreCase(STR_ERMS_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_SWEDISH_EXCLUSIVE_ECONOMIC_ZONE;
1454
		} else if (areaName.equalsIgnoreCase(STR_ERMS_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_UKRAINIAN_EXCLUSIVE_ECONOMIC_ZONE;
1455
		} else if (areaName.equalsIgnoreCase(STR_ERMS_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_MADEIRAN_EXCLUSIVE_ECONOMIC_ZONE;
1456
		} else if (areaName.equalsIgnoreCase(STR_ERMS_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_LEBANESE_EXCLUSIVE_ECONOMIC_ZONE;
1457
		} else if (areaName.equalsIgnoreCase(STR_ERMS_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART)) { result = STR_PESI_SPANISH_EXCLUSIVE_ECONOMIC_ZONE_MEDITERRANEAN_PART;
1458
		} else if (areaName.equalsIgnoreCase(STR_ERMS_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_ESTONIAN_EXCLUSIVE_ECONOMIC_ZONE;
1459
		} else if (areaName.equalsIgnoreCase(STR_ERMS_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_CROATIAN_EXCLUSIVE_ECONOMIC_ZONE;
1460
		} else if (areaName.equalsIgnoreCase(STR_ERMS_BALEAR_SEA)) { result = STR_PESI_BALEAR_SEA;
1461
		} else if (areaName.equalsIgnoreCase(STR_ERMS_TURKISH_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_TURKISH_EXCLUSIVE_ECONOMIC_ZONE;
1462
		} else if (areaName.equalsIgnoreCase(STR_ERMS_DANISH_EXCLUSIVE_ECONOMIC_ZONE)) { result = STR_PESI_DANISH_EXCLUSIVE_ECONOMIC_ZONE;
1463
		} else {
1464
			// Actually the export has to stop here because AreaFk's are not allowed to be NULL.
1465
		}
1466
		return result;
1494
		return null; // Actually the export has to stop here because AreaFk's are not allowed to be NULL.
1495
		
1467 1496
	}
1468 1497
	
1469 1498
	/**
1470
	 * Returns the PESI Area Identifier for an ERMS Area.
1499
	 * Returns the AreaId for a given Area.
1471 1500
	 * @param area
1472 1501
	 * @return
1473 1502
	 */
1474
	public static Integer area2AreaId(NamedArea ermsArea) {
1475
		if (ermsArea == null) {
1476
			logger.error("The given NamedArea is NULL.");
1503
	public static Integer area2AreaId(NamedArea area) {
1504
		if (area == null) {
1477 1505
			return null;
1506
		} else if (area.isInstanceOf(TdwgArea.class)) {
1507
			TdwgArea tdwgArea = CdmBase.deproxy(area, TdwgArea.class);
1508

  
1509
			// TODO: Areas identified by the string "TODO" (for now) have to be identified correctly after additions have been made to the list of TdwgArea's
1510
			if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_EAST_AEGEAN_ISLANDS; }
1511
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("EAI-OO")) { return AREA_GREEK_EAST_AEGEAN_ISLANDS; }
1512
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_TURKISH_EAST_AEGEAN_ISLANDS; }
1513
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("ALB-OO")) { return AREA_ALBANIA; }
1514
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("AUT")) { return AREA_AUSTRIA_WITH_LIECHTENSTEIN; }
1515
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("AUT-AU")) { return AREA_AUSTRIA; }
1516
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("AUT-LI")) { return AREA_LIECHTENSTEIN; }
1517
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("AZO-OO")) { return AREA_AZORES; }
1518
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_CORVO; }
1519
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_FAIAL; }
1520
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_GRACIOSA; }
1521
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_SAO_JORGE; }
1522
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_FLORES; }
1523
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_SAO_MIGUEL; }
1524
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_PICO; }
1525
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_SANTA_MARIA; }
1526
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_TERCEIRA; }
1527
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BGM")) { return AREA_BELGIUM_WITH_LUXEMBOURG; }
1528
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BGM-BE")) { return AREA_BELGIUM; }
1529
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BGM-LU")) { return AREA_LUXEMBOURG; }
1530
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-BH")) { return AREA_BOSNIA_HERZEGOVINA; }
1531
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BAL-OO")) { return AREA_BALEARES; }
1532
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_IBIZA_WITH_FORMENTERA; }
1533
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_MALLORCA; }
1534
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_MENORCA; }
1535
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("GRB-OO")) { return AREA_GREAT_BRITAIN; }
1536
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLT")) { return AREA_BALTIC_STATES_ESTONIA_LATVIA_LITHUANIA_AND_KALININGRAD_REGION; }
1537
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BUL-OO")) { return AREA_BULGARIA; }
1538
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLR-OO")) { return AREA_BELARUS; }
1539
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CNY-OO")) { return AREA_CANARY_ISLANDS; }
1540
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_GRAN_CANARIA; }
1541
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_FUERTEVENTURA_WITH_LOBOS; }
1542
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_GOMERA; }
1543
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_HIERRO; }
1544
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_LANZAROTE_WITH_GRACIOSA; }
1545
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_LA_PALMA; }
1546
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("TODO")) { return AREA_TENERIFE; }
1547
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-MN")) { return AREA_MONTENEGRO; }
1548
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("COR-OO")) { return AREA_CORSE; }
1549
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("KRI-OO")) { return AREA_CRETE_WITH_KARPATHOS_KASOS_AND_GAVDHOS; }
1550
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CZE-CZ")) { return AREA_CZECH_REPUBLIC; }
1551
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("YUG-CR")) { return AREA_CROATIA; }
1552
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CYP-OO")) { return AREA_CYPRUS; }
1553
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("CZE")) { return AREA_FORMER_CZECHOSLOVAKIA; }
1554
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("DEN-OO")) { return AREA_DENMARK_WITH_BORNHOLM; }
1555
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("BLT-ES")) { return AREA_ESTONIA; }
1556
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FOR-OO")) { return AREA_FAROE_ISLANDS; }
1557
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FIN-OO")) { return AREA_FINLAND_WITH_AHVENANMAA; }
1558
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FRA")) { return AREA_FRANCE; }
1559
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FRA-CI")) { return AREA_CHANNEL_ISLANDS; }
1560
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FRA-FR")) { return AREA_FRENCH_MAINLAND; }
1561
			else if ((tdwgArea.getRepresentation(Language.DEFAULT()).getAbbreviatedLabel()).equals("FRA-MO")) { return AREA_MONACO; }
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff