-
Notifications
You must be signed in to change notification settings - Fork 4
/
NWS-zones-inc.txt
8334 lines (8330 loc) · 595 KB
/
NWS-zones-inc.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
# combined Forecast, County, Marine and Fire zones index lookup
# for use by NWS_Land_Alerts.php placefile generator
# Author: Ken True - [email protected]
# generated Sat, 02 Sep 2023 20:04:35 -0700
# by make-NWS-zones-index.php - V1.00 - 02-Sep-2023
#
# created from ./shapefiles/z_19se23.shp updated Tue, 15 Aug 2023 07:23:58 -0700.
# use key '_F' for ./shapefiles/z_19se23.shp lookups
# 3957 F zones added with 0 duplicate zones appended.
# created from ./shapefiles/c_19se23.shp updated Thu, 29 Jun 2023 07:51:46 -0700.
# use key '_C' for ./shapefiles/c_19se23.shp lookups
# 3269 C zones added with 0 duplicate zones appended.
# created from ./shapefiles/mz19se23.shp updated Tue, 01 Aug 2023 09:21:10 -0700.
# use key '_M' for ./shapefiles/mz19se23.shp lookups
# 565 M zones added with 0 duplicate zones appended.
# created from ./shapefiles/fz19se23.shp updated Tue, 15 Aug 2023 07:24:00 -0700.
# use key '_W' for ./shapefiles/fz19se23.shp lookups
# 3483 W zones added with 2971 duplicate zones appended.
# '<zone>' => '<DB>|<index>|<name>|<lat>|<long>[|<TZcode>]',
$zoneLookup = array (
'AKC013' => 'C|3331|Aleutians East, AK|55.4039|-161.8631|A',
'AKC016' => 'C|3332|Aleutians West, AK|52.8883|-111.2564|Ah',
'AKC020' => 'C|3342|Anchorage, AK|61.1501|-149.1067|A',
'AKC050' => 'C|3338|Bethel, AK|60.9209|-159.7736|A',
'AKC060' => 'C|3347|Bristol Bay, AK|58.7423|-156.7013|A',
'AKC063' => 'C|3357|Chugach, AK|60.7356|-145.7945|A',
'AKC066' => 'C|3358|Copper River, AK|61.8843|-143.9685|A',
'AKC068' => 'C|3334|Denali, AK|63.6734|-150.0089|A',
'AKC070' => 'C|3343|Dillingham, AK|59.8021|-158.2119|A',
'AKC090' => 'C|3339|Fairbanks North Star, AK|64.8084|-146.5630|A',
'AKC100' => 'C|3350|Haines, AK|59.1216|-135.5056|A',
'AKC105' => 'C|3360|Hoonah-Angoon, AK|58.2893|-135.6370|A',
'AKC110' => 'C|3351|Juneau, AK|58.4596|-134.1803|A',
'AKC122' => 'C|3344|Kenai Peninsula, AK|60.2619|-151.5667|A',
'AKC130' => 'C|3353|Ketchikan Gateway, AK|55.5941|-130.9276|A',
'AKC150' => 'C|3348|Kodiak Island, AK|57.6777|-153.8060|A',
'AKC158' => 'C|3337|Kusilvak, AK|62.1552|-163.3711|A',
'AKC164' => 'C|3333|Lake and Peninsula, AK|58.6478|-156.1834|A',
'AKC170' => 'C|3341|Matanuska-Susitna, AK|62.3160|-149.5701|A',
'AKC180' => 'C|3336|Nome, AK|64.9107|-164.0308|A',
'AKC185' => 'C|3346|North Slope, AK|69.3094|-153.4534|A',
'AKC188' => 'C|3345|Northwest Arctic, AK|67.0626|-159.7085|A',
'AKC195' => 'C|3359|Petersburg Borough, AK|57.1338|-132.9279|A',
'AKC198' => 'C|3354|Prince of Wales-Hyder, AK|55.8038|-133.0069|A',
'AKC220' => 'C|3352|Sitka, AK|57.2356|-135.3008|A',
'AKC230' => 'C|3356|Skagway, AK|59.5602|-135.3379|A',
'AKC240' => 'C|3340|Southeast Fairbanks, AK|63.8771|-143.2062|A',
'AKC275' => 'C|3355|Wrangell, AK|56.3308|-132.0053|A',
'AKC282' => 'C|3349|Yakutat, AK|59.9000|-140.3977|A',
'AKC290' => 'C|3335|Yukon-Koyukuk, AK|65.5095|-151.3894|A',
'AKZ101' => 'W|3487|Anchorage|61.1948|-149.5182|A',
'AKZ102' => 'F|4031|Anchorage|61.2292|-149.3466|A',
'AKZ103' => 'F|4030|East Turnagain Arm|61.0377|-148.7761|A',
'AKZ111' => 'W|3493|Matanuska Valley|61.5886|-149.1657|A',
'AKZ112' => 'F|4032|Matanuska Valley|61.6518|-149.2037|A',
'AKZ121' => 'F|4034|Western Kenai Peninsula|60.3254|-150.7091|A W|3495|Western Kenai Peninsula|60.3254|-150.7091|A',
'AKZ125' => 'W|3496|Western Prince William Sound|60.3981|-148.9950|A',
'AKZ126' => 'F|4029|Western Prince William Sound|60.3278|-149.0357|A',
'AKZ131' => 'W|3503|Northeast Prince William Sound|61.1552|-146.3607|A',
'AKZ132' => 'F|4028|Northeast Prince William Sound|61.1100|-146.3052|A',
'AKZ135' => 'F|4027|Southeast Prince William Sound|60.5285|-144.9344|A W|3502|Southeast Prince William Sound|60.5285|-144.9345|A',
'AKZ141' => 'W|3501|Copper River Basin|61.9478|-144.7634|A',
'AKZ142' => 'F|3961|Copper River Basin|61.9431|-144.7751|A',
'AKZ145' => 'F|4033|Susitna Valley|62.0906|-150.7326|A W|3497|Susitna Valley|62.0903|-150.7348|A',
'AKZ152' => 'F|3960|Lower Kuskokwim Valley|61.4396|-156.4808|A',
'AKZ153' => 'W|3490|Middle Kuskokwim Valley|61.3442|-157.7559|A',
'AKZ155' => 'F|4037|Kuskokwim Delta|60.6404|-162.6305|A W|3491|Kuskokwim Delta|60.6404|-162.6305|A',
'AKZ161' => 'F|4036|Bristol Bay|59.2983|-157.2452|A',
'AKZ162' => 'W|3492|Greater Bristol Bay|59.1219|-157.6650|A',
'AKZ163' => 'W|3504|Western Alaska Range|61.1183|-154.2203|A',
'AKZ171' => 'F|4035|Kodiak Island|58.2910|-154.1630|A W|3494|Kodiak Island|58.2910|-154.1630|A',
'AKZ181' => 'F|4038|Alaska Peninsula|55.6116|-161.2034|A W|3489|Alaska Peninsula|55.6116|-161.2034|A',
'AKZ185' => 'F|4040|Eastern Aleutians|53.5983|-167.2049|A W|3498|Eastern Aleutians|53.5983|-167.2049|A',
'AKZ187' => 'F|4041|Central Aleutians|52.0606|-175.0778|h W|3500|Central Aleutians|52.0606|-175.0778|h',
'AKZ191' => 'F|4042|Western Aleutians|52.3658|175.5395|h W|3499|Western Aleutians|52.3658|175.5398|h',
'AKZ195' => 'F|4039|Pribilof Islands|56.9151|-169.9829|A W|3488|Pribilof Islands|56.9151|-169.9829|A',
'AKZ317' => 'F|4026|City and Borough of Yakutat|59.8191|-140.2230|A W|3505|City and Borough of Yakutat|59.9001|-140.3985|A',
'AKZ318' => 'F|3962|Municipality of Skagway|59.5604|-135.3381|A W|3506|Municipality of Skagway|59.5604|-135.3381|A',
'AKZ319' => 'F|4043|Haines Borough and Klukwan|59.1217|-135.5056|A W|3507|Haines Borough and Klukwan|59.1217|-135.5056|A',
'AKZ320' => 'F|4024|Glacier Bay|58.7916|-136.3756|A W|3508|Glacier Bay|58.7916|-136.3756|A',
'AKZ321' => 'F|4025|Eastern Chichagof Island|58.0323|-135.5306|A W|3510|Eastern Chichagof Island|58.0323|-135.5306|A',
'AKZ322' => 'F|4023|Cape Fairweather to Lisianski Strait|58.5852|-137.2326|A W|3509|Cape Fairweather to Lisianski Strait|58.3873|-136.9108|A',
'AKZ323' => 'F|4022|City and Borough of Sitka|57.2368|-135.3017|A W|3513|City and Borough of Sitka|57.2369|-135.3018|A',
'AKZ324' => 'F|4045|Admiralty Island|57.7039|-134.0848|A W|3512|Admiralty Island|57.7039|-134.0848|A',
'AKZ325' => 'F|4044|City and Borough of Juneau|58.4596|-134.1803|A W|3511|City and Borough of Juneau|58.4596|-134.1803|A',
'AKZ326' => 'F|4020|Petersburg Borough|57.1338|-132.9279|A W|3515|Petersburg Borough|57.1338|-132.9279|A',
'AKZ327' => 'F|4021|Western Kupreanof and Kuiu Island|56.6439|-133.8988|A W|3514|Western Kupreanof and Kuiu Island|56.6439|-133.8989|A',
'AKZ328' => 'F|4018|Prince of Wales Island|55.5002|-132.8808|A W|3517|Prince of Wales Island|55.5002|-132.8808|A',
'AKZ329' => 'F|4019|City and Borough of Wrangell|56.3307|-132.0053|A W|3516|City and Borough of Wrangell|56.3308|-132.0053|A',
'AKZ330' => 'F|4015|Ketchikan Gateway Borough|55.5941|-130.9276|A W|3518|Ketchikan Gateway Borough|55.5941|-130.9276|A',
'AKZ331' => 'F|4017|City of Hyder|55.9569|-130.1733|A W|3520|City of Hyder|55.9569|-130.1733|A',
'AKZ332' => 'F|4016|Annette Island|55.1277|-131.4853|A W|3519|Annette Island|55.1277|-131.4853|A',
'AKZ801' => 'F|3994|Western Arctic Coast|69.0125|-164.1064|A W|3553|Western Arctic Coast|69.0125|-164.1064|A',
'AKZ802' => 'F|4014|Northwest Arctic Coast|70.3019|-159.5080|A W|3573|Northwest Arctic Coast|70.3019|-159.5080|A',
'AKZ803' => 'F|3986|Northern Arctic Coast|70.6873|-155.3712|A W|3545|Northern Arctic Coast|70.6873|-155.3712|A',
'AKZ804' => 'F|3988|Central Beaufort Sea Coast|70.2069|-149.5617|A W|3547|Central Beaufort Sea Coast|70.2069|-149.5617|A',
'AKZ805' => 'F|3987|Eastern Beaufort Sea Coast|69.8543|-144.0064|A W|3546|Eastern Beaufort Sea Coast|69.8543|-144.0064|A',
'AKZ806' => 'F|3990|Western Arctic Plains|69.4448|-157.0400|A W|3549|Western Arctic Plains|69.4448|-157.0400|A',
'AKZ807' => 'F|3995|Howard Pass and the Delong Mountains|68.4515|-159.5118|A W|3554|Howard Pass and the Delong Mountains|68.4515|-159.5118|A',
'AKZ808' => 'F|3991|Central Arctic Plains|69.3952|-150.0441|A W|3550|Central Arctic Plains|69.3952|-150.0441|A',
'AKZ809' => 'F|3992|Central Brooks Range|68.4522|-151.0083|A W|3551|Central Brooks Range|68.4522|-151.0083|A',
'AKZ810' => 'F|3989|Romanzof Mountains|68.9538|-144.9059|A W|3548|Romanzof Mountains|68.9538|-144.9059|A',
'AKZ811' => 'F|3969|South Slopes Of The Eastern Brooks Range|67.8471|-144.9201|A W|3528|South Slopes Of The Eastern Brooks Range|67.8471|-144.9201|A',
'AKZ812' => 'F|4011|South Slopes Of The Central Brooks Range|67.5646|-151.9607|A W|3570|South Slopes Of The Central Brooks Range|67.5646|-151.9607|A',
'AKZ813' => 'F|3984|South Slopes of the Western Brooks Range|67.6243|-157.2881|A W|3543|South Slopes of the Western Brooks Range|67.6243|-157.2881|A',
'AKZ814' => 'F|3985|Noatak Valley|67.6896|-161.9337|A W|3544|Noatak Valley|67.6896|-161.9337|A',
'AKZ815' => 'F|3998|Kivalina and Red Dog Dock|67.6038|-164.1586|A W|3557|Kivalina and Red Dog Dock|67.6038|-164.1586|A',
'AKZ816' => 'F|3997|Lower Kobuk Valley|66.7012|-160.5806|A W|3556|Lower Kobuk Valley|66.7012|-160.5806|A',
'AKZ817' => 'F|3996|Baldwin Peninsula|66.5619|-161.7133|A W|3555|Baldwin Peninsula|66.5619|-161.7133|A',
'AKZ818' => 'F|3983|Northern Seward Peninsula|65.8650|-161.6971|A W|3542|Northern Seward Peninsula|65.8650|-161.6971|A',
'AKZ819' => 'F|3993|Upper Kobuk Valleys|66.7750|-157.3858|A W|3552|Upper Kobuk Valleys|66.7750|-157.3858|A',
'AKZ820' => 'F|3974|Shishmaref|66.1170|-165.8670|A W|3533|Shishmaref|66.1170|-165.8670|A',
'AKZ821' => 'F|4013|Bering Strait Coast|65.4254|-166.6301|A W|3572|Bering Strait Coast|65.4254|-166.6301|A',
'AKZ822' => 'F|3971|Southern Seward Peninsula Coast|64.6146|-164.4871|A W|3530|Southern Seward Peninsula Coast|64.6146|-164.4871|A',
'AKZ823' => 'F|3972|Interior Seward Peninsula|65.2674|-163.7888|A W|3531|Interior Seward Peninsula|65.2674|-163.7888|A',
'AKZ824' => 'F|3973|Eastern Norton Sound and Nulato Hills|64.2108|-160.8840|A W|3532|Eastern Norton Sound and Nulato Hills|64.2108|-160.8840|A',
'AKZ825' => 'F|3975|Yukon Delta Coast|62.1513|-164.2464|A W|3534|Yukon Delta Coast|62.1513|-164.2464|A',
'AKZ826' => 'F|3976|Lower Yukon River|62.1612|-162.0465|A W|3535|Lower Yukon River|62.1612|-162.0465|A',
'AKZ827' => 'F|4012|St Lawrence Island|63.3895|-170.3421|A W|3571|St Lawrence Island|63.3895|-170.3421|A',
'AKZ828' => 'F|4010|Lower Koyukuk Valley|65.6681|-156.8481|A W|3569|Lower Koyukuk Valley|65.6681|-156.8481|A',
'AKZ829' => 'F|3966|Middle Yukon Valley|64.4694|-156.7760|A W|3525|Middle Yukon Valley|64.4694|-156.7760|A',
'AKZ830' => 'F|3970|Lower Yukon and Innoko Valleys|63.0674|-158.3290|A W|3529|Lower Yukon and Innoko Valleys|63.0672|-158.3293|A',
'AKZ831' => 'F|3967|Upper Koyukuk Valley|66.3527|-152.8907|A W|3526|Upper Koyukuk Valley|66.3527|-152.8907|A',
'AKZ832' => 'F|3999|Dalton Highway Summits|66.3044|-150.2855|A W|3558|Dalton Highway Summits|66.3044|-150.2855|A',
'AKZ833' => 'F|3968|Yukon Flats|66.5038|-144.6111|A W|3527|Yukon Flats|66.5038|-144.6111|A',
'AKZ834' => 'F|4000|White Mountains and High Terrain South of the Yukon River|65.4537|-146.8278|A W|3559|White Mountains and High Terrain South of the Yukon River|65.4537|-146.8278|A',
'AKZ835' => 'F|3982|Fortymile Country|64.3510|-142.5474|A W|3541|Fortymile Country|64.3510|-142.5474|A',
'AKZ836' => 'F|4007|Upper Tanana Valley|63.0016|-142.5280|A W|3566|Upper Tanana Valley|63.0015|-142.5279|A',
'AKZ837' => 'F|3980|Delta Junction|64.0671|-145.6603|A W|3539|Delta Junction|63.9931|-145.4601|A',
'AKZ838' => 'F|3979|Upper Chena River Valley|64.8329|-145.4109|A W|3538|Upper Chena River Valley|64.8329|-145.4109|A',
'AKZ839' => 'F|3977|Tanana Flats|64.4858|-147.5800|A W|3536|Tanana Flats|64.4181|-147.2984|A',
'AKZ840' => 'F|4002|Eielson AFB and Salcha|64.5731|-146.8032|A W|3561|Eielson AFB and Salcha|64.5731|-146.8032|A',
'AKZ841' => 'F|4001|Goldstream Valley and Nenana Hills|64.8226|-148.4043|A W|3560|Goldstream Valley and Nenana Hills|64.8226|-148.4043|A',
'AKZ842' => 'F|3978|Chatanika River Valley|65.1455|-147.4888|A W|3537|Chatanika River Valley|65.1455|-147.4888|A',
'AKZ843' => 'F|4003|Two Rivers|64.9150|-146.8659|A W|3562|Two Rivers|64.9150|-146.8659|A',
'AKZ844' => 'F|4004|Fairbanks Metro Area|64.8465|-147.6800|A W|3563|Fairbanks Metro Area|64.8465|-147.6800|A',
'AKZ845' => 'F|4005|Nenana|64.5373|-148.7871|A W|3564|Nenana|64.5373|-148.7871|A',
'AKZ846' => 'F|3964|Central Interior|64.7511|-151.8283|A W|3523|Central Interior|64.7511|-151.8283|A',
'AKZ847' => 'F|3963|Northern Denali Borough|63.8161|-150.0994|A W|3522|Northern Denali Borough|63.8161|-150.0994|A',
'AKZ848' => 'F|4006|Southern Denali Borough|63.3248|-149.7848|A W|3565|Southern Denali Borough|63.3257|-149.7800|A',
'AKZ849' => 'F|3981|Eastern Alaska Range North of Trims Camp|63.7236|-145.7753|A W|3540|Eastern Alaska Range North of Trims Camp|63.7161|-145.7758|A',
'AKZ850' => 'F|4008|Eastern Alaska Range South of Trims Camp|63.3137|-145.1121|A W|3567|Eastern Alaska Range South of Trims Camp|63.3142|-145.1156|A',
'AKZ851' => 'F|4009|North Slopes of the Western Alaska Range|62.5083|-153.8608|A W|3568|North Slopes of the Western Alaska Range|62.5082|-153.8608|A',
'AKZ852' => 'F|3965|Upper Kuskokwim Valley|62.8537|-155.2228|A W|3524|Upper Kuskokwim Valley|62.8537|-155.2225|A',
'ALC001' => 'C|1320|Autauga, AL|32.5349|-86.6428|C',
'ALC003' => 'C|1561|Baldwin, AL|30.7278|-87.7171|C',
'ALC005' => 'C|1264|Barbour, AL|31.8696|-85.3932|C',
'ALC007' => 'C|1263|Bibb, AL|32.9986|-87.1264|C',
'ALC009' => 'C|1262|Blount, AL|33.9809|-86.5674|C',
'ALC011' => 'C|1261|Bullock, AL|32.1005|-85.7161|C',
'ALC013' => 'C|1260|Butler, AL|31.7524|-86.6803|C',
'ALC015' => 'C|1259|Calhoun, AL|33.7714|-85.8261|C',
'ALC017' => 'C|1549|Chambers, AL|32.9144|-85.3920|C',
'ALC019' => 'C|1266|Cherokee, AL|34.1760|-85.6038|C',
'ALC021' => 'C|1267|Chilton, AL|32.8479|-86.7188|C',
'ALC023' => 'C|1268|Choctaw, AL|32.0192|-88.2628|C',
'ALC025' => 'C|1551|Clarke, AL|31.6709|-87.8309|C',
'ALC027' => 'C|1269|Clay, AL|33.2691|-85.8605|C',
'ALC029' => 'C|1270|Cleburne, AL|33.6745|-85.5188|C',
'ALC031' => 'C|1300|Coffee, AL|31.4026|-85.9882|C',
'ALC033' => 'C|1301|Colbert, AL|34.7004|-87.8049|C',
'ALC035' => 'C|1302|Conecuh, AL|31.4293|-86.9936|C',
'ALC037' => 'C|1303|Coosa, AL|32.9362|-86.2476|C',
'ALC039' => 'C|1304|Covington, AL|31.2485|-86.4512|C',
'ALC041' => 'C|1130|Crenshaw, AL|31.7315|-86.3136|C',
'ALC043' => 'C|1131|Cullman, AL|34.1320|-86.8676|C',
'ALC045' => 'C|1132|Dale, AL|31.4318|-85.6110|C',
'ALC047' => 'C|1133|Dallas, AL|32.3258|-87.1065|C',
'ALC049' => 'C|1134|DeKalb, AL|34.4598|-85.8041|C',
'ALC051' => 'C|1135|Elmore, AL|32.5966|-86.1492|C',
'ALC053' => 'C|1136|Escambia, AL|31.1262|-87.1616|C',
'ALC055' => 'C|1137|Etowah, AL|34.0453|-86.0348|C',
'ALC057' => 'C|1138|Fayette, AL|33.7212|-87.7388|C',
'ALC059' => 'C|1139|Franklin, AL|34.4417|-87.8438|C',
'ALC061' => 'C|1140|Geneva, AL|31.0950|-85.8390|C',
'ALC063' => 'C|1141|Greene, AL|32.8531|-87.9522|C',
'ALC065' => 'C|1142|Hale, AL|32.7627|-87.6291|C',
'ALC067' => 'C|1553|Henry, AL|31.5147|-85.2414|C',
'ALC069' => 'C|1143|Houston, AL|31.1532|-85.3025|C',
'ALC071' => 'C|1265|Jackson, AL|34.7794|-85.9993|C',
'ALC073' => 'C|1144|Jefferson, AL|33.5543|-86.8965|C',
'ALC075' => 'C|1145|Lamar, AL|33.7792|-88.0969|C',
'ALC077' => 'C|1146|Lauderdale, AL|34.9015|-87.6543|C',
'ALC079' => 'C|1147|Lawrence, AL|34.5220|-87.3110|C',
'ALC081' => 'C|1148|Lee, AL|32.6012|-85.3556|C',
'ALC083' => 'C|1149|Limestone, AL|34.8101|-86.9813|C',
'ALC085' => 'C|1150|Lowndes, AL|32.1548|-86.6501|C',
'ALC087' => 'C|1151|Macon, AL|32.3860|-85.6926|C',
'ALC089' => 'C|1152|Madison, AL|34.7631|-86.5502|C',
'ALC091' => 'C|1153|Marengo, AL|32.2476|-87.7895|C',
'ALC093' => 'C|1154|Marion, AL|34.1366|-87.8871|C',
'ALC095' => 'C|1155|Marshall, AL|34.3669|-86.3066|C',
'ALC097' => 'C|1593|Mobile, AL|30.7943|-88.2018|C',
'ALC099' => 'C|1156|Monroe, AL|31.5706|-87.3658|C',
'ALC101' => 'C|1157|Montgomery, AL|32.2202|-86.2076|C',
'ALC103' => 'C|1158|Morgan, AL|34.4535|-86.8529|C',
'ALC105' => 'C|1305|Perry, AL|32.6385|-87.2942|C',
'ALC107' => 'C|1306|Pickens, AL|33.2809|-88.0887|C',
'ALC109' => 'C|1307|Pike, AL|31.8024|-85.9409|C',
'ALC111' => 'C|1308|Randolph, AL|33.2938|-85.4591|C',
'ALC113' => 'C|1309|Russell, AL|32.2884|-85.1849|C',
'ALC115' => 'C|1310|St. Clair, AL|33.7157|-86.3147|C',
'ALC117' => 'C|1311|Shelby, AL|33.2643|-86.6607|C',
'ALC119' => 'C|1312|Sumter, AL|32.5910|-88.1988|C',
'ALC121' => 'C|1313|Talladega, AL|33.3800|-86.1659|C',
'ALC123' => 'C|1314|Tallapoosa, AL|32.8624|-85.7975|C',
'ALC125' => 'C|1315|Tuscaloosa, AL|33.2896|-87.5250|C',
'ALC127' => 'C|1316|Walker, AL|33.8034|-87.2973|C',
'ALC129' => 'C|1317|Washington, AL|31.4077|-88.2071|C',
'ALC131' => 'C|1318|Wilcox, AL|31.9892|-87.3082|C',
'ALC133' => 'C|1319|Winston, AL|34.1492|-87.3737|C',
'ALZ001' => 'F|34|Lauderdale|34.9015|-87.6543|C W|779|Lauderdale|34.9015|-87.6543|C',
'ALZ002' => 'F|14|Colbert|34.7004|-87.8049|C W|763|Colbert|34.7004|-87.8049|C',
'ALZ003' => 'F|27|Franklin|34.4417|-87.8438|C W|772|Franklin|34.4417|-87.8438|C',
'ALZ004' => 'F|35|Lawrence|34.5220|-87.3110|C W|780|Lawrence|34.5220|-87.3110|C',
'ALZ005' => 'F|37|Limestone|34.8101|-86.9813|C W|782|Limestone|34.8101|-86.9813|C',
'ALZ006' => 'F|40|Madison|34.7631|-86.5502|C W|785|Madison|34.7631|-86.5502|C',
'ALZ007' => 'F|46|Morgan|34.4535|-86.8529|C W|790|Morgan|34.4535|-86.8529|C',
'ALZ008' => 'F|43|Marshall|34.3669|-86.3066|C W|788|Marshall|34.3669|-86.3066|C',
'ALZ009' => 'F|7|Jackson|34.7794|-85.9993|C W|757|Jackson|34.7794|-85.9993|C',
'ALZ010' => 'F|22|DeKalb|34.4598|-85.8041|C W|768|DeKalb|34.4598|-85.8041|C',
'ALZ011' => 'F|42|Marion|34.1366|-87.8871|C W|787|Marion|34.1366|-87.8871|C',
'ALZ012' => 'F|33|Lamar|33.7792|-88.0969|C W|778|Lamar|33.7792|-88.0969|C',
'ALZ013' => 'F|26|Fayette|33.7212|-87.7388|C W|771|Fayette|33.7212|-87.7388|C',
'ALZ014' => 'F|61|Winston|34.1492|-87.3737|C W|803|Winston|34.1492|-87.3737|C',
'ALZ015' => 'F|58|Walker|33.8034|-87.2973|C W|802|Walker|33.8034|-87.2973|C',
'ALZ016' => 'F|19|Cullman|34.1320|-86.8676|C W|765|Cullman|34.1320|-86.8676|C',
'ALZ017' => 'F|4|Blount|33.9809|-86.5674|C W|754|Blount|33.9809|-86.5674|C',
'ALZ018' => 'F|25|Etowah|34.0453|-86.0348|C W|770|Etowah|34.0453|-86.0348|C',
'ALZ019' => 'F|1|Calhoun|33.7714|-85.8261|C W|752|Calhoun|33.7714|-85.8261|C',
'ALZ020' => 'F|8|Cherokee|34.1760|-85.6038|C W|758|Cherokee|34.1760|-85.6038|C',
'ALZ021' => 'F|12|Cleburne|33.6745|-85.5188|C W|761|Cleburne|33.6745|-85.5188|C',
'ALZ022' => 'F|48|Pickens|33.2809|-88.0887|C W|792|Pickens|33.2809|-88.0887|C',
'ALZ023' => 'F|57|Tuscaloosa|33.2896|-87.5250|C W|801|Tuscaloosa|33.2896|-87.5250|C',
'ALZ024' => 'F|32|Jefferson|33.5543|-86.8965|C W|777|Jefferson|33.5543|-86.8965|C',
'ALZ025' => 'F|53|Shelby|33.2643|-86.6607|C W|797|Shelby|33.2643|-86.6607|C',
'ALZ026' => 'F|52|St. Clair|33.7157|-86.3147|C W|796|St. Clair|33.7157|-86.3147|C',
'ALZ027' => 'F|55|Talladega|33.3800|-86.1659|C W|799|Talladega|33.3800|-86.1659|C',
'ALZ028' => 'F|11|Clay|33.2691|-85.8605|C W|760|Clay|33.2691|-85.8605|C',
'ALZ029' => 'F|50|Randolph|33.2938|-85.4591|C W|794|Randolph|33.2938|-85.4591|C',
'ALZ030' => 'F|54|Sumter|32.5910|-88.1988|C W|798|Sumter|32.5910|-88.1988|C',
'ALZ031' => 'F|29|Greene|32.8531|-87.9522|C W|774|Greene|32.8531|-87.9522|C',
'ALZ032' => 'F|30|Hale|32.7627|-87.6291|C W|775|Hale|32.7627|-87.6291|C',
'ALZ033' => 'F|47|Perry|32.6385|-87.2942|C W|791|Perry|32.6385|-87.2942|C',
'ALZ034' => 'F|5|Bibb|32.9986|-87.1264|C W|755|Bibb|32.9986|-87.1264|C',
'ALZ035' => 'F|9|Chilton|32.8479|-86.7188|C W|759|Chilton|32.8479|-86.7188|C',
'ALZ036' => 'F|16|Coosa|32.9362|-86.2476|C W|764|Coosa|32.9362|-86.2476|C',
'ALZ037' => 'F|56|Tallapoosa|32.8624|-85.7975|C W|800|Tallapoosa|32.8624|-85.7975|C',
'ALZ038' => 'F|2542|Chambers|32.9144|-85.3920|C W|805|Chambers|32.9144|-85.3920|C',
'ALZ039' => 'F|41|Marengo|32.2476|-87.7895|C W|786|Marengo|32.2476|-87.7895|C',
'ALZ040' => 'F|21|Dallas|32.3258|-87.1065|C W|767|Dallas|32.3258|-87.1065|C',
'ALZ041' => 'F|62|Autauga|32.5349|-86.6428|C W|804|Autauga|32.5349|-86.6428|C',
'ALZ042' => 'F|38|Lowndes|32.1548|-86.6501|C W|783|Lowndes|32.1548|-86.6501|C',
'ALZ043' => 'F|23|Elmore|32.5966|-86.1492|C W|769|Elmore|32.5966|-86.1492|C',
'ALZ044' => 'F|45|Montgomery|32.2202|-86.2076|C W|789|Montgomery|32.2202|-86.2076|C',
'ALZ045' => 'F|39|Macon|32.3860|-85.6926|C W|784|Macon|32.3860|-85.6926|C',
'ALZ046' => 'F|3|Bullock|32.1005|-85.7161|C W|753|Bullock|32.1005|-85.7161|C',
'ALZ047' => 'F|36|Lee|32.6012|-85.3556|C W|781|Lee|32.6012|-85.3556|C',
'ALZ048' => 'F|51|Russell|32.2884|-85.1849|C W|795|Russell|32.2884|-85.1849|C',
'ALZ049' => 'F|49|Pike|31.8024|-85.9409|C W|793|Pike|31.8024|-85.9409|C',
'ALZ050' => 'F|6|Barbour|31.8696|-85.3932|C W|756|Barbour|31.8696|-85.3932|C',
'ALZ051' => 'F|10|Choctaw|32.0192|-88.2628|C W|2619|Choctaw|32.0192|-88.2628|C',
'ALZ052' => 'F|59|Washington|31.4077|-88.2071|C W|2625|Washington|31.4077|-88.2071|C',
'ALZ053' => 'F|2559|Clarke|31.6709|-87.8309|C W|2634|Clarke|31.6709|-87.8309|C',
'ALZ054' => 'F|60|Wilcox|31.9892|-87.3082|C W|2626|Wilcox|31.9892|-87.3082|C',
'ALZ055' => 'F|44|Monroe|31.5706|-87.3658|C W|2624|Monroe|31.5706|-87.3658|C',
'ALZ056' => 'F|15|Conecuh|31.4293|-86.9936|C W|2620|Conecuh|31.4293|-86.9936|C',
'ALZ057' => 'F|2|Butler|31.7524|-86.6803|C W|2618|Butler|31.7524|-86.6803|C',
'ALZ058' => 'F|18|Crenshaw|31.7315|-86.3136|C W|2622|Crenshaw|31.7315|-86.3136|C',
'ALZ059' => 'F|24|Escambia|31.1262|-87.1616|C W|2623|Escambia|31.1262|-87.1616|C',
'ALZ060' => 'F|17|Covington|31.2485|-86.4512|C W|2621|Covington|31.2485|-86.4512|C',
'ALZ065' => 'F|13|Coffee|31.4026|-85.9882|C W|762|Coffee|31.4026|-85.9882|C',
'ALZ066' => 'F|20|Dale|31.4318|-85.6110|C W|766|Dale|31.4318|-85.6110|C',
'ALZ067' => 'F|2586|Henry|31.5147|-85.2414|C W|806|Henry|31.5147|-85.2414|C',
'ALZ068' => 'F|28|Geneva|31.0950|-85.8390|C W|773|Geneva|31.0950|-85.8390|C',
'ALZ069' => 'F|31|Houston|31.1532|-85.3025|C W|776|Houston|31.1532|-85.3025|C',
'ALZ261' => 'F|3265|Mobile Inland|30.9712|-88.1763|C W|2641|Mobile Inland|30.9712|-88.1763|C',
'ALZ262' => 'F|3280|Baldwin Inland|31.0199|-87.7677|C W|2811|Baldwin Inland|31.0199|-87.7677|C',
'ALZ263' => 'F|3264|Mobile Central|30.6559|-88.2327|C W|2640|Mobile Central|30.6559|-88.2327|C',
'ALZ264' => 'F|3260|Baldwin Central|30.5912|-87.6925|C W|2636|Baldwin Central|30.5912|-87.6925|C',
'ALZ265' => 'F|3261|Mobile Coastal|30.4279|-88.2224|C W|2637|Mobile Coastal|30.4279|-88.2224|C',
'ALZ266' => 'F|3262|Baldwin Coastal|30.3528|-87.6509|C W|2638|Baldwin Coastal|30.3528|-87.6509|C',
'AMZ131' => 'M|333|Alligator River|35.8324|-76.0080|',
'AMZ135' => 'M|331|Pamlico Sound|35.3320|-75.9574|',
'AMZ136' => 'M|329|Pamlico and Pungo Rivers|35.4210|-76.6707|',
'AMZ137' => 'M|330|Neuse and Bay Rivers|35.0472|-76.6806|',
'AMZ150' => 'M|394|S of Currituck Beach Light NC to Oregon Inlet NC out to 20 nm|36.0001|-75.4596|',
'AMZ152' => 'M|393|S of Oregon Inlet NC to Cape Hatteras NC out to 20 nm|35.4786|-75.3163|',
'AMZ154' => 'M|392|S of Cape Hatteras NC to Ocracoke Inlet NC out to 20 nm|35.0528|-75.5899|',
'AMZ156' => 'M|389|S of Ocracoke Inlet NC to Cape Lookout NC out to 20 nm|34.7607|-76.1689|',
'AMZ158' => 'M|390|S of Cape Lookout NC to Surf City NC out to 20 nm|34.4770|-76.8861|',
'AMZ170' => 'M|358|Waters from Currituck Beach Light to Oregon Inlet NC from 20 to 40 nm|36.0131|-75.0889|',
'AMZ172' => 'M|359|Waters from Oregon Inlet to Cape Hatteras NC from 20 to 40 nm|35.4428|-74.9841|',
'AMZ174' => 'M|360|Waters from Cape Hatteras to Ocracoke Inlet NC from 20 to 40 nm|34.8575|-75.2401|',
'AMZ176' => 'M|361|Waters fromOcracoke Inlet to Cape Lookout NC from 20 to 40 nm|34.5446|-75.8504|',
'AMZ178' => 'M|357|Waters from Cape Lookout to Surf City NC from 20 to 40 nm|34.1398|-76.6018|',
'AMZ230' => 'M|332|Albemarle Sound|36.0352|-76.1800|',
'AMZ231' => 'M|352|Croatan and Roanoke Sounds|35.8968|-75.6909|',
'AMZ250' => 'M|388|Coastal waters from Surf City to Cape Fear NC out 20 nm|34.0617|-77.6492|',
'AMZ252' => 'M|391|Coastal waters from Cape Fear NC to Little River Inlet SC out 20 nm|33.7170|-78.1023|',
'AMZ254' => 'M|386|Coastal waters from Little River Inlet to Murrells Inlet SC out 20 nm|33.6140|-78.6524|',
'AMZ256' => 'M|387|Coastal waters from Murrells Inlet to South Santee River SC out 20 nm|33.2507|-78.9884|',
'AMZ270' => 'M|432|Waters from Surf City to Cape Fear NC from 20 to 40 nm|33.8424|-77.3782|',
'AMZ272' => 'M|433|Waters from Cape Fear NC to Little River Inlet SC from 20 to 40 nm|33.4112|-77.7610|',
'AMZ274' => 'M|435|Waters from Little River Inlet to Murrells Inlet SC from 20 to 40 nm|33.3595|-78.2427|',
'AMZ276' => 'M|436|Waters from Murrells Inlet NC to South Santee River SC from 20 to 40 nm|33.1002|-78.6653|',
'AMZ330' => 'M|96|Charleston Harbor|32.7736|-79.9025|',
'AMZ350' => 'M|385|Coastal waters from South Santee River to Edisto Beach SC out 20 nm|32.7005|-79.6024|',
'AMZ352' => 'M|384|Coastal waters from Edisto Beach SC to Savannah GA out 20 nm|32.1842|-80.4171|',
'AMZ354' => 'M|241|Coastal waters from Savannah GA to Altamaha Sound GA out 20 nm ...including Grays Reef National Marine Sanctuary|31.6166|-80.9421|',
'AMZ370' => 'M|434|Waters from South Santee River SC to Edisto Beach SC extending from 20 nm to 40 nm|32.5297|-79.2310|',
'AMZ372' => 'M|437|Waters from Edisto Beach SC to Savannah GA extending from 20 nm to 40 nm|32.0116|-80.0287|',
'AMZ374' => 'M|356|Waters from Savannah GA to Altamaha Sound GA extending from 20 nm to 60 nm|31.4712|-80.4295|',
'AMZ450' => 'M|296|Coastal waters from Altamaha Sound to Fernandina Beach FL out 20 NM|30.9763|-81.2437|',
'AMZ452' => 'M|294|Coastal waters from Fernandina Beach to St. Augustine FL out 20 NM|30.2882|-81.2117|',
'AMZ454' => 'M|295|Coastal waters from St. Augustine to Flagler Beach FL out 20 NM|29.6863|-81.0346|',
'AMZ470' => 'M|225|Waters from Altamaha Sound GA to Fernandina Beach FL from 20 to 60 NM|30.8938|-80.7054|',
'AMZ472' => 'M|226|Waters from Fernandina Beach to St. Augustine FL from 20 to 60 NM|30.2498|-80.6826|',
'AMZ474' => 'M|227|Waters from St. Augustine to Flagler Beach FL from 20 to 60 NM|29.6870|-80.4770|',
'AMZ550' => 'M|35|Flagler Beach to Volusia-Brevard County Line 0-20 nm|29.1472|-80.7638|',
'AMZ552' => 'M|254|Volusia-Brevard County Line to Sebastian Inlet 0-20 nm|28.3687|-80.4425|',
'AMZ555' => 'M|41|Sebastian Inlet to Jupiter Inlet 0-20 nm|27.4201|-80.0924|',
'AMZ570' => 'M|291|Flagler Beach to Volusia-Brevard County Line 20-60 nm|29.1848|-80.1957|',
'AMZ572' => 'M|292|Volusia-Brevard County Line to Sebastian Inlet 20-60 nm|28.4186|-79.8804|',
'AMZ575' => 'M|290|Sebastian Inlet to Jupiter Inlet 20-60 nm|27.4643|-79.5572|',
'AMZ610' => 'M|39|Lake Okeechobee|26.9426|-80.8345|',
'AMZ630' => 'M|98|Biscayne Bay|25.5564|-80.2415|',
'AMZ650' => 'M|40|Coastal waters from Jupiter Inlet to Deerfield Beach FL out 20 NM|26.6319|-79.8822|',
'AMZ651' => 'M|34|Coastal waters from Deerfield Beach to Ocean Reef FL out 20 NM|25.7516|-79.9815|',
'AMZ670' => 'M|257|Waters from Jupiter Inlet to Deerfield Beach FL from 20 to 60 NM|26.5888|-79.3734|',
'AMZ671' => 'M|7|Waters from Deerfield Beach to Ocean Reef FL from 20 to 60 NM excluding the territorial waters of Bahamas|25.5150|-79.5098|',
'AMZ711' => 'M|454|Atlantic Waters of Puerto Rico AND USVI from 10 NM to 19.5N|19.0481|-66.0232|',
'AMZ712' => 'M|453|Coastal Waters of Northern Puerto Rico out 10 NM|18.5547|-66.4417|',
'AMZ716' => 'M|452|Coastal Waters from Cabo San Juan to the waters between Anegada Island and Virgin Gorda and North 10 NM|18.4775|-64.9498|',
'AMZ723' => 'M|455|Anegada Passage east of Virgin Gorda and Saint Croix south to 17N|17.7100|-64.2892|',
'AMZ726' => 'M|450|Coastal Waters east of Puerto Rico, around Vieques, and around and just north of Culebra and Saint John|18.1811|-65.1448|',
'AMZ733' => 'M|61|Caribbean Waters of Puerto Rico from 10 NM to 17N, including the Coastal Waters of Saint Croix|17.4584|-65.8930|',
'AMZ735' => 'M|451|Coastal Waters of Southern Puerto Rico out 10 NM|17.8701|-66.5369|',
'AMZ741' => 'M|63|Mona Passage Southward to 17N|17.7404|-67.6909|',
'AMZ742' => 'M|62|Coastal Waters OF Northwestern Puerto Rico out 10 NM|18.3412|-67.3023|',
'AMZ745' => 'M|60|Coastal Waters OF Southwestern Puerto Rico out 10 NM|18.0643|-67.2841|',
'ANZ050' => 'M|417|Coastal Waters from Eastport, ME to Schoodic Point, ME out 25 NM|44.3552|-67.5746|',
'ANZ051' => 'M|416|Coastal Waters from Schoodic Point, ME to Stonington, ME out 25 NM|43.9899|-68.2400|',
'ANZ052' => 'M|305|Intra Coastal Waters from Schoodic Point, ME to Stonington, ME|44.2663|-68.3834|',
'ANZ070' => 'M|377|Waters from Eastport ME to Schoodic Point, ME from 25 to 40 nm|43.8921|-67.6127|',
'ANZ071' => 'M|381|Waters from Schoodic Point, ME to Stonington ME from 25 to 40 nm|43.6870|-68.1856|',
'ANZ150' => 'M|415|Coastal Waters from Stonington, ME to Port Clyde, ME out 25 NM|43.8291|-68.9019|',
'ANZ151' => 'M|304|Penobscot Bay|44.2241|-68.8524|',
'ANZ152' => 'M|414|Coastal Waters from Port Clyde, ME to Cape Elizabeth, ME out 25 NM|43.6224|-69.5669|',
'ANZ153' => 'M|300|Casco Bay|43.7180|-70.0597|',
'ANZ154' => 'M|413|Coastal Waters from Cape Elizabeth, ME to Merrimack River, MA out 25 NM|43.1523|-70.2998|',
'ANZ170' => 'M|382|Waters from Stonington ME to Port Clyde ME from 25 to 40 nm|43.5176|-68.7402|',
'ANZ172' => 'M|375|Waters from Port Clyde ME to Cape Elizabeth ME from 25 to 40 nm|43.3046|-69.2959|',
'ANZ174' => 'M|383|Waters from Cape Elizabeth ME to Merrimack River MA from 25 to 40 nm|43.0551|-69.7926|',
'ANZ230' => 'M|100|Boston Harbor|42.3446|-70.9337|',
'ANZ231' => 'M|274|Cape Cod Bay|41.8922|-70.2911|',
'ANZ232' => 'M|256|Nantucket Sound|41.4832|-70.2452|',
'ANZ233' => 'M|255|Vineyard Sound|41.4300|-70.7652|',
'ANZ234' => 'M|95|Buzzards Bay|41.5660|-70.8072|',
'ANZ235' => 'M|42|Rhode Island Sound|41.3386|-71.1599|',
'ANZ236' => 'M|43|Narragansett Bay|41.5812|-71.3224|',
'ANZ237' => 'M|94|Block Island Sound|41.2285|-71.6381|',
'ANZ250' => 'M|412|Coastal waters east of Ipswich Bay and the Stellwagen Bank National Marine Sanctuary|42.4207|-70.2106|',
'ANZ251' => 'M|275|Massachusetts Bay and Ipswich Bay|42.4231|-70.6696|',
'ANZ254' => 'M|407|Coastal waters from Provincetown MA to Chatham MA to Nantucket MA out 20 nm|41.6352|-69.7327|',
'ANZ255' => 'M|406|Coastal Waters extending out to 25 nm South of Marthas Vineyard and Nantucket|41.1134|-70.2635|',
'ANZ256' => 'M|405|Coastal Waters from Montauk NY to Marthas Vineyard extending out to 20 nm South of Block Island|41.0273|-71.2100|',
'ANZ270' => 'M|380|Ocean Waters from the Merrimack River to Plymouth from 40 to 60 NM offshore|42.5478|-69.7225|',
'ANZ271' => 'M|376|Ocean Waters from Provincetown to Nantucket from 20 to 35 NM offshore|41.5616|-69.3363|',
'ANZ272' => 'M|379|Ocean Waters from Marthas Vineyard to Nantucket from 25 to 45 NM offshore|40.7706|-70.0034|',
'ANZ273' => 'M|378|Ocean Waters from Montauk NY to Marthas Vineyard from 25 to 40 NM offshore|40.7124|-71.0166|',
'ANZ331' => 'M|314|Long Island Sound East of New Haven CT/Port Jefferson NY to the Mouth of the Connecticut River|41.1272|-72.6793|',
'ANZ332' => 'M|355|Long Island Sound East of the Mouth of the Connecticut River|41.2062|-72.0533|',
'ANZ335' => 'M|311|Long Island Sound West of New Haven CT/Port Jefferson NY|41.0171|-73.3206|',
'ANZ338' => 'M|310|New York Harbor|40.5240|-74.0787|',
'ANZ340' => 'M|313|Peconic and Gardiners Bays|41.0336|-72.3134|',
'ANZ345' => 'M|312|South Shore Bays from Jones Inlet through Shinnecock Bay|40.7084|-73.0702|',
'ANZ350' => 'M|411|Moriches Inlet NY to Montauk Point NY out 20 nm|40.7494|-72.2066|',
'ANZ353' => 'M|410|Fire Island Inlet NY to Moriches Inlet NY out 20 nm|40.5168|-72.9638|',
'ANZ355' => 'M|409|Sandy Hook NJ to Fire Island Inlet NY out 20 nm|40.4464|-73.5746|',
'ANZ370' => 'M|367|Waters from Moriches Inlet NY to Montauk Point NY from 20 to 40 NM|40.4509|-72.0065|',
'ANZ373' => 'M|369|Waters from Fire Island Inlet NY to Moriches Inlet NY from 20 to 40 NM|40.2058|-72.8053|',
'ANZ375' => 'M|370|Waters from Sandy Hook NJ to Fire Island Inlet out 20 to 40 nm|40.1112|-73.3044|',
'ANZ430' => 'M|308|Delaware Bay waters north of East Point NJ to Slaughter Beach DE|39.2424|-75.3419|',
'ANZ431' => 'M|309|Delaware Bay waters south of East Point NJ to Slaughter Beach DE|39.0014|-75.0839|',
'ANZ450' => 'M|408|Coastal waters from Sandy Hook to Manasquan Inlet NJ out 20 nm|40.2028|-73.8451|',
'ANZ451' => 'M|403|Coastal waters from Manasquan Inlet to Little Egg Inlet NJ out 20 nm|39.7277|-73.9970|',
'ANZ452' => 'M|402|Coastal waters from Little Egg Inlet to Great Egg Inlet NJ out 20 nm|39.3207|-74.2569|',
'ANZ453' => 'M|401|Coastal waters from Great Egg Inlet to Cape May NJ out 20 nm|39.0498|-74.5448|',
'ANZ454' => 'M|400|Coastal waters from Cape May NJ to Cape Henlopen DE out 20 nm|38.7936|-74.8115|',
'ANZ455' => 'M|398|Coastal waters from Cape Henlopen to Fenwick Island DE out 20 nm|38.5718|-74.9103|',
'ANZ470' => 'M|371|Waters from Sandy Hook NJ to Manasquan Inlet NJ out 20 to 40 nm|40.0489|-73.5601|',
'ANZ471' => 'M|372|Waters from Manasquan Inlet NJ to Little Egg Inlet NJ out 20 to 40 nm|39.6158|-73.5842|',
'ANZ472' => 'M|373|Waters from Little Egg Inlet NJ to Great Egg Inlet NJ out 20 to 40 nm from 20 to 40 NM|39.1921|-73.8296|',
'ANZ473' => 'M|374|Waters from Great Egg Inlet NJ to Cape May NJ out 20 to 40 nm|38.9156|-74.1311|',
'ANZ475' => 'M|368|Waters from Cape May NJ to Fenwick Island DE out 20 to 40 nm|38.5248|-74.4566|',
'ANZ530' => 'M|339|Chesapeake Bay north of Pooles Island MD|39.4243|-76.0923|',
'ANZ531' => 'M|338|Chesapeake Bay from Pooles Island to Sandy Point MD|39.1806|-76.3446|',
'ANZ532' => 'M|342|Chesapeake Bay from Sandy Point to North Beach MD|38.8506|-76.4244|',
'ANZ533' => 'M|341|Chesapeake Bay from North Beach to Drum Point MD|38.5411|-76.4061|',
'ANZ534' => 'M|229|Chesapeake Bay from Drum Point MD to Smith Point VA|38.1039|-76.2110|',
'ANZ535' => 'M|344|Tidal Potomac from Key Bridge to Indian Head MD|38.7406|-77.0712|',
'ANZ536' => 'M|345|Tidal Potomac from Indian Head to Cobb Island MD|38.3931|-77.1038|',
'ANZ537' => 'M|346|Tidal Potomac from Cobb Island MD to Smith Point VA|38.1024|-76.5387|',
'ANZ538' => 'M|337|Patapsco River including Baltimore Harbor|39.2175|-76.5275|',
'ANZ539' => 'M|336|Chester River to Queenstown MD|39.0433|-76.2538|',
'ANZ540' => 'M|340|Eastern Bay|38.8694|-76.2730|',
'ANZ541' => 'M|343|Choptank River to Cambridge MD and the Little Choptank River|38.6262|-76.2539|',
'ANZ542' => 'M|228|Patuxent River to Broomes Island MD|38.3490|-76.4853|',
'ANZ543' => 'M|99|Tangier Sound and the inland waters surrounding Bloodsworth Island|38.1393|-75.9857|',
'ANZ630' => 'M|303|Chesapeake Bay from Smith Point to Windmill Point VA|37.7762|-76.0145|',
'ANZ631' => 'M|299|Chesapeake Bay from Windmill Point to New Point Comfort VA|37.4761|-76.1188|',
'ANZ632' => 'M|230|Chesapeake Bay from New Point Comfort to Little Creek VA|37.1660|-76.1946|',
'ANZ633' => 'M|334|Currituck Sound|36.4027|-75.8972|',
'ANZ634' => 'M|335|Chesapeake Bay from Little Creek VA to Cape Henry VA including the Chesapeake Bay Bridge Tunnel|36.9944|-76.0423|',
'ANZ635' => 'M|302|Rappahannock River from Urbanna to Windmill Point|37.6308|-76.4456|',
'ANZ636' => 'M|231|York River|37.2800|-76.5272|',
'ANZ637' => 'M|298|James River from Jamestown to the James River Bridge|37.0976|-76.6134|',
'ANZ638' => 'M|297|James River from James River Bridge to Hampton Roads Bridge-Tunnel|36.9562|-76.4015|',
'ANZ650' => 'M|397|Coastal waters from Fenwick Island DE to Chincoteague VA out 20 nm|38.1864|-75.0049|',
'ANZ652' => 'M|399|Coastal waters from Chincoteague to Parramore Island VA out 20 nm|37.7672|-75.2921|',
'ANZ654' => 'M|396|Coastal waters from Parramore Island to Cape Charles Light VA out 20 nm|37.3045|-75.6189|',
'ANZ656' => 'M|404|Coastal Waters from Cape Charles Light to Virginia-North Carolina border out to 20 nm|36.8189|-75.7649|',
'ANZ658' => 'M|395|Coastal waters from NC VA border to Currituck Beach Light NC out 20 nm|36.3841|-75.6477|',
'ANZ670' => 'M|363|Waters from Fenwick Island DE to Chintoteague VA from 20 to 40 nm|38.0858|-74.6362|',
'ANZ672' => 'M|364|Waters from Chincoteague VA to Parramore Island VA from 20 to 40 nm|37.6513|-74.9137|',
'ANZ674' => 'M|365|Waters from Parramore Island VA to Cape Charles Light VA from 20 to 40 nm|37.2380|-75.2147|',
'ANZ676' => 'M|362|Waters from Cape Charles Light to Virginia - North Carolina Border from 20 to 40 nm|36.7918|-75.4012|',
'ANZ678' => 'M|366|Waters from NC VA border to Currituck Beach Light NC from 20 to 40 nm|36.3848|-75.2854|',
'ARC001' => 'C|1599|Arkansas, AR|34.2908|-91.3749|C',
'ARC003' => 'C|1596|Ashley, AR|33.1912|-91.7679|C',
'ARC005' => 'C|1597|Baxter, AR|36.2872|-92.3370|C',
'ARC007' => 'C|1598|Benton, AR|36.3392|-94.2573|C',
'ARC009' => 'C|2062|Boone, AR|36.3086|-93.0915|C',
'ARC011' => 'C|1600|Bradley, AR|33.4659|-92.1623|C',
'ARC013' => 'C|1601|Calhoun, AR|33.5580|-92.5031|C',
'ARC015' => 'C|1602|Carroll, AR|36.3410|-93.5382|C',
'ARC017' => 'C|1603|Chicot, AR|33.2672|-91.2940|C',
'ARC019' => 'C|1604|Clark, AR|34.0510|-93.1764|C',
'ARC021' => 'C|1605|Clay, AR|36.3685|-90.4173|C',
'ARC023' => 'C|1606|Cleburne, AR|35.5381|-92.0267|C',
'ARC025' => 'C|1607|Cleveland, AR|33.8983|-92.1852|C',
'ARC027' => 'C|1608|Columbia, AR|33.2143|-93.2274|C',
'ARC029' => 'C|1609|Conway, AR|35.2622|-92.7014|C',
'ARC031' => 'C|1610|Craighead, AR|35.8308|-90.6328|C',
'ARC033' => 'C|1611|Crawford, AR|35.5889|-94.2430|C',
'ARC035' => 'C|1612|Crittenden, AR|35.2079|-90.3089|C',
'ARC037' => 'C|1613|Cross, AR|35.2958|-90.7713|C',
'ARC039' => 'C|1614|Dallas, AR|33.9698|-92.6545|C',
'ARC041' => 'C|1615|Desha, AR|33.8333|-91.2540|C',
'ARC043' => 'C|1616|Drew, AR|33.5895|-91.7200|C',
'ARC045' => 'C|1617|Faulkner, AR|35.1470|-92.3320|C',
'ARC047' => 'C|1618|Franklin, AR|35.5123|-93.8906|C',
'ARC049' => 'C|1619|Fulton, AR|36.3817|-91.8183|C',
'ARC051' => 'C|1620|Garland, AR|34.5767|-93.1504|C',
'ARC053' => 'C|1621|Grant, AR|34.2900|-92.4236|C',
'ARC055' => 'C|2014|Greene, AR|36.1177|-90.5591|C',
'ARC057' => 'C|2015|Hempstead, AR|33.7354|-93.6684|C',
'ARC059' => 'C|2016|Hot Spring, AR|34.3177|-92.9460|C',
'ARC061' => 'C|2017|Howard, AR|34.0887|-93.9935|C',
'ARC063' => 'C|2018|Independence, AR|35.7415|-91.5698|C',
'ARC065' => 'C|2019|Izard, AR|36.0949|-91.9134|C',
'ARC067' => 'C|2020|Jackson, AR|35.5994|-91.2146|C',
'ARC069' => 'C|2021|Jefferson, AR|34.2688|-91.9315|C',
'ARC071' => 'C|2022|Johnson, AR|35.5701|-93.4599|C',
'ARC073' => 'C|2023|Lafayette, AR|33.2408|-93.6073|C',
'ARC075' => 'C|2024|Lawrence, AR|36.0413|-91.1071|C',
'ARC077' => 'C|2025|Lee, AR|34.7807|-90.7820|C',
'ARC079' => 'C|2026|Lincoln, AR|33.9575|-91.7333|C',
'ARC081' => 'C|2027|Little River, AR|33.7005|-94.2343|C',
'ARC083' => 'C|2028|Logan, AR|35.2153|-93.7163|C',
'ARC085' => 'C|2029|Lonoke, AR|34.7542|-91.8887|C',
'ARC087' => 'C|2035|Madison, AR|36.0110|-93.7246|C',
'ARC089' => 'C|2030|Marion, AR|36.2684|-92.6842|C',
'ARC091' => 'C|2031|Miller, AR|33.3124|-93.8918|C',
'ARC093' => 'C|2032|Mississippi, AR|35.7639|-90.0540|C',
'ARC095' => 'C|2033|Monroe, AR|34.6778|-91.2038|C',
'ARC097' => 'C|2034|Montgomery, AR|34.5388|-93.6595|C',
'ARC099' => 'C|2036|Nevada, AR|33.6640|-93.3072|C',
'ARC101' => 'C|2037|Newton, AR|35.9200|-93.2179|C',
'ARC103' => 'C|2038|Ouachita, AR|33.5933|-92.8820|C',
'ARC105' => 'C|2039|Perry, AR|34.9474|-92.9315|C',
'ARC107' => 'C|2040|Phillips, AR|34.4283|-90.8480|C',
'ARC109' => 'C|2041|Pike, AR|34.1636|-93.6564|C',
'ARC111' => 'C|2042|Poinsett, AR|35.5740|-90.6629|C',
'ARC113' => 'C|2043|Polk, AR|34.4858|-94.2281|C',
'ARC115' => 'C|2044|Pope, AR|35.4476|-93.0342|C',
'ARC117' => 'C|2045|Prairie, AR|34.8297|-91.5528|C',
'ARC119' => 'C|2046|Pulaski, AR|34.7699|-92.3117|C',
'ARC121' => 'C|2047|Randolph, AR|36.3415|-91.0278|C',
'ARC123' => 'C|2048|St. Francis, AR|35.0220|-90.7478|C',
'ARC125' => 'C|2049|Saline, AR|34.6466|-92.6766|C',
'ARC127' => 'C|2050|Scott, AR|34.8608|-94.0633|C',
'ARC129' => 'C|2051|Searcy, AR|35.9109|-92.6995|C',
'ARC131' => 'C|2052|Sebastian, AR|35.1993|-94.2740|C',
'ARC133' => 'C|2053|Sevier, AR|33.9973|-94.2412|C',
'ARC135' => 'C|2054|Sharp, AR|36.1611|-91.4799|C',
'ARC137' => 'C|2055|Stone, AR|35.8599|-92.1567|C',
'ARC139' => 'C|2056|Union, AR|33.1713|-92.5973|C',
'ARC141' => 'C|2057|Van Buren, AR|35.5807|-92.5157|C',
'ARC143' => 'C|2058|Washington, AR|35.9800|-94.2147|C',
'ARC145' => 'C|2059|White, AR|35.2563|-91.7457|C',
'ARC147' => 'C|2060|Woodruff, AR|35.1863|-91.2432|C',
'ARC149' => 'C|2061|Yell, AR|35.0026|-93.4113|C',
'ARZ001' => 'F|65|Benton|36.3392|-94.2573|C W|1519|Benton|36.3392|-94.2573|C',
'ARZ002' => 'F|69|Carroll|36.3410|-93.5382|C W|1523|Carroll|36.3410|-93.5382|C',
'ARZ004' => 'F|188|Marion|36.2684|-92.6842|C W|1557|Marion|36.2684|-92.6842|C',
'ARZ005' => 'F|64|Baxter|36.2872|-92.3370|C W|1518|Baxter|36.2872|-92.3370|C',
'ARZ006' => 'F|86|Fulton|36.3817|-91.8183|C W|1540|Fulton|36.3817|-91.8183|C',
'ARZ007' => 'F|206|Sharp|36.1611|-91.4799|C W|1575|Sharp|36.1611|-91.4799|C',
'ARZ008' => 'F|201|Randolph|36.3415|-91.0278|C W|1570|Randolph|36.3415|-91.0278|C',
'ARZ009' => 'F|72|Clay|36.3685|-90.4173|C W|1526|Clay|36.3685|-90.4173|C',
'ARZ010' => 'F|209|Washington|35.9800|-94.2147|C W|1578|Washington|35.9800|-94.2147|C',
'ARZ011' => 'F|192|Madison|36.0110|-93.7246|C W|1561|Madison|36.0110|-93.7246|C',
'ARZ014' => 'F|207|Stone|35.8599|-92.1567|C W|1576|Stone|35.8599|-92.1567|C',
'ARZ015' => 'F|94|Izard|36.0949|-91.9134|C W|1548|Izard|36.0949|-91.9134|C',
'ARZ016' => 'F|93|Independence|35.7415|-91.5698|C W|1547|Independence|35.7415|-91.5698|C',
'ARZ017' => 'F|183|Lawrence|36.0413|-91.1071|C W|1552|Lawrence|36.0413|-91.1071|C',
'ARZ018' => 'F|89|Greene|36.1177|-90.5591|C W|1543|Greene|36.1177|-90.5591|C',
'ARZ019' => 'F|78|Crawford|35.5889|-94.2430|C W|1532|Crawford|35.5889|-94.2430|C',
'ARZ020' => 'F|85|Franklin|35.5123|-93.8906|C W|1539|Franklin|35.5123|-93.8906|C',
'ARZ024' => 'F|73|Cleburne|35.5381|-92.0267|C W|1527|Cleburne|35.5381|-92.0267|C',
'ARZ025' => 'F|95|Jackson|35.5994|-91.2146|C W|1549|Jackson|35.5994|-91.2146|C',
'ARZ026' => 'F|77|Craighead|35.8308|-90.6328|C W|1531|Craighead|35.8308|-90.6328|C',
'ARZ027' => 'F|198|Poinsett|35.5740|-90.6629|C W|1567|Poinsett|35.5740|-90.6629|C',
'ARZ028' => 'F|190|Mississippi|35.7639|-90.0540|C W|1559|Mississippi|35.7639|-90.0540|C',
'ARZ029' => 'F|204|Sebastian|35.1993|-94.2740|C W|1573|Sebastian|35.1993|-94.2740|C',
'ARZ031' => 'F|76|Conway|35.2622|-92.7014|C W|1530|Conway|35.2622|-92.7014|C',
'ARZ032' => 'F|84|Faulkner|35.1470|-92.3320|C W|1538|Faulkner|35.1470|-92.3320|C',
'ARZ033' => 'F|210|White|35.2563|-91.7457|C W|1579|White|35.2563|-91.7457|C',
'ARZ034' => 'F|211|Woodruff|35.1863|-91.2432|C W|1580|Woodruff|35.1863|-91.2432|C',
'ARZ035' => 'F|80|Cross|35.2958|-90.7713|C W|1534|Cross|35.2958|-90.7713|C',
'ARZ036' => 'F|79|Crittenden|35.2079|-90.3089|C W|1533|Crittenden|35.2079|-90.3089|C',
'ARZ039' => 'F|195|Perry|34.9474|-92.9315|C W|1564|Perry|34.9474|-92.9315|C',
'ARZ042' => 'F|87|Garland|34.5767|-93.1504|C W|1541|Garland|34.5767|-93.1504|C',
'ARZ043' => 'F|203|Saline|34.6466|-92.6766|C W|1572|Saline|34.6466|-92.6766|C',
'ARZ044' => 'F|200|Pulaski|34.7699|-92.3117|C W|1569|Pulaski|34.7699|-92.3117|C',
'ARZ045' => 'F|187|Lonoke|34.7542|-91.8887|C W|1556|Lonoke|34.7542|-91.8887|C',
'ARZ046' => 'F|199|Prairie|34.8297|-91.5528|C W|1568|Prairie|34.8297|-91.5528|C',
'ARZ047' => 'F|191|Monroe|34.6778|-91.2038|C W|1560|Monroe|34.6778|-91.2038|C',
'ARZ048' => 'F|202|St. Francis|35.0220|-90.7478|C W|1571|St. Francis|35.0220|-90.7478|C',
'ARZ049' => 'F|184|Lee|34.7807|-90.7820|C W|1553|Lee|34.7807|-90.7820|C',
'ARZ050' => 'F|205|Sevier|33.9973|-94.2412|C W|1574|Sevier|33.9973|-94.2412|C',
'ARZ051' => 'F|92|Howard|34.0887|-93.9935|C W|1546|Howard|34.0887|-93.9935|C',
'ARZ052' => 'F|197|Pike|34.1636|-93.6564|C W|1566|Pike|34.1636|-93.6564|C',
'ARZ053' => 'F|71|Clark|34.0510|-93.1764|C W|1525|Clark|34.0510|-93.1764|C',
'ARZ054' => 'F|91|Hot Spring|34.3177|-92.9460|C W|1545|Hot Spring|34.3177|-92.9460|C',
'ARZ055' => 'F|88|Grant|34.2900|-92.4236|C W|1542|Grant|34.2900|-92.4236|C',
'ARZ056' => 'F|96|Jefferson|34.2688|-91.9315|C W|1550|Jefferson|34.2688|-91.9315|C',
'ARZ057' => 'F|66|Arkansas|34.2908|-91.3749|C W|1520|Arkansas|34.2908|-91.3749|C',
'ARZ058' => 'F|196|Phillips|34.4283|-90.8480|C W|1565|Phillips|34.4283|-90.8480|C',
'ARZ059' => 'F|186|Little River|33.7005|-94.2343|C W|1555|Little River|33.7005|-94.2343|C',
'ARZ060' => 'F|90|Hempstead|33.7354|-93.6684|C W|1544|Hempstead|33.7354|-93.6684|C',
'ARZ061' => 'F|193|Nevada|33.6640|-93.3072|C W|1562|Nevada|33.6640|-93.3072|C',
'ARZ062' => 'F|81|Dallas|33.9698|-92.6545|C W|1535|Dallas|33.9698|-92.6545|C',
'ARZ063' => 'F|74|Cleveland|33.8983|-92.1852|C W|1528|Cleveland|33.8983|-92.1852|C',
'ARZ064' => 'F|185|Lincoln|33.9575|-91.7333|C W|1554|Lincoln|33.9575|-91.7333|C',
'ARZ065' => 'F|82|Desha|33.8333|-91.2540|C W|1536|Desha|33.8333|-91.2540|C',
'ARZ066' => 'F|194|Ouachita|33.5933|-92.8820|C W|1563|Ouachita|33.5933|-92.8820|C',
'ARZ067' => 'F|68|Calhoun|33.5580|-92.5031|C W|1522|Calhoun|33.5580|-92.5031|C',
'ARZ068' => 'F|67|Bradley|33.4659|-92.1623|C W|1521|Bradley|33.4659|-92.1623|C',
'ARZ069' => 'F|83|Drew|33.5895|-91.7200|C W|1537|Drew|33.5895|-91.7200|C',
'ARZ070' => 'F|189|Miller|33.3124|-93.8918|C W|1558|Miller|33.3124|-93.8918|C',
'ARZ071' => 'F|182|Lafayette|33.2408|-93.6073|C W|1551|Lafayette|33.2408|-93.6073|C',
'ARZ072' => 'F|75|Columbia|33.2143|-93.2274|C W|1529|Columbia|33.2143|-93.2274|C',
'ARZ073' => 'F|208|Union|33.1713|-92.5973|C W|1577|Union|33.1713|-92.5973|C',
'ARZ074' => 'F|63|Ashley|33.1912|-91.7679|C W|1517|Ashley|33.1912|-91.7679|C',
'ARZ075' => 'F|70|Chicot|33.2672|-91.2940|C W|1524|Chicot|33.2672|-91.2940|C',
'ARZ103' => 'F|3708|Boone County Except Southwest|36.3217|-93.0755|C W|3278|Boone County Except Southwest|36.3217|-93.0755|C',
'ARZ112' => 'F|3702|Newton County Higher Elevations|35.8956|-93.2439|C W|3272|Newton County Higher Elevations|35.8956|-93.2439|C',
'ARZ113' => 'F|3712|Searcy County Lower Elevations|35.9775|-92.7213|C W|3282|Searcy County Lower Elevations|35.9775|-92.7213|C',
'ARZ121' => 'F|3713|Southern Johnson County|35.4736|-93.4744|C W|3283|Southern Johnson County|35.4736|-93.4744|C',
'ARZ122' => 'F|3704|Southern Pope County|35.3423|-93.0596|C W|3274|Southern Pope County|35.3423|-93.0596|C',
'ARZ123' => 'F|3715|Southeast Van Buren County|35.5067|-92.4247|C W|3285|Southeast Van Buren County|35.5067|-92.4247|C',
'ARZ130' => 'F|3701|Western and Northern Logan County|35.2523|-93.7455|C W|3271|Western and Northern Logan County|35.2523|-93.7455|C',
'ARZ137' => 'F|3716|Northern Scott County|34.9845|-94.0579|C W|3286|Northern Scott County|34.9845|-94.0579|C',
'ARZ138' => 'F|3718|Northwest Yell County|35.1143|-93.5043|C W|3288|Northwest Yell County|35.1144|-93.5042|C',
'ARZ140' => 'F|3703|Polk County Lower Elevations|34.4133|-94.3073|C W|3273|Polk County Lower Elevations|34.4133|-94.3073|C',
'ARZ141' => 'F|3720|Central and Eastern Montgomery County|34.5241|-93.6079|C W|3290|Central and Eastern Montgomery County|34.5241|-93.6079|C',
'ARZ203' => 'F|3709|Boone County Higher Elevations|36.1834|-93.2439|C W|3279|Boone County Higher Elevations|36.1834|-93.2439|C',
'ARZ212' => 'F|3710|Newton County Lower Elevations|36.0553|-93.0733|C W|3280|Newton County Lower Elevations|36.0553|-93.0733|C',
'ARZ213' => 'F|3711|Northwest Searcy County Higher Elevations|36.0493|-92.8685|C W|3281|Northwest Searcy County Higher Elevations|36.0493|-92.8685|C',
'ARZ221' => 'F|3700|Johnson County Higher Elevations|35.6552|-93.4471|C W|3270|Johnson County Higher Elevations|35.6552|-93.4471|C',
'ARZ222' => 'F|3714|Pope County Higher Elevations|35.6070|-92.9956|C W|3284|Pope County Higher Elevations|35.6070|-92.9956|C',
'ARZ223' => 'F|3707|Van Buren County Higher Elevations|35.6487|-92.5994|C W|3277|Van Buren County Higher Elevations|35.6487|-92.5994|C',
'ARZ230' => 'F|3717|Southern and Eastern Logan County|35.1586|-93.6717|C W|3287|Southern and Eastern Logan County|35.1586|-93.6717|C',
'ARZ237' => 'F|3705|Central and Southern Scott County|34.8189|-94.0651|C W|3275|Central and Southern Scott County|34.8189|-94.0651|C',
'ARZ238' => 'F|3719|Yell Excluding Northwest|34.9695|-93.3837|C W|3289|Yell Excluding Northwest|34.9694|-93.3837|C',
'ARZ240' => 'F|3721|Northern Polk County Higher Elevations|34.6452|-94.2329|C W|3291|Northern Polk County Higher Elevations|34.6452|-94.2329|C',
'ARZ241' => 'F|3722|Northern Montgomery County Higher Elevations|34.6914|-93.6775|C W|3292|Northern Montgomery County Higher Elevations|34.6914|-93.6775|C',
'ARZ313' => 'F|3706|Eastern, Central, and Southern Searcy County Higher Elevations|35.8697|-92.6677|C W|3276|Eastern, Central, and Southern Searcy County Higher Elevations|35.8697|-92.6677|C',
'ARZ340' => 'F|3723|Southeast Polk County Higher Elevations|34.4489|-94.1274|C W|3293|Southeast Polk County Higher Elevations|34.4489|-94.1274|C',
'ARZ341' => 'F|3724|Southwest Montgomery County Higher Elevations|34.4197|-93.8217|C W|3294|Southwest Montgomery County Higher Elevations|34.4197|-93.8217|C',
'ASC010' => 'C|7|Eastern, AS|-14.2763|-170.6596|S',
'ASC020' => 'C|5|Manu\'a, AS|-14.2219|-169.5060|S',
'ASC030' => 'C|3328|Rose Atoll, AS|-14.5453|-168.1560|S',
'ASC040' => 'C|4|Swains Island, AS|-11.0548|-171.0802|S',
'ASC050' => 'C|6|Western, AS|-14.3241|-170.7691|S',
'ASZ001' => 'F|3032|Tutuila and Aunuu|-14.2995|-170.7128|S W|2328|Tutuila and Aunuu|-14.2995|-170.7128|S',
'ASZ002' => 'F|3026|Manua|-14.2219|-169.5060|S W|2327|Manua|-14.2219|-169.5060|S',
'ASZ003' => 'F|212|Swains Island|-11.0548|-171.0802|S W|2326|Swains Island|-11.0548|-171.0801|S',
'ASZ004' => 'F|3892|Rose Atoll|-14.5453|-168.1560|S W|3443|Rose Atoll|-14.5453|-168.1560|S',
'AZC001' => 'C|2903|Apache, AZ|35.3957|-109.4888|Mm',
'AZC003' => 'C|2888|Cochise, AZ|31.8796|-109.7511|m',
'AZC005' => 'C|2901|Coconino, AZ|35.8387|-111.7705|Mm',
'AZC007' => 'C|2893|Gila, AZ|33.7997|-110.8117|m',
'AZC009' => 'C|2890|Graham, AZ|32.9327|-109.8874|m',
'AZC011' => 'C|3056|Greenlee, AZ|33.2153|-109.2401|m',
'AZC012' => 'C|2895|La Paz, AZ|33.7292|-113.9813|m',
'AZC013' => 'C|2894|Maricopa, AZ|33.3488|-112.4912|m',
'AZC015' => 'C|2899|Mohave, AZ|35.7044|-113.7582|m',
'AZC017' => 'C|2902|Navajo, AZ|35.3996|-110.3214|Mm',
'AZC019' => 'C|2896|Pima, AZ|32.0974|-111.7899|m',
'AZC021' => 'C|2897|Pinal, AZ|32.9043|-111.3447|m',
'AZC023' => 'C|2889|Santa Cruz, AZ|31.5260|-110.8466|m',
'AZC025' => 'C|2900|Yavapai, AZ|34.5999|-112.5538|m',
'AZC027' => 'C|2898|Yuma, AZ|32.7694|-113.9056|m',
'AZZ001' => 'F|2573|Northwest Plateau|36.5921|-113.3317|m',
'AZZ002' => 'F|2572|Lake Havasu and Fort Mohave|34.6762|-114.3492|m',
'AZZ003' => 'F|2208|Northwest Deserts|35.1839|-113.8480|m',
'AZZ004' => 'F|2213|Kaibab Plateau|36.6514|-112.2018|m',
'AZZ005' => 'F|2214|Marble and Glen Canyons|36.7777|-111.6681|Mm',
'AZZ006' => 'F|2215|Grand Canyon Country|36.1840|-112.3183|m',
'AZZ007' => 'F|2212|Coconino Plateau|35.7341|-112.5569|Mm',
'AZZ008' => 'F|2211|Yavapai County Mountains|34.8361|-112.6554|m',
'AZZ009' => 'F|2802|Northeast Plateaus and Mesas Hwy 264 Northward|36.4046|-110.9711|Mm',
'AZZ010' => 'F|2642|Chinle Valley|36.5404|-109.7068|M',
'AZZ011' => 'F|2218|Chuska Mountains and Defiance Plateau|35.8693|-109.2344|Mm',
'AZZ012' => 'F|2808|Little Colorado River Valley in Coconino County|35.4788|-111.1876|Mm',
'AZZ013' => 'F|2217|Little Colorado River Valley in Navajo County|34.8440|-110.3127|Mm',
'AZZ014' => 'F|2219|Little Colorado River Valley in Apache County|34.5768|-109.4198|Mm',
'AZZ015' => 'F|2216|Western Mogollon Rim|35.2296|-111.7689|m',
'AZZ016' => 'F|2641|Eastern Mogollon Rim|34.4418|-110.8122|m',
'AZZ017' => 'F|2643|White Mountains|33.9272|-109.6483|m',
'AZZ018' => 'F|2205|Northern Gila County|34.0401|-110.9225|m',
'AZZ036' => 'F|2209|Lake Mead National Recreation Area|35.8011|-114.3194|m',
'AZZ037' => 'F|2210|Yavapai County Valleys and Basins|34.4302|-112.5126|m',
'AZZ038' => 'F|2639|Oak Creek and Sycamore Canyons|34.9117|-111.8796|m',
'AZZ039' => 'F|2803|Black Mesa Area|36.3550|-110.2429|Mm',
'AZZ040' => 'F|2640|Northeast Plateaus and Mesas South of Hwy 264|35.4889|-110.1825|Mm',
'AZZ101' => 'W|2272|Lake Mead NRA/Colorado River-AZ side|35.5263|-114.3267|m',
'AZZ102' => 'W|2271|Northwest Deserts/Northwest Plateau|35.7402|-113.6440|m',
'AZZ104' => 'W|2270|Kaibab Plateau|36.6514|-112.2018|m',
'AZZ105' => 'W|2269|Marble and Glen Canyons|36.7777|-111.6681|Mm',
'AZZ106' => 'W|2268|Grand Canyon Country|36.1840|-112.3183|m',
'AZZ107' => 'W|2267|Coconino Plateau|35.7341|-112.5569|Mm',
'AZZ108' => 'W|2259|Yavapai County Mountains|34.8361|-112.6554|m',
'AZZ109' => 'W|2264|Northeast Plateaus and Mesas Hwy 264 Northward|36.4046|-110.9711|m',
'AZZ110' => 'W|2262|Chinle Valley|36.5404|-109.7068|M',
'AZZ111' => 'W|2261|Chuska Mountains and Defiance Plateau|35.8693|-109.2344|Mm',
'AZZ112' => 'W|2265|Little Colorado River Valley in Coconino County|35.4788|-111.1876|Mm',
'AZZ113' => 'W|2256|Little Colorado River Valley in Navajo County|34.8440|-110.3127|Mm',
'AZZ114' => 'W|2255|Little Colorado River Valley in Apache County|34.5768|-109.4198|Mm',
'AZZ115' => 'W|2266|Western Mogollon Rim|35.2296|-111.7689|m',
'AZZ116' => 'W|2257|Eastern Mogollon Rim|34.4418|-110.8122|m',
'AZZ117' => 'W|2253|White Mountains|33.9272|-109.6483|m',
'AZZ118' => 'W|2254|Northern Gila County|34.0401|-110.9225|m',
'AZZ131' => 'W|2249|Yuma/Martinez Lake and Vicinity/Lower Colorado River Valley AZ|33.1902|-114.4968|m',
'AZZ132' => 'W|2251|Central Deserts|33.2296|-113.0872|m',
'AZZ133' => 'W|2252|Southern Gila County/Tonto National Forest Foothills|33.5759|-110.9898|m',
'AZZ137' => 'W|2258|Yavapai County Valleys and Basins|34.4302|-112.5126|m',
'AZZ138' => 'W|2250|Oak Creek and Sycamore Canyons|34.9117|-111.8796|m',
'AZZ139' => 'W|2263|Black Mesa Area|36.3550|-110.2429|Mm',
'AZZ140' => 'W|2260|Northeast Plateaus and Mesas South of Hwy 264|35.4889|-110.1825|Mm',
'AZZ150' => 'W|3113|Pima-South Central Pinal-Tohono Oodham Nation|32.2415|-111.8804|m',
'AZZ151' => 'W|3115|Eastern Pima-Southeastern Pinal-Santa Cruz-Western Cochise|32.0119|-110.6581|m',
'AZZ152' => 'W|3116|Southern Graham-Central and Eastern Cochise-Southern Greenlee-Lower Elevations of the San Carlos Apache Nation in Graham County|32.4245|-109.6836|m',
'AZZ153' => 'W|3117|Northern Graham-Northern Greenlee-White and Gila Mountains|33.3874|-109.4882|m',
'AZZ154' => 'W|3114|Mountains above 5500 feet|32.0618|-109.9682|m',
'AZZ501' => 'F|2206|Western Pima County Including Ajo/Organ Pipe Cactus National Monument|32.2167|-112.9766|m',
'AZZ502' => 'F|2637|Tohono O\'odham Nation including Sells|32.1434|-112.0640|m',
'AZZ503' => 'F|2587|Upper Santa Cruz River and Altar Valleys including Nogales|31.6207|-111.1630|m',
'AZZ504' => 'F|2638|Tucson Metro Area including Tucson/Green Valley/Marana/Vail|32.1761|-111.0565|m',
'AZZ505' => 'F|2207|South Central Pinal County including Eloy/Picacho Peak State Park|32.7452|-111.3393|m',
'AZZ506' => 'F|2567|Southeast Pinal County including Kearny/Mammoth/Oracle|32.8255|-110.7518|m',
'AZZ507' => 'F|3182|Upper San Pedro River Valley including Sierra Vista/Benson|31.9331|-110.3073|m',
'AZZ508' => 'F|2908|Eastern Cochise County Below 5000 Feet including Douglas/Willcox|31.9147|-109.5452|m',
'AZZ509' => 'F|2588|Upper Gila River and Aravaipa Valleys including Clifton/Safford|32.8686|-109.7443|m',
'AZZ510' => 'F|2765|White Mountains of Graham and Greenlee Counties including Hannagan Meadow|33.3867|-109.4881|m',
'AZZ511' => 'F|2763|Galiuro and Pinaleno Mountains including Mount Graham|32.6525|-110.1153|m',
'AZZ512' => 'F|157|Chiricahua Mountains including Chiricahua National Monument|31.8616|-109.3560|m',
'AZZ513' => 'F|158|Dragoon/Mule/Huachuca and Santa Rita Mountains including Bisbee/Canelo Hills/Madera Canyon|31.6043|-110.3833|m',
'AZZ514' => 'F|2764|Santa Catalina and Rincon Mountains including Mount Lemmon/Summerhaven|32.3364|-110.6808|m',
'AZZ515' => 'F|2568|Baboquivari Mountains including Kitt Peak|31.8186|-111.5931|m',
'AZZ530' => 'F|3333|Parker Valley|33.6989|-114.4568|m',
'AZZ531' => 'F|3326|Kofa|33.2172|-114.0280|m',
'AZZ532' => 'F|3328|Yuma|32.6544|-114.5114|m',
'AZZ533' => 'F|3336|Central La Paz|33.8116|-113.8131|m',
'AZZ534' => 'F|3341|Aguila Valley|33.8662|-112.9785|m',
'AZZ535' => 'F|3325|Southeast Yuma County|32.3859|-113.7573|m',
'AZZ536' => 'F|3327|Gila River Valley|32.8221|-113.8040|m',
'AZZ537' => 'F|3337|Northwest Valley|33.7421|-112.4770|m',
'AZZ538' => 'F|3340|Tonopah Desert|33.3971|-112.9704|m',
'AZZ539' => 'F|3339|Gila Bend|32.8542|-113.0566|m',
'AZZ540' => 'F|3338|Buckeye/Avondale|33.3912|-112.4004|m',
'AZZ541' => 'F|3342|Cave Creek/New River|33.8086|-112.0129|m',
'AZZ542' => 'F|3343|Deer Valley|33.7122|-112.1301|m',
'AZZ543' => 'F|3344|Central Phoenix|33.4331|-112.0552|m',
'AZZ544' => 'F|3345|North Phoenix/Glendale|33.5716|-112.1525|m',
'AZZ545' => 'F|3346|New River Mesa|33.9260|-111.8887|m',
'AZZ546' => 'F|3350|Scottsdale/Paradise Valley|33.5351|-111.8891|m',
'AZZ547' => 'F|3348|Rio Verde/Salt River|33.7012|-111.5100|m',
'AZZ548' => 'F|3349|East Valley|33.3765|-111.8134|m',
'AZZ549' => 'F|3347|Fountain Hills/East Mesa|33.5349|-111.6592|m',
'AZZ550' => 'F|3306|South Mountain/Ahwatukee|33.2829|-112.0449|m',
'AZZ551' => 'F|3307|Southeast Valley/Queen Creek|33.2616|-111.7353|m',
'AZZ552' => 'F|3316|Superior|33.2702|-111.1880|m',
'AZZ553' => 'F|3318|Northwest Pinal County|33.0209|-111.7511|m',
'AZZ554' => 'F|3319|West Pinal County|32.8658|-112.1203|m',
'AZZ555' => 'F|3317|Apache Junction/Gold Canyon|33.2584|-111.3827|m',
'AZZ556' => 'F|3312|Tonto Basin|33.7079|-111.1275|m',
'AZZ557' => 'F|3313|Mazatzal Mountains|33.8233|-111.4206|m',
'AZZ558' => 'F|3314|Pinal/Superstition Mountains|33.3639|-110.9698|m',
'AZZ559' => 'F|3315|Sonoran Desert Natl Monument|32.8020|-112.5235|m',
'AZZ560' => 'F|3308|San Carlos|33.3416|-110.5320|m',
'AZZ561' => 'F|3309|Dripping Springs|33.1020|-110.7853|m',
'AZZ562' => 'F|3310|Globe/Miami|33.4344|-110.8175|m',
'AZZ563' => 'F|3311|Southeast Gila County|33.6107|-110.4548|m',
'CAC001' => 'C|2933|Alameda, CA|37.6466|-121.8860|P',
'CAC003' => 'C|2922|Alpine, CA|38.5973|-119.8207|P',
'CAC005' => 'C|2938|Amador, CA|38.4461|-120.6519|P',
'CAC007' => 'C|2943|Butte, CA|39.6669|-121.6007|P',
'CAC009' => 'C|2939|Calaveras, CA|38.2046|-120.5541|P',
'CAC011' => 'C|2923|Colusa, CA|39.1775|-122.2370|P',
'CAC013' => 'C|3058|Contra Costa, CA|37.9163|-121.9276|P',
'CAC015' => 'C|3083|Del Norte, CA|41.7431|-123.8970|P',
'CAC017' => 'C|2935|El Dorado, CA|38.7785|-120.5247|P',
'CAC019' => 'C|2911|Fresno, CA|36.7584|-119.6503|P',
'CAC021' => 'C|2941|Glenn, CA|39.5984|-122.3922|P',
'CAC023' => 'C|2906|Humboldt, CA|40.6984|-123.8735|P',
'CAC025' => 'C|2910|Imperial, CA|33.0395|-115.3653|P',
'CAC027' => 'C|2944|Inyo, CA|36.5111|-117.4107|P',
'CAC029' => 'C|2914|Kern, CA|35.3429|-118.7298|P',
'CAC031' => 'C|2841|Kings, CA|36.0753|-119.8156|P',
'CAC033' => 'C|2929|Lake, CA|39.0997|-122.7532|P',
'CAC035' => 'C|2927|Lassen, CA|40.6736|-120.5943|P',
'CAC037' => 'C|2912|Los Angeles, CA|34.3203|-118.2252|P',
'CAC039' => 'C|2919|Madera, CA|37.2180|-119.7626|P',
'CAC041' => 'C|2905|Marin, CA|38.0725|-122.7185|P',
'CAC043' => 'C|2918|Mariposa, CA|37.5815|-119.9055|P',
'CAC045' => 'C|3061|Mendocino, CA|39.4400|-123.3912|P',
'CAC047' => 'C|2916|Merced, CA|37.1926|-120.7180|P',
'CAC049' => 'C|2931|Modoc, CA|41.5899|-120.7250|P',
'CAC051' => 'C|2883|Mono, CA|37.9390|-118.8867|P',
'CAC053' => 'C|2904|Monterey, CA|36.2169|-121.2389|P',
'CAC055' => 'C|2934|Napa, CA|38.5066|-122.3305|P',
'CAC057' => 'C|2921|Nevada, CA|39.3014|-120.7683|P',
'CAC059' => 'C|3102|Orange, CA|33.7030|-117.7605|P',
'CAC061' => 'C|2936|Placer, CA|39.0635|-120.7176|P',
'CAC063' => 'C|2924|Plumas, CA|40.0047|-120.8386|P',
'CAC065' => 'C|2909|Riverside, CA|33.7437|-115.9939|P',
'CAC067' => 'C|3081|Sacramento, CA|38.4542|-121.3384|P',
'CAC069' => 'C|2915|San Benito, CA|36.6057|-121.0750|P',
'CAC071' => 'C|1520|San Bernardino, CA|34.8415|-116.1784|P',
'CAC073' => 'C|2908|San Diego, CA|33.0354|-116.7335|P',
'CAC075' => 'C|3066|San Francisco, CA|37.7558|-122.4424|P',
'CAC077' => 'C|2925|San Joaquin, CA|37.9345|-121.2720|P',
'CAC079' => 'C|3080|San Luis Obispo, CA|35.3872|-120.4040|P',
'CAC081' => 'C|3065|San Mateo, CA|37.4218|-122.3293|P',
'CAC083' => 'C|1519|Santa Barbara, CA|34.6731|-120.0165|P',
'CAC085' => 'C|2932|Santa Clara, CA|37.2325|-121.6963|P',
'CAC087' => 'C|3059|Santa Cruz, CA|37.0563|-122.0018|P',
'CAC089' => 'C|2940|Shasta, CA|40.7638|-122.0405|P',
'CAC091' => 'C|2907|Sierra, CA|39.5804|-120.5160|P',
'CAC093' => 'C|2928|Siskiyou, CA|41.5927|-122.5404|P',
'CAC095' => 'C|3057|Solano, CA|38.2805|-121.9266|P',
'CAC097' => 'C|3060|Sonoma, CA|38.5286|-122.8873|P',
'CAC099' => 'C|2842|Stanislaus, CA|37.5592|-120.9978|P',
'CAC101' => 'C|2926|Sutter, CA|39.0345|-121.6949|P',
'CAC103' => 'C|2942|Tehama, CA|40.1257|-122.2339|P',
'CAC105' => 'C|2930|Trinity, CA|40.6507|-123.1126|P',
'CAC107' => 'C|2920|Tulare, CA|36.2201|-118.8005|P',
'CAC109' => 'C|2917|Tuolumne, CA|38.0276|-119.9548|P',
'CAC111' => 'C|2913|Ventura, CA|34.4567|-119.0835|P',
'CAC113' => 'C|2843|Yolo, CA|38.6867|-121.9016|P',
'CAC115' => 'C|2937|Yuba, CA|39.2691|-121.3512|P',
'CAZ006' => 'F|3784|San Francisco|37.7558|-122.4424|P W|3357|San Francisco|37.7558|-122.4424|P',
'CAZ013' => 'F|2230|Shasta Lake Area / Northern Shasta County|40.9299|-122.2247|P',
'CAZ014' => 'F|2231|Burney Basin / Eastern Shasta County|40.9423|-121.4882|P',
'CAZ015' => 'F|2652|Northern Sacramento Valley|40.2198|-122.2949|P',
'CAZ016' => 'F|2648|Central Sacramento Valley|39.3764|-121.9260|P',
'CAZ017' => 'F|2590|Southern Sacramento Valley|38.6268|-121.5626|P',
'CAZ018' => 'F|2885|Carquinez Strait and Delta|38.1433|-121.7622|P',
'CAZ019' => 'F|2589|Northern San Joaquin Valley|37.7581|-121.0410|P',
'CAZ038' => 'F|3746|Cuyama Valley|34.9422|-119.7374|P',
'CAZ043' => 'F|3213|San Diego County Coastal Areas|32.9298|-117.2007|P',
'CAZ048' => 'F|3228|San Bernardino and Riverside County Valleys-The Inland Empire|33.8468|-117.2517|P',
'CAZ050' => 'F|3212|San Diego County Inland Valleys|33.0253|-116.9615|P',
'CAZ055' => 'F|3217|San Bernardino County Mountains|34.2094|-117.0606|P',
'CAZ056' => 'F|3220|Riverside County Mountains|33.6162|-116.6251|P',
'CAZ057' => 'F|3219|Santa Ana Mountains and Foothills|33.6273|-117.4605|P',
'CAZ058' => 'F|3216|San Diego County Mountains|33.0415|-116.5618|P',
'CAZ060' => 'F|3218|Apple and Lucerne Valleys|34.5432|-117.0201|P',
'CAZ061' => 'F|3214|Coachella Valley|33.6887|-116.2371|P',
'CAZ062' => 'F|3215|San Diego County Deserts|33.0924|-116.2679|P',
'CAZ063' => 'F|3544|Mountains Southwestern Shasta County to Western Colusa County|39.8484|-122.7033|P',
'CAZ065' => 'F|3223|San Gorgonio Pass Near Banning|33.9303|-116.6130|P',
'CAZ066' => 'F|2651|Northeast Foothills/Sacramento Valley|40.1117|-121.7566|P',
'CAZ067' => 'F|2646|Motherlode|38.6192|-120.7698|P',
'CAZ068' => 'F|2649|Western Plumas County/Lassen Park|40.1971|-121.3501|P',
'CAZ069' => 'F|2645|West Slope Northern Sierra Nevada|38.7829|-120.3423|P',
'CAZ070' => 'F|2224|Surprise Valley California|41.6116|-120.0862|P',
'CAZ071' => 'F|2644|Lassen-Eastern Plumas-Eastern Sierra Counties|40.4660|-120.5471|P',
'CAZ072' => 'F|2647|Greater Lake Tahoe Area|38.9481|-119.9683|P',
'CAZ073' => 'F|2220|Mono|37.9390|-118.8867|P',
'CAZ080' => 'F|3525|Western Siskiyou County|41.5562|-123.1640|P',
'CAZ081' => 'F|3524|Central Siskiyou County|41.7362|-122.5631|P',
'CAZ082' => 'F|2222|South Central Siskiyou County|41.2704|-122.1846|P',
'CAZ083' => 'F|2221|North Central and Southeast Siskiyou County|41.5425|-121.8968|P',
'CAZ084' => 'F|2650|Northeast Siskiyou and Northwest Modoc Counties|41.8639|-121.6371|P',
'CAZ085' => 'F|2223|Modoc County|41.5611|-120.7585|P',
'CAZ087' => 'F|3749|Catalina and Santa Barbara Islands|33.3833|-118.4412|P',
'CAZ088' => 'F|3769|Santa Clarita Valley|34.4534|-118.5579|P',
'CAZ101' => 'F|3541|Coastal Del Norte|41.7364|-124.1146|P',
'CAZ102' => 'F|3542|Del Norte Interior|41.7446|-123.8512|P',
'CAZ103' => 'F|3537|Northern Humboldt Coast|40.8104|-124.1211|P',
'CAZ104' => 'F|3543|Southwestern Humboldt|40.2708|-124.1428|P',
'CAZ105' => 'F|3531|Northern Humboldt Interior|41.1031|-123.7436|P',
'CAZ106' => 'F|3538|Southern Humboldt Interior|40.4135|-123.7949|P',
'CAZ107' => 'F|3540|Northern Trinity|40.9086|-122.9759|P',
'CAZ108' => 'F|3539|Southern Trinity|40.3374|-123.2788|P',
'CAZ109' => 'F|3532|Mendocino Coast|39.3778|-123.7271|P',
'CAZ110' => 'F|3536|Northwestern Mendocino Interior|39.6359|-123.4371|P',
'CAZ111' => 'F|3535|Northeastern Mendocino Interior|39.7603|-123.1396|P',
'CAZ112' => 'F|3533|Southwestern Mendocino Interior|39.1561|-123.4915|P',
'CAZ113' => 'F|3534|Southeastern Mendocino Interior|39.0904|-123.1953|P',
'CAZ114' => 'F|3527|Northern Lake County|39.3619|-122.8628|P',
'CAZ115' => 'F|3528|Southern Lake County|38.9779|-122.7022|P',
'CAZ201' => 'W|3076|North Coast|40.7674|-124.0207|P',
'CAZ202' => 'W|3061|Coastal Mendocino|39.2753|-123.6654|P',
'CAZ203' => 'W|3052|Upper Smith|41.8153|-123.8421|P',
'CAZ204' => 'W|3051|Lower Middle Klamath|41.4252|-123.5768|P',
'CAZ211' => 'W|3053|Hoopa|40.9507|-123.6867|P',
'CAZ212' => 'W|3062|Van Duzen/Mad River|40.3036|-123.5603|P',
'CAZ213' => 'W|3054|Eastern Portion of Shasta/Trinity NF|40.9299|-122.2247|P',
'CAZ214' => 'W|2312|Burney Basin and Northeast Plateau in Shasta County Including Northwest Lassen NF north of Lassen NP|40.9423|-121.4882|P',
'CAZ215' => 'W|3056|Northern Sacramento Valley to Southern Tehama County Line Below 1000 Ft|40.2198|-122.2949|P',
'CAZ216' => 'W|3059|Central Sacramento Valley including Glenn/Colusa/Yuba/Northern Sutter/Butte County Below 1000 Ft|39.3662|-121.9716|P',
'CAZ217' => 'W|3065|Southern Sacramento Valley In Yolo/Sacramento/Far Western Placer/Southern Sutter and Solano County Below 1000 Ft - Excludes the Delta|38.6268|-121.5626|P',
'CAZ218' => 'W|2316|Eastern Delta|38.1433|-121.7622|P',
'CAZ219' => 'W|2317|Northern San Joaquin Valley in San Joaquin and Stanislaus Counties Below 1000 ft - Excludes the Delta|37.7581|-121.0410|P',
'CAZ220' => 'W|2319|Southern Motherlode From 1000 to 3000 Ft/Calaveras and Toulumne Counties|38.0571|-120.4674|P',
'CAZ221' => 'W|2318|Stanislaus National Forest|38.2232|-120.0258|P',
'CAZ226' => 'W|2320|Owens Valley/Southern Inyo Forest|36.6063|-118.1366|P',
'CAZ227' => 'W|2303|Death Valley National Park|36.4677|-117.1739|P',
'CAZ228' => 'W|2322|Mojave Desert Including Morongo Valley/Yucca Valley|34.9775|-116.0635|P',
'CAZ229' => 'W|2323|Lower Colorado River Valley|34.4988|-114.5011|P',
'CAZ230' => 'W|2324|Joshua Tree National Park|33.9450|-115.8926|P',
'CAZ231' => 'W|2325|Lower Colorado River Valley CA|33.3131|-114.6609|P',
'CAZ232' => 'W|2321|Imperial County And Eastern Riverside County|33.3209|-115.3729|P',
'CAZ238' => 'W|3322|Cuyama Valley|34.9422|-119.7374|P',
'CAZ243' => 'W|2509|San Diego County Coastal Areas|32.9298|-117.2007|P',
'CAZ248' => 'W|2520|San Bernardino and Riverside County Valleys - The Inland Empire|33.8468|-117.2517|P',
'CAZ250' => 'W|2508|San Diego County Inland Valleys|33.0253|-116.9615|P',
'CAZ255' => 'W|2513|San Bernardino County Mountains-Including The Mountain Top And Front Country Ranger Districts Of The San Bernardino National Forest|34.2094|-117.0606|P',
'CAZ256' => 'W|2516|Riverside County Mountains-Including The San Jacinto Ranger District Of The San Bernardino National Forest|33.6162|-116.6251|P',
'CAZ257' => 'W|2515|Santa Ana Mountains-Including The Trabuco Ranger District of the Cleveland National Forest|33.6273|-117.4605|P',
'CAZ258' => 'W|2512|San Diego County Mountains-Including The Palomar And Descanso Ranger Districts of the Cleveland National Forest|33.0415|-116.5618|P',
'CAZ260' => 'W|2514|Victor Valley - Apple Valley - Lucerne Valley - Johnson Valley|34.5432|-117.0201|P',
'CAZ261' => 'W|2510|Coachella Valley-Including The Palm Springs South Coast Desert District|33.6887|-116.2371|P',
'CAZ262' => 'W|2511|San Diego County Deserts-Including The Anza Borrego Desert State Park|33.0924|-116.2679|P',
'CAZ263' => 'W|3058|Southeast Edge Shasta/Trinity NF and Western Portions of Tehama/Glenn RU|40.2686|-122.7674|P',
'CAZ264' => 'W|3064|Lake County Portion of Lake-Napa-Sonoma Unit|38.9683|-122.6982|P',
'CAZ265' => 'W|2519|San Gorgonio Pass Near Banning|33.9303|-116.6130|P',
'CAZ266' => 'W|2313|Northern Sierra Foothills from 1000 to 3000 Ft. Includes Nevada-Yuba-Placer RU and Anador-Eldorado RU|40.1117|-121.7566|P',
'CAZ267' => 'W|2315|Northern Motherlode From 1000 to 3000 Ft. From Yuba To Amador Counties|38.9246|-120.9341|P',
'CAZ268' => 'W|2311|Northern Sierra Including Lassen NP and Plumas and Lassen NF/S West of the Sierra Crest - West of Evans Peak/Grizzly Peak/Beckworth Peak|40.1971|-121.3501|P',
'CAZ269' => 'W|2314|Tahoe - Eldorado National Forest|39.0859|-120.5136|P',
'CAZ270' => 'W|3049|Surprise Valley California|41.6116|-120.0862|P',
'CAZ271' => 'W|3045|Western Lassen, Eastern Plumas, and Eastern Sierra Counties|40.3377|-120.7240|P',
'CAZ272' => 'W|3043|Greater Lake Tahoe and Truckee Area|39.1872|-120.0611|P',
'CAZ274' => 'W|3041|Southern Mono County|37.7791|-118.7137|P',
'CAZ276' => 'W|3063|Interior Mendocino|39.3340|-123.3813|P',
'CAZ277' => 'W|3055|W Mendocino NF/E Mendocino Unit|39.6410|-123.0519|P',
'CAZ278' => 'W|3046|Eastern Lassen County|40.7090|-120.3318|P',
'CAZ279' => 'W|3060|Eastern Mendocino NF|39.7021|-122.7447|P',
'CAZ280' => 'W|3072|Western Klamath National Forest|41.5493|-123.1232|P',
'CAZ281' => 'W|3071|Central Siskiyou County Including Shasta Valley|41.7362|-122.5631|P',
'CAZ282' => 'W|3073|Shasta-Trinity National Forest in Siskiyou County|41.2704|-122.1846|P',
'CAZ283' => 'W|3057|Trinity|40.7725|-123.0553|P',
'CAZ284' => 'W|3070|Siskiyou County from the Cascade Mountains East and South to Mt Shasta|41.6384|-121.8691|P',
'CAZ285' => 'W|2747|Modoc County Except for the Surprise Valley|41.5872|-120.8042|P',
'CAZ287' => 'W|3325|Catalina and Santa Barbara Islands|33.3833|-118.4412|P',
'CAZ288' => 'W|3458|Santa Clarita Valley|34.4534|-118.5579|P',
'CAZ298' => 'W|2891|Indian Wells Valley|35.6271|-117.8015|P',
'CAZ299' => 'W|2892|Kern County Desert|35.0767|-118.0155|P',
'CAZ300' => 'F|3635|West Side Mountains north of 198|36.6593|-120.7869|P',
'CAZ301' => 'F|3636|Los Banos - Dos Palos|36.9125|-120.7212|P',
'CAZ302' => 'F|3637|Merced - Madera - Mendota|37.0903|-120.4536|P',
'CAZ303' => 'F|3638|Planada - Le Grand - Snelling|37.2577|-120.1930|P',
'CAZ304' => 'F|3639|Coalinga - Avenal|36.0678|-120.1879|P',
'CAZ305' => 'F|3640|West Side of Fresno and Kings Counties|36.2870|-120.1034|P',
'CAZ306' => 'F|3641|Caruthers - San Joaquin - Selma|36.5869|-119.8953|P',
'CAZ307' => 'F|3642|Fresno-Clovis|36.7953|-119.7342|P',
'CAZ308' => 'F|3643|West Side Mountains South of 198|35.6837|-120.0363|P',
'CAZ309' => 'F|3644|Buttonwillow - Lost Hills - I5|35.6098|-119.6082|P',
'CAZ310' => 'F|3645|Delano-Wasco-Shafter|35.7752|-119.3702|P',
'CAZ311' => 'F|3646|Hanford - Corcoran - Lemoore|36.2260|-119.5882|P',
'CAZ312' => 'F|3647|Visalia - Porterville - Reedley|36.3626|-119.2605|P',
'CAZ313' => 'F|3648|Buena Vista|35.2078|-119.4499|P',
'CAZ314' => 'F|3649|Bakersfield|35.3612|-119.0216|P',
'CAZ315' => 'F|3650|Southeast San Joaquin Valley|35.7755|-119.0391|P',
'CAZ316' => 'F|3651|South End San Joaquin Valley|35.1382|-118.9898|P',
'CAZ317' => 'F|3652|Mariposa Madera Foothills|37.3511|-119.9965|P',
'CAZ318' => 'F|3653|Mariposa-Madera Lower Sierra|37.4854|-119.8078|P',
'CAZ319' => 'F|3845|Fresno-Tulare Foothills|36.6070|-119.2012|P',
'CAZ320' => 'F|3654|Fresno-Tulare Lower Sierra|36.8370|-119.1509|P',
'CAZ321' => 'F|3655|South End Sierra Foothills|35.7347|-118.8800|P',
'CAZ322' => 'F|3656|South End of the Lower Sierra|35.9436|-118.7513|P',
'CAZ323' => 'F|3657|Yosemite NP outside of the valley|37.8529|-119.5530|P',
'CAZ324' => 'F|3658|Yosemite Valley|37.7184|-119.6620|P',
'CAZ325' => 'F|3659|San Joaquin River Canyon|37.3286|-119.3176|P',
'CAZ326' => 'F|3660|Upper San Joaquin River|37.4492|-119.1195|P',
'CAZ327' => 'F|3846|Kaiser to Rodgers Ridge|37.1044|-119.0287|P',
'CAZ328' => 'F|3661|Kings Canyon NP|36.8990|-118.5876|P',
'CAZ329' => 'F|3662|Grant Grove Area|36.7902|-118.8599|P',
'CAZ330' => 'F|3663|Sequoia NP|36.5082|-118.5750|P',
'CAZ331' => 'F|3664|South End of the Upper Sierra|36.0209|-118.3399|P',
'CAZ332' => 'F|3665|Kern River Valley|35.6428|-118.4122|P',
'CAZ333' => 'F|3666|Piute Walker Basin|35.4383|-118.4292|P',
'CAZ334' => 'F|3667|Tehachapi|35.1324|-118.5472|P',
'CAZ335' => 'F|3668|Grapevine|34.8909|-118.9043|P',
'CAZ336' => 'F|3669|Frazier Mountain Communities|34.9239|-119.1812|P',
'CAZ337' => 'F|3670|Indian Wells Valley|35.6195|-117.7591|P',
'CAZ338' => 'F|3671|Mojave Desert Slopes|35.2364|-118.1893|P',
'CAZ339' => 'F|3672|Mojave Desert|35.0734|-117.9052|P',
'CAZ340' => 'F|3762|San Luis Obispo County Beaches|35.3656|-120.8857|P W|3337|San Luis Obispo County Beaches|35.3660|-120.8860|P',
'CAZ341' => 'F|3752|San Luis Obispo County Inland Central Coast|35.1214|-120.5471|P W|3328|San Luis Obispo County Inland Central Coast|35.1214|-120.5471|P',
'CAZ342' => 'F|3759|Santa Lucia Mountains|35.4597|-120.7950|P W|3334|Santa Lucia Mountains|35.4597|-120.7949|P',
'CAZ343' => 'F|3760|Southern Salinas Valley|35.6395|-120.7122|P W|3335|Southern Salinas Valley|35.6395|-120.7122|P',
'CAZ344' => 'F|3748|San Luis Obispo County Interior Valleys|35.4405|-120.1532|P W|3324|San Luis Obispo County Interior Valleys|35.4405|-120.1532|P',
'CAZ345' => 'F|3747|San Luis Obispo County Mountains|35.1768|-120.1048|P W|3323|San Luis Obispo County Mountains|35.1768|-120.1048|P',
'CAZ346' => 'F|3763|Santa Barbara County Central Coast Beaches|34.7179|-120.5534|P W|3338|Santa Barbara County Central Coast Beaches|34.7179|-120.5534|P',
'CAZ347' => 'F|3761|Santa Barbara County Inland Central Coast|34.7553|-120.3762|P W|3336|Santa Barbara County Inland Central Coast|34.7553|-120.3762|P',
'CAZ348' => 'F|3745|Santa Ynez Valley|34.6908|-120.0988|P W|3321|Santa Ynez Valley|34.6908|-120.0988|P',
'CAZ349' => 'F|3770|Santa Barbara County Southwestern Coast|34.5052|-120.3013|P W|3343|Santa Barbara County Southwestern Coast|34.5052|-120.3013|P',
'CAZ350' => 'F|3750|Santa Barbara County Southeastern Coast|34.4344|-119.7142|P W|3326|Santa Barbara County Southeastern Coast|34.4344|-119.7142|P',
'CAZ351' => 'F|3766|Santa Ynez Mountains Western Range|34.5164|-119.9838|P W|3341|Santa Ynez Mountains Western Range|34.5164|-119.9838|P',
'CAZ352' => 'F|3765|Santa Ynez Mountains Eastern Range|34.4707|-119.5480|P W|3340|Santa Ynez Mountains Eastern Range|34.4707|-119.5480|P',
'CAZ353' => 'F|3744|Santa Barbara County Interior Mountains|34.7747|-119.8230|P W|3320|Santa Barbara County Interior Mountains|34.7747|-119.8230|P',
'CAZ354' => 'F|3764|Ventura County Beaches|34.2116|-119.2077|P W|3339|Ventura County Beaches|34.2116|-119.2077|P',
'CAZ355' => 'F|3751|Ventura County Inland Coast|34.2366|-119.0715|P W|3327|Ventura County Inland Coast|34.2366|-119.0715|P',
'CAZ356' => 'F|3757|Lake Casitas|34.4011|-119.3447|P W|3332|Lake Casitas|34.4011|-119.3447|P',
'CAZ357' => 'F|3758|Ojai Valley|34.4268|-119.2615|P W|3333|Ojai Valley|34.4268|-119.2615|P',
'CAZ358' => 'F|3742|Central Ventura County Valleys|34.3897|-119.0367|P W|3459|Central Ventura County Valleys|34.3897|-119.0367|P',
'CAZ362' => 'F|3755|Malibu Coast|34.0408|-118.6777|P W|3331|Malibu Coast|34.0408|-118.6777|P',
'CAZ366' => 'F|3756|Los Angeles County Beaches|33.8457|-118.3308|P W|3468|Los Angeles County Beaches|33.8457|-118.3308|P',
'CAZ367' => 'F|3914|Palos Verdes Hills|33.7652|-118.3624|P W|3469|Palos Verdes Hills|33.7652|-118.3624|P',
'CAZ368' => 'F|3848|Los Angeles County Inland Coast including Downtown Los Angeles|33.9486|-118.2407|P W|3342|Los Angeles County Inland Coast including Downtown Los Angeles|33.9486|-118.2407|P',
'CAZ369' => 'F|3741|Western Santa Monica Mountains Recreational Area|34.0907|-118.8890|P W|3317|Western Santa Monica Mountains Recreational Area|34.0907|-118.8890|P',
'CAZ370' => 'F|3915|Eastern Santa Monica Mountains Recreational Area|34.0938|-118.5622|P W|3463|Eastern Santa Monica Mountains Recreational Area|34.0938|-118.5622|P',
'CAZ371' => 'F|3912|Calabasas and Agoura Hills|34.1299|-118.7423|P W|3461|Calabasas and Agoura Hills|34.1299|-118.7423|P',
'CAZ372' => 'F|3767|Western San Fernando Valley|34.2249|-118.5083|P W|3464|Western San Fernando Valley|34.2249|-118.5083|P',
'CAZ373' => 'F|3913|Eastern San Fernando Valley|34.1898|-118.2987|P W|3465|Eastern San Fernando Valley|34.1898|-118.2987|P',
'CAZ374' => 'F|3768|Southeastern Ventura County Valleys|34.2322|-118.8394|P W|3457|Southeastern Ventura County Valleys|34.2322|-118.8394|P',
'CAZ375' => 'F|3905|Santa Susana Mountains|34.3387|-118.7386|P W|3460|Santa Susana Mountains|34.3387|-118.7386|P',
'CAZ376' => 'F|3743|Southern Ventura County Mountains|34.5430|-119.0936|P W|3319|Southern Ventura County Mountains|34.5430|-119.0936|P',
'CAZ377' => 'F|3907|Northern Ventura County Mountains|34.7342|-119.1611|P W|3455|Northern Ventura County Mountains|34.7342|-119.1611|P',
'CAZ378' => 'F|3910|Interstate 5 Corridor|34.6716|-118.7273|P W|3456|Interstate 5 Corridor|34.6716|-118.7273|P',
'CAZ379' => 'F|3906|Western San Gabriel Mountains and Highway 14 Corridor|34.4617|-118.2964|P W|3318|Western San Gabriel Mountains and Highway 14 Corridor|34.4617|-118.2964|P',
'CAZ380' => 'F|3911|Eastern San Gabriel Mountains|34.2905|-117.8806|P W|3462|Eastern San Gabriel Mountains|34.2905|-117.8806|P',
'CAZ381' => 'F|3908|Western Antelope Valley Foothills|34.6494|-118.3779|P W|3466|Western Antelope Valley Foothills|34.6494|-118.3779|P',
'CAZ382' => 'F|3909|Eastern Antelope Valley Foothills|34.4909|-117.8141|P W|3467|Eastern Antelope Valley Foothills|34.4909|-117.8141|P',
'CAZ383' => 'F|3739|Antelope Valley|34.7001|-118.0482|P W|3315|Antelope Valley|34.7001|-118.0482|P',
'CAZ502' => 'F|3786|Marin Coastal Range|38.0602|-122.6859|P W|3359|Marin Coastal Range|38.0602|-122.6859|P',
'CAZ503' => 'F|3787|Sonoma Coastal Range|38.6598|-123.1621|P W|3360|Sonoma Coastal Range|38.6598|-123.1621|P',
'CAZ504' => 'F|3785|North Bay Interior Mountains|38.5823|-122.4433|P W|3358|North Bay Interior Mountains|38.5823|-122.4433|P',
'CAZ505' => 'F|3772|Coastal North Bay Including Point Reyes National Seashore|38.2364|-122.9543|P W|3345|Coastal North Bay Including Point Reyes National Seashore|38.2364|-122.9543|P',
'CAZ506' => 'F|3771|North Bay Interior Valleys|38.3698|-122.6419|P W|3344|North Bay Interior Valleys|38.3698|-122.6419|P',
'CAZ508' => 'F|3776|San Francisco Bay Shoreline|37.5938|-122.1650|P W|3349|San Francisco Bay Shoreline|37.5938|-122.1650|P',
'CAZ509' => 'F|3780|San Fransisco Peninsula Coast|37.3740|-122.3923|P W|3353|San Fransisco Peninsula Coast|37.3740|-122.3923|P',
'CAZ510' => 'F|3773|East Bay Interior Valleys|37.8804|-121.8801|P W|3346|East Bay Interior Valleys|37.8804|-121.8801|P',
'CAZ512' => 'F|3775|Santa Cruz Mountains|37.1726|-122.0400|P W|3348|Santa Cruz Mountains|37.1726|-122.0400|P',
'CAZ513' => 'F|3774|Santa Clara Valley Including San Jose|37.2196|-121.7971|P W|3347|Santa Clara Valley Including San Jose|37.2196|-121.7971|P',
'CAZ514' => 'F|3788|Eastern Santa Clara Hills|37.2430|-121.5277|P W|3361|Eastern Santa Clara Hills|37.2430|-121.5277|P',
'CAZ515' => 'F|3789|East Bay Hills|37.7045|-121.8201|P W|3362|East Bay Hills|37.7045|-121.8201|P',
'CAZ516' => 'F|3781|Southern Salinas Valley/Arroyo Seco and Lake San Antonio|36.1014|-121.0546|P W|3354|Southern Salinas Valley/Arroyo Seco and Lake San Antonio|36.1014|-121.0546|P',
'CAZ517' => 'F|3782|Santa Lucia Mountains and Los Padres National Forest|36.1606|-121.4188|P W|3355|Santa Lucia Mountains and Los Padres National Forest|36.1606|-121.4188|P',
'CAZ518' => 'F|3778|Mountains Of San Benito County And Interior Monterey County Including Pinnacles National Park|36.3718|-120.9214|P W|3351|Mountains Of San Benito County And Interior Monterey County Including Pinnacles National Park|36.3718|-120.9214|P',
'CAZ519' => 'F|2232|Eastern Sierra Slopes of Inyo County|36.8269|-118.3410|P',
'CAZ520' => 'F|2233|Owens Valley|36.5133|-118.0127|P',
'CAZ521' => 'F|2234|White Mountains of Inyo County|37.0104|-118.0388|P',
'CAZ522' => 'F|2235|Death Valley National Park|36.4199|-117.1006|P',
'CAZ523' => 'F|2225|Western Mojave Desert|35.3053|-117.0005|P',
'CAZ524' => 'F|2226|Eastern Mojave Desert, Including the Mojave National Preserve|35.1398|-115.7069|P',
'CAZ525' => 'F|2227|Morongo Basin|34.3424|-116.0948|P',
'CAZ526' => 'F|2228|Cadiz Basin|34.3849|-115.0956|P',
'CAZ527' => 'F|2229|San Bernardino County-Upper Colorado River Valley|34.4988|-114.5011|P',
'CAZ528' => 'F|3779|Northern Salinas Valley/Hollister Valley and Carmel Valley|36.6769|-121.5047|P W|3352|Northern Salinas Valley/Hollister Valley and Carmel Valley|36.6769|-121.5047|P',
'CAZ529' => 'F|3777|Northern Monterey Bay|36.9757|-121.9005|P W|3350|Northern Monterey Bay|36.9757|-121.9005|P',
'CAZ530' => 'F|3783|Southern Monterey Bay and Big Sur Coast|36.6165|-121.7566|P W|3356|Southern Monterey Bay and Big Sur Coast|36.6165|-121.7566|P',
'CAZ548' => 'F|3740|Los Angeles County San Gabriel Valley|34.0657|-117.9738|P W|3316|Los Angeles County San Gabriel Valley|34.0657|-117.9738|P',
'CAZ549' => 'F|3753|San Miguel and Santa Rosa Islands|33.9774|-120.1462|P W|3329|San Miguel and Santa Rosa Islands|33.9774|-120.1462|P',
'CAZ550' => 'F|3754|Santa Cruz and Anacapa Islands|34.0138|-119.7416|P W|3330|Santa Cruz and Anacapa Islands|34.0138|-119.7416|P',
'CAZ552' => 'F|3221|Orange County Coastal|33.6191|-117.8648|P W|2517|Orange County Coastal|33.6191|-117.8648|P',