-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnws-all-zones-inc.php
7288 lines (7287 loc) · 429 KB
/
nws-all-zones-inc.php
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
# --------------------------------------------------------------------------
# file: nws-all-zones-inc.php
# created from NWS data files:
# from: https://www.weather.gov/gis/Counties "c_05mr24.zip" file: "c_05mr24.dbf"
# from: https://www.weather.gov/gis/ZoneCounty file: "bp05mr24.dbx"
#
# with data combined to produce an array of ssZnnn, ssCnnn Forecast and County
# centroid lat/long, names
#
# Version 1.00 - 13-May-2019 - initial release for Leaflet/OpenStreetMaps nws-alerts
# Version 1.01 - 08-Nov-2019 - NWS updates (October, 2019) for zones
# Version 1.02 - 15-Jun-2023 - NWS updates (March, 2023) for zones
# Version 1.03 - 19-Sep-2023 - NWS updates (September, 2023) for zones
# Version 1.04 - 05-Mar-2024 - NWS updates (March 5, 2024) for zones
#
# Note: there are no settings to do in this file. It is included and used
# in nws-alerts-details-inc to set the map center lat/long.
#
# (created by make-zone-arrays.php on Tue, 13 Feb 2024 14:24:00 +0000 UTC)
# --------------------------------------------------------------------------
$loclatlon = array( // Lookup for lat/lon for Forecast and County NWS Zones
'AKC013' => '55.4039|-161.8631|Aleutians East||',
'AKC016' => '52.8883|-111.2564|Aleutians West||',
'AKC020' => '61.1501|-149.1067|Anchorage||',
'AKC050' => '60.9210|-159.7733|Bethel||',
'AKC060' => '58.7423|-156.7013|Bristol Bay||',
'AKC063' => '60.7357|-145.7950|Chugach||',
'AKC066' => '61.8844|-143.9685|Copper River||',
'AKC068' => '63.6739|-150.0083|Denali||',
'AKC070' => '59.8021|-158.2119|Dillingham||',
'AKC090' => '64.8084|-146.5630|Fairbanks North Star||',
'AKC100' => '59.1221|-135.5049|Haines||',
'AKC105' => '58.2897|-135.6402|Hoonah-Angoon||',
'AKC110' => '58.4593|-134.1755|Juneau||',
'AKC122' => '60.2619|-151.5667|Kenai Peninsula||',
'AKC130' => '55.5947|-130.9268|Ketchikan Gateway||',
'AKC150' => '57.6777|-153.8060|Kodiak Island||',
'AKC158' => '62.1552|-163.3711|Kusilvak||',
'AKC164' => '58.6478|-156.1834|Lake and Peninsula||',
'AKC170' => '62.3163|-149.5706|Matanuska-Susitna||',
'AKC180' => '64.9107|-164.0308|Nome||',
'AKC185' => '69.3094|-153.4534|North Slope||',
'AKC188' => '67.0626|-159.7085|Northwest Arctic||',
'AKC195' => '57.1338|-132.9279|Petersburg Borough||',
'AKC198' => '55.8039|-133.0048|Prince of Wales-Hyder||',
'AKC220' => '57.2356|-135.3008|Sitka||',
'AKC230' => '59.5604|-135.3381|Skagway||',
'AKC240' => '63.8771|-143.2062|Southeast Fairbanks||',
'AKC275' => '56.3337|-132.0073|Wrangell||',
'AKC282' => '59.8958|-140.3904|Yakutat||',
'AKC290' => '65.5096|-151.3893|Yukon-Koyukuk||',
'AKZ102' => '61.2292|-149.3466|Anchorage |Anchorage|02020',
'AKZ103' => '61.0377|-148.7761|East Turnagain Arm |Anchorage|02020',
'AKZ112' => '61.6518|-149.2037|Matanuska Valley |Matanuska-Susitna|02170',
'AKZ121' => '60.3254|-150.709|Western Kenai Peninsula|Kenai Peninsula|02122',
'AKZ126' => '60.3278|-149.0357|Western Prince William Sound |Kenai Peninsula|02122 60.3278|-149.0357|Western Prince William Sound |Chugach|02063',
'AKZ132' => '61.11|-146.3052|Northeast Prince William Sound |Chugach|02063',
'AKZ135' => '60.5285|-144.9344|Southeast Prince William Sound|Chugach|02063',
'AKZ142' => '61.9431|-144.7751|Copper River Basin |Matanuska-Susitna|02170 61.9431|-144.7751|Copper River Basin |Copper River|02066 61.9431|-144.7751|Copper River Basin |Chugach|02063',
'AKZ145' => '62.0904|-150.7335|Susitna Valley|Bethel|02050 62.0904|-150.7335|Susitna Valley|Kenai Peninsula|02122 62.0904|-150.7335|Susitna Valley|Matanuska-Susitna|02170',
'AKZ152' => '61.4395|-156.4803|Lower Kuskokwim Valley|Bethel|02050 61.4395|-156.4803|Lower Kuskokwim Valley|Dillingham|02070 61.4395|-156.4803|Lower Kuskokwim Valley|Kenai Peninsula|02122 61.4395|-156.4803|Lower Kuskokwim Valley|Lake and Peninsula|02164 61.4395|-156.4803|Lower Kuskokwim Valley|Matanuska-Susitna|02170',
'AKZ155' => '60.6404|-162.6305|Kuskokwim Delta|Bethel|02050',
'AKZ161' => '59.2984|-157.2451|Bristol Bay|Bethel|02050 59.2984|-157.2451|Bristol Bay|Bristol Bay|02060 59.2984|-157.2451|Bristol Bay|Dillingham|02070 59.2984|-157.2451|Bristol Bay|Kenai Peninsula|02122 59.2984|-157.2451|Bristol Bay|Kodiak Island|02150 59.2984|-157.2451|Bristol Bay|Lake and Peninsula|02164',
'AKZ171' => '58.2911|-154.1629|Kodiak Island|Kenai Peninsula|02122 58.2911|-154.1629|Kodiak Island|Kodiak Island|02150 58.2911|-154.1629|Kodiak Island|Lake and Peninsula|02164',
'AKZ181' => '55.6116|-161.2034|Alaska Peninsula|Aleutians East|02013 55.6096|-161.2034|Alaska Peninsula|Lake and Peninsula|02164',
'AKZ185' => '53.5983|-167.2049|Eastern Aleutians|Aleutians West|02016',
'AKZ187' => '52.0613|-175.0715|Central Aleutians|Aleutians West|02016',
'AKZ191' => '52.3658|175.5393|Western Aleutians|Aleutians West|02016',
'AKZ195' => '56.9092|-169.979|Pribilof Islands|Aleutians West|02016',
'AKZ317' => '59.9007|-140.4|City and Borough of Yakutat|Yakutat|02282',
'AKZ318' => '59.5634|-135.3363|Municipality of Skagway|Skagway|02230',
'AKZ319' => '59.1231|-135.5029|Haines Borough and Klukwan|Haines|02100',
'AKZ320' => '58.7919|-136.374|Glacier Bay|Hoonah-Angoon|02105',
'AKZ321' => '58.0322|-135.5308|Eastern Chichagof Island|Hoonah-Angoon|02105',
'AKZ322' => '58.3895|-136.9144|Cape Fairweather to Lisianski Strait|Hoonah-Angoon|02105',
'AKZ323' => '57.2368|-135.3018|City and Borough of Sitka|Sitka|02220',
'AKZ324' => '57.7037|-134.0857|Admiralty Island|Hoonah-Angoon|02105',
'AKZ325' => '58.4584|-134.1787|City and Borough of Juneau|Juneau|02110',
'AKZ326' => '57.1338|-132.9279|Petersburg Borough|Petersburg Borough|02195',
'AKZ327' => '56.6439|-133.8989|Western Kupreanof and Kuiu Island|Prince of Wales-Hyder|02198',
'AKZ328' => '55.5002|-132.8808|Prince of Wales Island|Prince of Wales-Hyder|02198',
'AKZ329' => '56.3326|-132.0115|City and Borough of Wrangell|Wrangell|02275',
'AKZ330' => '55.597|-130.9302|Ketchikan Gateway Borough|Ketchikan|02130',
'AKZ331' => '55.9569|-130.1734|City of Hyder|Prince of Wales-Hyder|02198',
'AKZ332' => '55.1277|-131.4853|Annette Island|Prince of Wales-Hyder|02198',
'AKZ801' => '69.0125|-164.1064|Western Arctic Coast|North Slope|02185',
'AKZ802' => '70.3019|-159.508|Northwest Arctic Coast|North Slope|02185',
'AKZ803' => '70.6873|-155.3712|Northern Arctic Coast|North Slope|02185',
'AKZ804' => '70.2069|-149.5617|Central Beaufort Sea Coast|North Slope|02185',
'AKZ805' => '69.8543|-144.0064|Eastern Beaufort Sea Coast|North Slope|02185',
'AKZ806' => '69.4448|-157.04|Western Arctic Plains|North Slope|02185',
'AKZ807' => '68.4515|-159.5118|Howard Pass and the Delong Mountains|North Slope|02185',
'AKZ808' => '69.3952|-150.0441|Central Arctic Plains|North Slope|02185',
'AKZ809' => '68.4522|-151.0083|Central Brooks Range|North Slope|02185',
'AKZ810' => '68.9538|-144.9059|Romanzof Mountains|North Slope|02185',
'AKZ811' => '67.8471|-144.9201|South Slopes of the Eastern Brooks Range|Yukon-Koyukuk|02290',
'AKZ812' => '67.5646|-151.9607|South Slopes of the Central Brooks Range|Yukon-Koyukuk|02290',
'AKZ813' => '67.6243|-157.2881|South Slopes of the Western Brooks Range|Northwest Arctic|02188',
'AKZ814' => '67.6896|-161.9337|Noatak Valley|Northwest Arctic|02188',
'AKZ815' => '67.6038|-164.1586|Kivalina and Red Dog Dock|Northwest Arctic|02188',
'AKZ816' => '66.7012|-160.5806|Lower Kobuk Valley|Northwest Arctic|02188',
'AKZ817' => '66.5619|-161.7133|Baldwin Peninsula|Northwest Arctic|02188',
'AKZ818' => '65.865|-161.6971|Northern Seward Peninsula|Northwest Arctic|02188',
'AKZ819' => '66.775|-157.3858|Upper Kobuk Valleys|Northwest Arctic|02188',
'AKZ820' => '66.117|-165.867|Shishmaref|Nome|02180',
'AKZ821' => '65.4254|-166.6301|Bering Strait Coast|Nome|02180',
'AKZ822' => '64.6146|-164.4871|Southern Seward Peninsula Coast|Nome|02180',
'AKZ823' => '65.2674|-163.7888|Interior Seward Peninsula|Nome|02180',
'AKZ824' => '64.2108|-160.884|Eastern Norton Sound and Nulato Hills|Nome|02180',
'AKZ825' => '62.1513|-164.2464|Yukon Delta Coast|Kusilvak|02158',
'AKZ826' => '62.1612|-162.0465|Lower Yukon River|Kusilvak|02158',
'AKZ827' => '63.3895|-170.3421|St. Lawrence Island|Nome|02180',
'AKZ828' => '65.6681|-156.8481|Lower Koyukuk Valley|Yukon-Koyukuk|02290',
'AKZ829' => '64.4694|-156.776|Middle Yukon Valley|Yukon-Koyukuk|02290',
'AKZ830' => '63.0674|-158.329|Lower Yukon and Innoko Valleys|Yukon-Koyukuk|02290',
'AKZ831' => '66.3527|-152.8907|Upper Koyukuk Valley|Yukon-Koyukuk|02290',
'AKZ832' => '66.3044|-150.2855|Dalton Highway Summits|Yukon-Koyukuk|02290',
'AKZ833' => '66.5038|-144.6111|Yukon Flats|Yukon-Koyukuk|02290',
'AKZ834' => '65.4537|-146.8278|White Mountains and High Terrain South of the Yukon River|Yukon-Koyukuk|02290',
'AKZ835' => '64.351|-142.5474|Fortymile Country|Southeast Fairbanks|02240',
'AKZ836' => '63.0016|-142.528|Upper Tanana Valley|Southeast Fairbanks|02240',
'AKZ837' => '64.0671|-145.6603|Delta Junction|Southeast Fairbanks|02240',
'AKZ838' => '64.8329|-145.4109|Upper Chena River Valley|Fairbanks North Star|02090',
'AKZ839' => '64.4858|-147.58|Tanana Flats|Fairbanks North Star|02090',
'AKZ840' => '64.5731|-146.8032|Eielson Air Force Base and Salcha|Fairbanks North Star|02090',
'AKZ841' => '64.8226|-148.4043|Goldstream Valley and Nenana Hills|Fairbanks North Star|02090',
'AKZ842' => '65.1455|-147.4888|Chatanika River Valley|Fairbanks North Star|02090',
'AKZ843' => '64.915|-146.8659|Two Rivers|Fairbanks North Star|02090',
'AKZ844' => '64.8465|-147.68|Fairbanks Metro Area|Fairbanks North Star|02090',
'AKZ845' => '64.5373|-148.7871|Nenana|Yukon-Koyukuk|02290',
'AKZ846' => '64.7511|-151.8283|Central Interior|Yukon-Koyukuk|02290',
'AKZ847' => '63.8161|-150.0994|Northern Denali Borough|Denali|02068',
'AKZ848' => '63.3248|-149.7848|Southern Denali Borough|Denali|02068',
'AKZ849' => '63.7236|-145.7753|Eastern Alaska Range North of Trims Camp|Southeast Fairbanks|02240',
'AKZ850' => '63.3137|-145.1121|Eastern Alaska Range South of Trims Camp|Southeast Fairbanks|02240',
'AKZ851' => '62.5083|-153.8608|North Slopes of the Western Alaska Range|Yukon-Koyukuk|02290',
'AKZ852' => '62.8537|-155.2228|Upper Kuskokwim Valley|Yukon-Koyukuk|02290',
'ALC001' => '32.5349|-86.6428|Autauga||',
'ALC003' => '30.7278|-87.7171|Baldwin||',
'ALC005' => '31.8696|-85.3932|Barbour||',
'ALC007' => '32.9986|-87.1264|Bibb||',
'ALC009' => '33.9809|-86.5674|Blount||',
'ALC011' => '32.1005|-85.7161|Bullock||',
'ALC013' => '31.7524|-86.6803|Butler||',
'ALC015' => '33.7714|-85.8261|Calhoun||',
'ALC017' => '32.9144|-85.3920|Chambers||',
'ALC019' => '34.1760|-85.6038|Cherokee||',
'ALC021' => '32.8479|-86.7188|Chilton||',
'ALC023' => '32.0192|-88.2628|Choctaw||',
'ALC025' => '31.6709|-87.8309|Clarke||',
'ALC027' => '33.2691|-85.8605|Clay||',
'ALC029' => '33.6745|-85.5188|Cleburne||',
'ALC031' => '31.4026|-85.9882|Coffee||',
'ALC033' => '34.7004|-87.8049|Colbert||',
'ALC035' => '31.4293|-86.9936|Conecuh||',
'ALC037' => '32.9362|-86.2476|Coosa||',
'ALC039' => '31.2485|-86.4512|Covington||',
'ALC041' => '31.7315|-86.3136|Crenshaw||',
'ALC043' => '34.1320|-86.8676|Cullman||',
'ALC045' => '31.4318|-85.6110|Dale||',
'ALC047' => '32.3258|-87.1065|Dallas||',
'ALC049' => '34.4598|-85.8041|DeKalb||',
'ALC051' => '32.5966|-86.1492|Elmore||',
'ALC053' => '31.1262|-87.1616|Escambia||',
'ALC055' => '34.0453|-86.0348|Etowah||',
'ALC057' => '33.7212|-87.7388|Fayette||',
'ALC059' => '34.4417|-87.8438|Franklin||',
'ALC061' => '31.0950|-85.8390|Geneva||',
'ALC063' => '32.8531|-87.9522|Greene||',
'ALC065' => '32.7627|-87.6291|Hale||',
'ALC067' => '31.5147|-85.2414|Henry||',
'ALC069' => '31.1532|-85.3025|Houston||',
'ALC071' => '34.7794|-85.9993|Jackson||',
'ALC073' => '33.5543|-86.8965|Jefferson||',
'ALC075' => '33.7792|-88.0969|Lamar||',
'ALC077' => '34.9015|-87.6543|Lauderdale||',
'ALC079' => '34.5220|-87.3110|Lawrence||',
'ALC081' => '32.6012|-85.3556|Lee||',
'ALC083' => '34.8101|-86.9813|Limestone||',
'ALC085' => '32.1548|-86.6501|Lowndes||',
'ALC087' => '32.3860|-85.6926|Macon||',
'ALC089' => '34.7631|-86.5502|Madison||',
'ALC091' => '32.2476|-87.7895|Marengo||',
'ALC093' => '34.1366|-87.8871|Marion||',
'ALC095' => '34.3669|-86.3066|Marshall||',
'ALC097' => '30.7943|-88.2018|Mobile||',
'ALC099' => '31.5706|-87.3658|Monroe||',
'ALC101' => '32.2202|-86.2076|Montgomery||',
'ALC103' => '34.4535|-86.8529|Morgan||',
'ALC105' => '32.6385|-87.2942|Perry||',
'ALC107' => '33.2809|-88.0887|Pickens||',
'ALC109' => '31.8024|-85.9409|Pike||',
'ALC111' => '33.2938|-85.4591|Randolph||',
'ALC113' => '32.2884|-85.1849|Russell||',
'ALC115' => '33.7157|-86.3147|St. Clair||',
'ALC117' => '33.2643|-86.6607|Shelby||',
'ALC119' => '32.5910|-88.1988|Sumter||',
'ALC121' => '33.3800|-86.1659|Talladega||',
'ALC123' => '32.8624|-85.7975|Tallapoosa||',
'ALC125' => '33.2896|-87.5250|Tuscaloosa||',
'ALC127' => '33.8034|-87.2973|Walker||',
'ALC129' => '31.4077|-88.2071|Washington||',
'ALC131' => '31.9892|-87.3082|Wilcox||',
'ALC133' => '34.1492|-87.3737|Winston||',
'ALZ001' => '34.9015|-87.6544|Lauderdale|Lauderdale|01077',
'ALZ002' => '34.7005|-87.8049|Colbert|Colbert|01033',
'ALZ003' => '34.4417|-87.8438|Franklin|Franklin|01059',
'ALZ004' => '34.522|-87.311|Lawrence|Lawrence|01079',
'ALZ005' => '34.8101|-86.9813|Limestone|Limestone|01083',
'ALZ006' => '34.7631|-86.5502|Madison|Madison|01089',
'ALZ007' => '34.4535|-86.8529|Morgan|Morgan|01103',
'ALZ008' => '34.3669|-86.3066|Marshall|Marshall|01095',
'ALZ009' => '34.7794|-85.9993|Jackson|Jackson|01071',
'ALZ010' => '34.4598|-85.8041|DefireKalb|DeKalb|01049',
'ALZ011' => '34.1366|-87.8871|Marion|Marion|01093',
'ALZ012' => '33.7792|-88.0969|Lamar|Lamar|01075',
'ALZ013' => '33.7212|-87.7389|Fayette|Fayette|01057',
'ALZ014' => '34.1492|-87.3737|Winston|Winston|01133',
'ALZ015' => '33.8034|-87.2973|Walker|Walker|01127',
'ALZ016' => '34.132|-86.8676|Cullman|Cullman|01043',
'ALZ017' => '33.9809|-86.5674|Blount|Blount|01009',
'ALZ018' => '34.0453|-86.0348|Etowah|Etowah|01055',
'ALZ019' => '33.7714|-85.8261|Calhoun|Calhoun|01015',
'ALZ020' => '34.176|-85.6038|Cherokee|Cherokee|01019',
'ALZ021' => '33.6745|-85.5188|Cleburne|Cleburne|01029',
'ALZ022' => '33.2809|-88.0887|Pickens|Pickens|01107',
'ALZ023' => '33.2895|-87.525|Tuscaloosa|Tuscaloosa|01125',
'ALZ024' => '33.5543|-86.8965|Jefferson|Jefferson|01073',
'ALZ025' => '33.2643|-86.6607|Shelby|Shelby|01117',
'ALZ026' => '33.7157|-86.3147|St. Clair|St. Clair|01115',
'ALZ027' => '33.38|-86.1659|Talladega|Talladega|01121',
'ALZ028' => '33.2691|-85.8605|Clay|Clay|01027',
'ALZ029' => '33.2938|-85.4591|Randolph|Randolph|01111',
'ALZ030' => '32.591|-88.1988|Sumter|Sumter|01119',
'ALZ031' => '32.8531|-87.9522|Greene|Greene|01063',
'ALZ032' => '32.7627|-87.6291|Hale|Hale|01065',
'ALZ033' => '32.6385|-87.2942|Perry|Perry|01105',
'ALZ034' => '32.9986|-87.1264|Bibb|Bibb|01007',
'ALZ035' => '32.8479|-86.7188|Chilton|Chilton|01021',
'ALZ036' => '32.9362|-86.2476|Coosa|Coosa|01037',
'ALZ037' => '32.8624|-85.7975|Tallapoosa|Tallapoosa|01123',
'ALZ038' => '32.9144|-85.392|Chambers|Chambers|01017',
'ALZ039' => '32.2476|-87.7895|Marengo|Marengo|01091',
'ALZ040' => '32.3258|-87.1065|Dallas|Dallas|01047',
'ALZ041' => '32.5349|-86.6428|Autauga|Autauga|01001',
'ALZ042' => '32.1547|-86.6501|Lowndes|Lowndes|01085',
'ALZ043' => '32.5966|-86.1492|Elmore|Elmore|01051',
'ALZ044' => '32.2202|-86.2076|Montgomery|Montgomery|01101',
'ALZ045' => '32.386|-85.6926|Macon|Macon|01087',
'ALZ046' => '32.1005|-85.7161|Bullock|Bullock|01011',
'ALZ047' => '32.6012|-85.3556|Lee|Lee|01081',
'ALZ048' => '32.2884|-85.1849|Russell|Russell|01113',
'ALZ049' => '31.8024|-85.9409|Pike|Pike|01109',
'ALZ050' => '31.8696|-85.3932|Barbour|Barbour|01005',
'ALZ051' => '32.0192|-88.2628|Choctaw|Choctaw|01023',
'ALZ052' => '31.4077|-88.2071|Washington|Washington|01129',
'ALZ053' => '31.6709|-87.8309|Clarke|Clarke|01025',
'ALZ054' => '31.9892|-87.3082|Wilcox|Wilcox|01131',
'ALZ055' => '31.5706|-87.3658|Monroe|Monroe|01099',
'ALZ056' => '31.4293|-86.9936|Conecuh|Conecuh|01035',
'ALZ057' => '31.7524|-86.6803|Butler|Butler|01013',
'ALZ058' => '31.7315|-86.3136|Crenshaw|Crenshaw|01041',
'ALZ059' => '31.1262|-87.1616|Escambia|Escambia|01053',
'ALZ060' => '31.2485|-86.4512|Covington|Covington|01039',
'ALZ065' => '31.4026|-85.9882|Coffee|Coffee|01031',
'ALZ066' => '31.4318|-85.611|Dale|Dale|01045',
'ALZ067' => '31.5147|-85.2414|Henry|Henry|01067',
'ALZ068' => '31.095|-85.839|Geneva|Geneva|01061',
'ALZ069' => '31.1532|-85.3025|Houston|Houston|01069',
'ALZ261' => '30.9237|-88.185|Mobile Inland|Mobile|01097',
'ALZ262' => '30.494|-87.6699|Baldwin Inland|Baldwin|01003',
'ALZ263' => '30.5283|-88.2363|Mobile Central|Mobile|01097',
'ALZ264' => '30.9471|-87.7615|Baldwin Central|Baldwin|01003',
'ALZ265' => '30.5283|-88.2363|Mobile Coastal|Mobile|01097',
'ALZ266' => '30.494|-87.6699|Baldwin Coastal|Baldwin|01003',
'ARC001' => '34.2908|-91.3749|Arkansas||',
'ARC003' => '33.1912|-91.7679|Ashley||',
'ARC005' => '36.2872|-92.3370|Baxter||',
'ARC007' => '36.3392|-94.2573|Benton||',
'ARC009' => '36.3086|-93.0915|Boone||',
'ARC011' => '33.4659|-92.1623|Bradley||',
'ARC013' => '33.5580|-92.5031|Calhoun||',
'ARC015' => '36.3410|-93.5382|Carroll||',
'ARC017' => '33.2672|-91.2940|Chicot||',
'ARC019' => '34.0510|-93.1764|Clark||',
'ARC021' => '36.3685|-90.4173|Clay||',
'ARC023' => '35.5381|-92.0267|Cleburne||',
'ARC025' => '33.8983|-92.1852|Cleveland||',
'ARC027' => '33.2143|-93.2274|Columbia||',
'ARC029' => '35.2622|-92.7014|Conway||',
'ARC031' => '35.8308|-90.6328|Craighead||',
'ARC033' => '35.5889|-94.2430|Crawford||',
'ARC035' => '35.2079|-90.3089|Crittenden||',
'ARC037' => '35.2958|-90.7713|Cross||',
'ARC039' => '33.9698|-92.6545|Dallas||',
'ARC041' => '33.8333|-91.2540|Desha||',
'ARC043' => '33.5895|-91.7200|Drew||',
'ARC045' => '35.1470|-92.3320|Faulkner||',
'ARC047' => '35.5123|-93.8906|Franklin||',
'ARC049' => '36.3817|-91.8183|Fulton||',
'ARC051' => '34.5767|-93.1504|Garland||',
'ARC053' => '34.2900|-92.4236|Grant||',
'ARC055' => '36.1177|-90.5591|Greene||',
'ARC057' => '33.7354|-93.6684|Hempstead||',
'ARC059' => '34.3177|-92.9460|Hot Spring||',
'ARC061' => '34.0887|-93.9935|Howard||',
'ARC063' => '35.7415|-91.5698|Independence||',
'ARC065' => '36.0949|-91.9134|Izard||',
'ARC067' => '35.5994|-91.2146|Jackson||',
'ARC069' => '34.2688|-91.9315|Jefferson||',
'ARC071' => '35.5701|-93.4599|Johnson||',
'ARC073' => '33.2408|-93.6073|Lafayette||',
'ARC075' => '36.0413|-91.1071|Lawrence||',
'ARC077' => '34.7807|-90.7820|Lee||',
'ARC079' => '33.9575|-91.7333|Lincoln||',
'ARC081' => '33.7005|-94.2343|Little River||',
'ARC083' => '35.2153|-93.7163|Logan||',
'ARC085' => '34.7542|-91.8887|Lonoke||',
'ARC087' => '36.0110|-93.7246|Madison||',
'ARC089' => '36.2684|-92.6842|Marion||',
'ARC091' => '33.3124|-93.8918|Miller||',
'ARC093' => '35.7639|-90.0540|Mississippi||',
'ARC095' => '34.6778|-91.2038|Monroe||',
'ARC097' => '34.5388|-93.6595|Montgomery||',
'ARC099' => '33.6640|-93.3072|Nevada||',
'ARC101' => '35.9200|-93.2179|Newton||',
'ARC103' => '33.5933|-92.8820|Ouachita||',
'ARC105' => '34.9474|-92.9315|Perry||',
'ARC107' => '34.4283|-90.8480|Phillips||',
'ARC109' => '34.1636|-93.6564|Pike||',
'ARC111' => '35.5740|-90.6629|Poinsett||',
'ARC113' => '34.4858|-94.2281|Polk||',
'ARC115' => '35.4476|-93.0342|Pope||',
'ARC117' => '34.8297|-91.5528|Prairie||',
'ARC119' => '34.7699|-92.3117|Pulaski||',
'ARC121' => '36.3415|-91.0278|Randolph||',
'ARC123' => '35.0220|-90.7478|St. Francis||',
'ARC125' => '34.6466|-92.6766|Saline||',
'ARC127' => '34.8608|-94.0633|Scott||',
'ARC129' => '35.9109|-92.6995|Searcy||',
'ARC131' => '35.1993|-94.2740|Sebastian||',
'ARC133' => '33.9973|-94.2412|Sevier||',
'ARC135' => '36.1611|-91.4799|Sharp||',
'ARC137' => '35.8599|-92.1567|Stone||',
'ARC139' => '33.1713|-92.5973|Union||',
'ARC141' => '35.5807|-92.5157|Van Buren||',
'ARC143' => '35.9800|-94.2147|Washington||',
'ARC145' => '35.2563|-91.7457|White||',
'ARC147' => '35.1863|-91.2432|Woodruff||',
'ARC149' => '35.0026|-93.4113|Yell||',
'ARZ001' => '36.3392|-94.2573|Benton|Benton|05007',
'ARZ002' => '36.341|-93.5382|Carroll|Carroll|05015',
'ARZ004' => '36.2684|-92.6842|Marion|Marion|05089',
'ARZ005' => '36.2872|-92.337|Baxter|Baxter|05005',
'ARZ006' => '36.3817|-91.8183|Fulton|Fulton|05049',
'ARZ007' => '36.1611|-91.4799|Sharp|Sharp|05135',
'ARZ008' => '36.3415|-91.0278|Randolph|Randolph|05121',
'ARZ009' => '36.3685|-90.4173|Clay|Clay|05021',
'ARZ010' => '35.98|-94.2147|Washington|Washington|05143',
'ARZ011' => '36.011|-93.7246|Madison|Madison|05087',
'ARZ014' => '35.8599|-92.1567|Stone|Stone|05137',
'ARZ015' => '36.0949|-91.9134|Izard|Izard|05065',
'ARZ016' => '35.7415|-91.5698|Independence|Independence|05063',
'ARZ017' => '36.0413|-91.1071|Lawrence|Lawrence|05075',
'ARZ018' => '36.1177|-90.5591|Greene|Greene|05055',
'ARZ019' => '35.5889|-94.243|Crawford|Crawford|05033',
'ARZ020' => '35.5123|-93.8906|Franklin|Franklin|05047',
'ARZ024' => '35.5381|-92.0267|Cleburne|Cleburne|05023',
'ARZ025' => '35.5994|-91.2146|Jackson|Jackson|05067',
'ARZ026' => '35.8308|-90.6328|Craighead|Craighead|05031',
'ARZ027' => '35.574|-90.6629|Poinsett|Poinsett|05111',
'ARZ028' => '35.7639|-90.054|Mississippi|Mississippi|05093',
'ARZ029' => '35.1993|-94.274|Sebastian|Sebastian|05131',
'ARZ031' => '35.2622|-92.7014|Conway|Conway|05029',
'ARZ032' => '35.147|-92.3321|Faulkner|Faulkner|05045',
'ARZ033' => '35.2563|-91.7457|White|White|05145',
'ARZ034' => '35.1863|-91.2431|Woodruff|Woodruff|05147',
'ARZ035' => '35.2958|-90.7713|Cross|Cross|05037',
'ARZ036' => '35.2079|-90.3089|Crittenden|Crittenden|05035',
'ARZ039' => '34.9474|-92.9315|Perry|Perry|05105',
'ARZ042' => '34.5767|-93.1504|Garland|Garland|05051',
'ARZ043' => '34.6466|-92.6766|Saline|Saline|05125',
'ARZ044' => '34.7699|-92.3118|Pulaski|Pulaski|05119',
'ARZ045' => '34.7542|-91.8887|Lonoke|Lonoke|05085',
'ARZ046' => '34.8297|-91.5528|Prairie|Prairie|05117',
'ARZ047' => '34.6778|-91.2038|Monroe|Monroe|05095',
'ARZ048' => '35.022|-90.7478|St. Francis|St. Francis|05123',
'ARZ049' => '34.7806|-90.782|Lee|Lee|05077',
'ARZ050' => '33.9973|-94.2412|Sevier|Sevier|05133',
'ARZ051' => '34.0887|-93.9934|Howard|Howard|05061',
'ARZ052' => '34.1636|-93.6564|Pike|Pike|05109',
'ARZ053' => '34.051|-93.1764|Clark|Clark|05019',
'ARZ054' => '34.3177|-92.946|Hot Spring|Hot Spring|05059',
'ARZ055' => '34.29|-92.4236|Grant|Grant|05053',
'ARZ056' => '34.2688|-91.9315|Jefferson|Jefferson|05069',
'ARZ057' => '34.2908|-91.3749|Arkansas|Arkansas|05001',
'ARZ058' => '34.4283|-90.848|Phillips|Phillips|05107',
'ARZ059' => '33.7005|-94.2343|Little River|Little River|05081',
'ARZ060' => '33.7354|-93.6684|Hempstead|Hempstead|05057',
'ARZ061' => '33.6641|-93.3072|Nevada|Nevada|05099',
'ARZ062' => '33.9698|-92.6545|Dallas|Dallas|05039',
'ARZ063' => '33.8984|-92.1852|Cleveland|Cleveland|05025',
'ARZ064' => '33.9575|-91.7333|Lincoln|Lincoln|05079',
'ARZ065' => '33.8333|-91.254|Desha|Desha|05041',
'ARZ066' => '33.5933|-92.882|Ouachita|Ouachita|05103',
'ARZ067' => '33.558|-92.5031|Calhoun|Calhoun|05013',
'ARZ068' => '33.4659|-92.1622|Bradley|Bradley|05011',
'ARZ069' => '33.5895|-91.72|Drew|Drew|05043',
'ARZ070' => '33.3124|-93.8918|Miller|Miller|05091',
'ARZ071' => '33.2408|-93.6073|Lafayette|Lafayette|05073',
'ARZ072' => '33.2143|-93.2273|Columbia|Columbia|05027',
'ARZ073' => '33.1713|-92.5973|Union|Union|05139',
'ARZ074' => '33.1912|-91.7679|Ashley|Ashley|05003',
'ARZ075' => '33.2672|-91.294|Chicot|Chicot|05017',
'ARZ103' => '36.3217|-93.0755|Boone County Except Southwest|Boone|05009',
'ARZ112' => '35.8956|-93.2439|Newton County Higher Elevations|Newton|05101',
'ARZ113' => '35.9775|-92.7213|Searcy County Lower Elevations|Searcy|05129',
'ARZ121' => '35.4736|-93.4744|Southern Johnson County|Johnson|05071',
'ARZ122' => '35.3423|-93.0596|Southern Pope County|Pope|05115',
'ARZ123' => '35.5067|-92.4247|Southeast Van Buren County|Van Buren|05141',
'ARZ130' => '35.2523|-93.7455|Western and Northern Logan County|Logan|05083',
'ARZ137' => '34.9845|-94.0579|Northern Scott County|Scott|05127',
'ARZ138' => '35.1143|-93.5043|Northwest Yell County|Yell|05149',
'ARZ140' => '34.4133|-94.3073|Polk County Lower Elevations|Polk|05113',
'ARZ141' => '34.5241|-93.6079|Central and Eastern Montgomery County|Montgomery|05097',
'ARZ203' => '36.1834|-93.2439|Boone County Higher Elevations|Boone|05009',
'ARZ212' => '36.0553|-93.0733|Newton County Lower Elevations|Newton|05101',
'ARZ213' => '36.0493|-92.8685|Northwest Searcy County Higher Elevations|Searcy|05129',
'ARZ221' => '35.6552|-93.4471|Johnson County Higher Elevations|Johnson|05071',
'ARZ222' => '35.607|-92.9956|Pope County Higher Elevations|Pope|05115',
'ARZ223' => '35.6487|-92.5994|Van Buren County Higher Elevations|Van Buren|05141',
'ARZ230' => '35.1586|-93.6717|Southern and Eastern Logan County|Logan|05083',
'ARZ237' => '34.8189|-94.0651|Central and Southern Scott County|Scott|05127',
'ARZ238' => '34.9695|-93.3837|Yell Excluding Northwest|Yell|05149',
'ARZ240' => '34.6452|-94.2329|Northern Polk County Higher Elevations|Polk|05113',
'ARZ241' => '34.6914|-93.6775|Northern Montgomery County Higher Elevations|Montgomery|05097',
'ARZ313' => '35.8697|-92.6677|Eastern, Central, and Southern Searcy County Higher Elevations|Searcy|05129',
'ARZ340' => '34.4489|-94.1274|Southeast Polk County Higher Elevations|Polk|05113',
'ARZ341' => '34.4197|-93.8217|Southwest Montgomery County Higher Elevations|Montgomery|05097',
'ASC010' => '-14.2763|-170.6596|Eastern||',
'ASC020' => '-14.2219|-169.5060|Manu\'a||',
'ASC030' => '-14.5453|-168.1560|Rose Atoll||',
'ASC040' => '-11.0548|-171.0802|Swains Island||',
'ASC050' => '-14.3241|-170.7691|Western||',
'ASZ001' => '-14.3055|-170.717|Tutuila and Aunuu|Eastern|60010 -14.3055|-170.717|Tutuila and Aunuu|Western|60050',
'ASZ002' => '-14.227|-169.5053|Manua|Manu\'a|60020',
'ASZ003' => '-11.0844|-171.046|Swains Island|Swains Island|60040',
'ASZ004' => '-14.5453|-168.156|Rose Atoll|Rose Atoll|60030',
'AZC001' => '35.3957|-109.4888|Apache||',
'AZC003' => '31.8796|-109.7511|Cochise||',
'AZC005' => '35.8387|-111.7705|Coconino||',
'AZC007' => '33.7997|-110.8117|Gila||',
'AZC009' => '32.9327|-109.8874|Graham||',
'AZC011' => '33.2153|-109.2401|Greenlee||',
'AZC012' => '33.7292|-113.9813|La Paz||',
'AZC013' => '33.3488|-112.4912|Maricopa||',
'AZC015' => '35.7044|-113.7582|Mohave||',
'AZC017' => '35.3996|-110.3214|Navajo||',
'AZC019' => '32.0974|-111.7899|Pima||',
'AZC021' => '32.9043|-111.3447|Pinal||',
'AZC023' => '31.5260|-110.8466|Santa Cruz||',
'AZC025' => '34.5999|-112.5538|Yavapai||',
'AZC027' => '32.7694|-113.9056|Yuma||',
'AZZ001' => '36.5921|-113.3317|Northwest Plateau|Mohave|04015',
'AZZ002' => '34.6762|-114.3492|Lake Havasu and Fort Mohave|Mohave|04015',
'AZZ003' => '35.1839|-113.848|Northwest Deserts|Mohave|04015',
'AZZ004' => '36.6514|-112.2018|Kaibab Plateau|Coconino|04005',
'AZZ005' => '36.7777|-111.6681|Marble and Glen Canyons|Coconino|04005',
'AZZ006' => '36.184|-112.3184|Grand Canyon Country|Coconino|04005',
'AZZ007' => '35.7341|-112.5569|Coconino Plateau|Coconino|04005',
'AZZ008' => '34.8361|-112.6554|Yavapai County Mountains|Yavapai|04025',
'AZZ009' => '36.4046|-110.9711|Northeast Plateaus and Mesas Hwy 264 Northward|Apache|04001 36.4046|-110.9711|Northeast Plateaus and Mesas Hwy 264 Northward|Coconino|04005 36.4046|-110.9711|Northeast Plateaus and Mesas Hwy 264 Northward|Navajo|04017',
'AZZ010' => '36.5404|-109.7068|Chinle Valley|Apache|04001 36.5404|-109.7068|Chinle Valley|Navajo|04017',
'AZZ011' => '35.8693|-109.2344|Chuska Mountains and Defiance Plateau|Apache|04001',
'AZZ012' => '35.4788|-111.1876|Little Colorado River Valley in Coconino County|Coconino|04005 35.4788|-111.1876|Little Colorado River Valley in Coconino County|Navajo|04017',
'AZZ013' => '34.844|-110.3128|Little Colorado River Valley in Navajo County|Navajo|04017',
'AZZ014' => '34.5768|-109.4198|Little Colorado River Valley in Apache County|Apache|04001',
'AZZ015' => '35.2296|-111.7689|Western Mogollon Rim|Coconino|04005',
'AZZ016' => '34.4418|-110.8122|Eastern Mogollon Rim|Coconino|04005 34.4418|-110.8122|Eastern Mogollon Rim|Navajo|04017',
'AZZ017' => '33.9272|-109.6483|White Mountains|Apache|04001 33.9272|-109.6483|White Mountains|Navajo|04017',
'AZZ018' => '34.0401|-110.9225|Northern Gila County|Gila|04007',
'AZZ036' => '35.8011|-114.3194|Lake Mead National Recreation Area|Mohave|04015',
'AZZ037' => '34.4302|-112.5126|Yavapai County Valleys and Basins|Yavapai|04025',
'AZZ038' => '34.9117|-111.8796|Oak Creek and Sycamore Canyons|Coconino|04005 34.9117|-111.8796|Oak Creek and Sycamore Canyons|Yavapai|04025',
'AZZ039' => '36.355|-110.243|Black Mesa Area|Apache|04001 36.355|-110.243|Black Mesa Area|Coconino|04005 36.355|-110.243|Black Mesa Area|Navajo|04017',
'AZZ040' => '35.4889|-110.1825|Northeast Plateaus and Mesas South of Hwy 264|Apache|04001 35.4889|-110.1825|Northeast Plateaus and Mesas South of Hwy 264|Coconino|04005 35.4889|-110.1825|Northeast Plateaus and Mesas South of Hwy 264|Navajo|04017',
'AZZ501' => '32.2167|-112.9766|Western Pima County Including Ajo/Organ Pipe Cactus National Monument|Pima|04019',
'AZZ502' => '32.1434|-112.064|Tohono O\'odham Nation including Sells|Pima|04019 32.1434|-112.064|Tohono O\'odham Nation including Sells|Pinal|04021',
'AZZ503' => '31.6207|-111.163|Upper Santa Cruz River and Altar Valleys including Nogales|Pima|04019 31.6207|-111.163|Upper Santa Cruz River and Altar Valleys including Nogales|Santa Cruz|04023',
'AZZ504' => '32.1761|-111.0565|Tucson Metro Area including Tucson/Green Valley/Marana/Vail|Pima|04019',
'AZZ505' => '32.7452|-111.3393|South Central Pinal County including Eloy/Picacho Peak State Park|Pinal|04021',
'AZZ506' => '32.8255|-110.7518|Southeast Pinal County including Kearny/Mammoth/Oracle|Pinal|04021',
'AZZ507' => '31.9331|-110.3073|Upper San Pedro River Valley including Sierra Vista/Benson|Cochise|04003 31.9331|-110.3073|Upper San Pedro River Valley including Sierra Vista/Benson|Graham|04009 31.9331|-110.3073|Upper San Pedro River Valley including Sierra Vista/Benson|Pima|04019 31.9331|-110.3073|Upper San Pedro River Valley including Sierra Vista/Benson|Santa Cruz|04023',
'AZZ508' => '31.9147|-109.5452|Eastern Cochise County Below 5000 Feet including Douglas/Willcox|Cochise|04003',
'AZZ509' => '32.8686|-109.7443|Upper Gila River and Aravaipa Valleys including Clifton/Safford|Graham|04009 32.8686|-109.7443|Upper Gila River and Aravaipa Valleys including Clifton/Safford|Greenlee|04011',
'AZZ510' => '33.3867|-109.4881|White Mountains of Graham and Greenlee Counties including Hannagan Meadow|Graham|04009 33.3867|-109.4881|White Mountains of Graham and Greenlee Counties including Hannagan Meadow|Greenlee|04011',
'AZZ511' => '32.6525|-110.1153|Galiuro and Pinaleno Mountains including Mount Graham|Cochise|04003 32.6525|-110.1153|Galiuro and Pinaleno Mountains including Mount Graham|Graham|04009 32.6525|-110.1153|Galiuro and Pinaleno Mountains including Mount Graham|Pinal|04021',
'AZZ512' => '31.8616|-109.356|Chiricahua Mountains including Chiricahua National Monument|Cochise|04003',
'AZZ513' => '31.6043|-110.3833|Dragoon/Mule/Huachuca and Santa Rita Mountains including Bisbee/Canelo Hills/Madera Canyon|Cochise|04003 31.6043|-110.3833|Dragoon/Mule/Huachuca and Santa Rita Mountains including Bisbee/Canelo Hills/Madera Canyon|Pima|04019 31.6043|-110.3833|Dragoon/Mule/Huachuca and Santa Rita Mountains including Bisbee/Canelo Hills/Madera Canyon|Santa Cruz|04023',
'AZZ514' => '32.3364|-110.6808|Santa Catalina and Rincon Mountains including Mount Lemmon/Summerhaven|Pima|04019 32.3364|-110.6808|Santa Catalina and Rincon Mountains including Mount Lemmon/Summerhaven|Pinal|04021',
'AZZ515' => '31.8186|-111.5931|Baboquivari Mountains including Kitt Peak|Pima|04019',
'AZZ530' => '33.6988|-114.4568|Parker Valley|La Paz|04012',
'AZZ531' => '33.2172|-114.028|Kofa|La Paz|04012 33.2172|-114.028|Kofa|Yuma|04027',
'AZZ532' => '32.6544|-114.5114|Yuma|Yuma|04027',
'AZZ533' => '33.8115|-113.8132|Central La Paz|La Paz|04012',
'AZZ534' => '33.8662|-112.9785|Aguila Valley|Maricopa|04013',
'AZZ535' => '32.3859|-113.7573|Southeast Yuma County|Yuma|04027',
'AZZ536' => '32.822|-113.804|Gila River Valley|Yuma|04027',
'AZZ537' => '33.7421|-112.477|Northwest Valley|Maricopa|04013',
'AZZ538' => '33.3971|-112.9704|Tonopah Desert|Maricopa|04013',
'AZZ539' => '32.8542|-113.0566|Gila Bend|Maricopa|04013',
'AZZ540' => '33.3912|-112.4004|Buckeye/Avondale|Maricopa|04013',
'AZZ541' => '33.8086|-112.0129|Cave Creek/New River|Maricopa|04013',
'AZZ542' => '33.7122|-112.1301|Deer Valley|Maricopa|04013',
'AZZ543' => '33.4331|-112.0552|Central Phoenix|Maricopa|04013',
'AZZ544' => '33.5716|-112.1525|North Phoenix/Glendale|Maricopa|04013',
'AZZ545' => '33.926|-111.8887|New River Mesa|Maricopa|04013',
'AZZ546' => '33.5351|-111.8891|Scottsdale/Paradise Valley|Maricopa|04013',
'AZZ547' => '33.7012|-111.51|Rio Verde/Salt River|Maricopa|04013',
'AZZ548' => '33.3765|-111.8134|East Valley|Maricopa|04013',
'AZZ549' => '33.5349|-111.6592|Fountain Hills/East Mesa|Maricopa|04013',
'AZZ550' => '33.2829|-112.0449|South Mountain/Ahwatukee|Maricopa|04013',
'AZZ551' => '33.2616|-111.7353|Southeast Valley/Queen Creek|Maricopa|04013',
'AZZ552' => '33.2702|-111.188|Superior|Pinal|04021',
'AZZ553' => '33.0208|-111.7511|Northwest Pinal County|Pinal|04021',
'AZZ554' => '32.8658|-112.1203|West Pinal County|Pinal|04021',
'AZZ555' => '33.2584|-111.3827|Apache Junction/Gold Canyon|Pinal|04021',
'AZZ556' => '33.7079|-111.1275|Tonto Basin|Gila|04007',
'AZZ557' => '33.8233|-111.4206|Mazatzal Mountains|Gila|04007 33.8233|-111.4206|Mazatzal Mountains|Maricopa|04013',
'AZZ558' => '33.3639|-110.9698|Pinal/Superstition Mountains|Gila|04007 33.3639|-110.9698|Pinal/Superstition Mountains|Maricopa|04013 33.3639|-110.9698|Pinal/Superstition Mountains|Pinal|04021',
'AZZ559' => '32.8019|-112.5236|Sonoran Desert Natl Monument|Maricopa|04013',
'AZZ560' => '33.3416|-110.5321|San Carlos|Gila|04007',
'AZZ561' => '33.102|-110.7854|Dripping Springs|Gila|04007',
'AZZ562' => '33.4344|-110.8175|Globe/Miami|Gila|04007',
'AZZ563' => '33.6107|-110.4548|Southeast Gila County|Gila|04007',
'C' => '||||',
'CAC001' => '37.6466|-121.8860|Alameda||',
'CAC003' => '38.5973|-119.8207|Alpine||',
'CAC005' => '38.4461|-120.6519|Amador||',
'CAC007' => '39.6669|-121.6007|Butte||',
'CAC009' => '38.2046|-120.5541|Calaveras||',
'CAC011' => '39.1775|-122.2370|Colusa||',
'CAC013' => '37.9163|-121.9276|Contra Costa||',
'CAC015' => '41.7431|-123.8970|Del Norte||',
'CAC017' => '38.7785|-120.5247|El Dorado||',
'CAC019' => '36.7584|-119.6503|Fresno||',
'CAC021' => '39.5984|-122.3922|Glenn||',
'CAC023' => '40.6984|-123.8735|Humboldt||',
'CAC025' => '33.0395|-115.3653|Imperial||',
'CAC027' => '36.5111|-117.4107|Inyo||',
'CAC029' => '35.3429|-118.7298|Kern||',
'CAC031' => '36.0753|-119.8156|Kings||',
'CAC033' => '39.0997|-122.7532|Lake||',
'CAC035' => '40.6736|-120.5943|Lassen||',
'CAC037' => '34.3203|-118.2252|Los Angeles||',
'CAC039' => '37.2180|-119.7626|Madera||',
'CAC041' => '38.0725|-122.7185|Marin||',
'CAC043' => '37.5815|-119.9055|Mariposa||',
'CAC045' => '39.4400|-123.3912|Mendocino||',
'CAC047' => '37.1926|-120.7180|Merced||',
'CAC049' => '41.5899|-120.7250|Modoc||',
'CAC051' => '37.9390|-118.8867|Mono||',
'CAC053' => '36.2169|-121.2389|Monterey||',
'CAC055' => '38.5066|-122.3305|Napa||',
'CAC057' => '39.3014|-120.7683|Nevada||',
'CAC059' => '33.7030|-117.7605|Orange||',
'CAC061' => '39.0635|-120.7176|Placer||',
'CAC063' => '40.0047|-120.8386|Plumas||',
'CAC065' => '33.7437|-115.9939|Riverside||',
'CAC067' => '38.4542|-121.3384|Sacramento||',
'CAC069' => '36.6057|-121.0750|San Benito||',
'CAC071' => '34.8415|-116.1784|San Bernardino||',
'CAC073' => '33.0354|-116.7335|San Diego||',
'CAC075' => '37.7558|-122.4424|San Francisco||',
'CAC077' => '37.9345|-121.2720|San Joaquin||',
'CAC079' => '35.3872|-120.4040|San Luis Obispo||',
'CAC081' => '37.4218|-122.3293|San Mateo||',
'CAC083' => '34.6731|-120.0165|Santa Barbara||',
'CAC085' => '37.2325|-121.6963|Santa Clara||',
'CAC087' => '37.0563|-122.0018|Santa Cruz||',
'CAC089' => '40.7638|-122.0405|Shasta||',
'CAC091' => '39.5804|-120.5160|Sierra||',
'CAC093' => '41.5927|-122.5404|Siskiyou||',
'CAC095' => '38.2805|-121.9266|Solano||',
'CAC097' => '38.5286|-122.8873|Sonoma||',
'CAC099' => '37.5592|-120.9978|Stanislaus||',
'CAC101' => '39.0345|-121.6949|Sutter||',
'CAC103' => '40.1257|-122.2339|Tehama||',
'CAC105' => '40.6507|-123.1126|Trinity||',
'CAC107' => '36.2201|-118.8005|Tulare||',
'CAC109' => '38.0276|-119.9548|Tuolumne||',
'CAC111' => '34.4567|-119.0835|Ventura||',
'CAC113' => '38.6867|-121.9016|Yolo||',
'CAC115' => '39.2691|-121.3512|Yuba||',
'CAZ006' => '37.7558|-122.4423|San Francisco|San Francisco|06075',
'CAZ013' => '40.9299|-122.2247|Shasta Lake Area / Northern Shasta County|Shasta|06089',
'CAZ014' => '40.9423|-121.4882|Burney Basin / Eastern Shasta County|Shasta|06089',
'CAZ015' => '40.2198|-122.2949|Northern Sacramento Valley|Shasta|06089 40.2198|-122.2949|Northern Sacramento Valley|Tehama|06103',
'CAZ016' => '39.3764|-121.926|Central Sacramento Valley|Butte|06007 39.3764|-121.926|Central Sacramento Valley|Colusa|06011 39.3764|-121.926|Central Sacramento Valley|Glenn|06021 39.3764|-121.926|Central Sacramento Valley|Nevada|06057 39.3764|-121.926|Central Sacramento Valley|Sutter|06101 39.3764|-121.926|Central Sacramento Valley|Yuba|06115',
'CAZ017' => '38.6268|-121.5625|Southern Sacramento Valley|Amador|06005 38.6268|-121.5625|Southern Sacramento Valley|El Dorado|06017 38.6268|-121.5625|Southern Sacramento Valley|Placer|06061 38.6268|-121.5625|Southern Sacramento Valley|Sacramento|06067 38.6268|-121.5625|Southern Sacramento Valley|Solano|06095 38.6268|-121.5625|Southern Sacramento Valley|Sutter|06101 38.6268|-121.5625|Southern Sacramento Valley|Yolo|06113',
'CAZ018' => '38.1432|-121.7623|Carquinez Strait and Delta|Sacramento|06067 38.1432|-121.7623|Carquinez Strait and Delta|San Joaquin|06077 38.1432|-121.7623|Carquinez Strait and Delta|Solano|06095',
'CAZ019' => '37.7581|-121.041|Northern San Joaquin Valley|Amador|06005 37.7581|-121.041|Northern San Joaquin Valley|Calaveras|06009 37.7581|-121.041|Northern San Joaquin Valley|San Joaquin|06077 37.7581|-121.041|Northern San Joaquin Valley|Stanislaus|06099 37.7581|-121.041|Northern San Joaquin Valley|Tuolumne|06109',
'CAZ038' => '34.9422|-119.7374|Cuyama Valley|Santa Barbara|06083',
'CAZ043' => '32.9783|-117.2367|San Diego County Coastal Areas|San Diego|06073',
'CAZ048' => '33.8486|-117.2412|San Bernardino and Riverside County Valleys -The Inland Empire|Riverside|06065 33.8486|-117.2412|San Bernardino and Riverside County Valleys -The Inland Empire|San Bernardino|06071',
'CAZ050' => '33.0047|-116.9604|San Diego County Valleys|San Diego|06073',
'CAZ055' => '34.2304|-117.0957|San Bernardino County Mountains|San Bernardino|06071',
'CAZ056' => '33.66|-116.6434|Riverside County Mountains|Riverside|06065',
'CAZ057' => '33.6256|-117.455|Santa Ana Mountains and Foothills|Orange|06059 33.6256|-117.455|Santa Ana Mountains and Foothills|Riverside|06065 33.6256|-117.455|Santa Ana Mountains and Foothills|San Diego|06073',
'CAZ058' => '33.0713|-116.5324|San Diego County Mountains|San Diego|06073',
'CAZ060' => '34.5427|-117.0143|Apple and Lucerne Valleys|San Bernardino|06071',
'CAZ061' => '33.7424|-116.3024|Coachella Valley|Riverside|06065',
'CAZ062' => '33.0511|-116.2536|San Diego County Deserts|San Diego|06073',
'CAZ063' => '39.8175|-122.7565|Mountains Southwestern Shasta County to Western Colusa County|Colusa|06011 39.8175|-122.7565|Mountains Southwestern Shasta County to Western Colusa County|Glenn|06021 39.8175|-122.7565|Mountains Southwestern Shasta County to Western Colusa County|Shasta|06089 39.8175|-122.7565|Mountains Southwestern Shasta County to Western Colusa County|Tehama|06103',
'CAZ065' => '33.7185|-115.2342|San Gorgonio Pass Near Banning|Riverside|06065',
'CAZ066' => '40.1117|-121.7566|Northeast Foothills/Sacramento Valley|Butte|06007 40.1117|-121.7566|Northeast Foothills/Sacramento Valley|Shasta|06089 40.1117|-121.7566|Northeast Foothills/Sacramento Valley|Tehama|06103',
'CAZ067' => '38.6192|-120.7698|Motherlode|Amador|06005 38.6192|-120.7698|Motherlode|Calaveras|06009 38.6192|-120.7698|Motherlode|El Dorado|06017 38.6192|-120.7698|Motherlode|Nevada|06057 38.6192|-120.7698|Motherlode|Placer|06061 38.6192|-120.7698|Motherlode|Tuolumne|06109 38.6192|-120.7698|Motherlode|Yuba|06115',
'CAZ068' => '40.1971|-121.3501|Western Plumas County/Lassen Park|Butte|06007 40.1971|-121.3501|Western Plumas County/Lassen Park|Lassen|06035 40.1971|-121.3501|Western Plumas County/Lassen Park|Plumas|06063 40.1971|-121.3501|Western Plumas County/Lassen Park|Shasta|06089 40.1971|-121.3501|Western Plumas County/Lassen Park|Tehama|06103',
'CAZ069' => '38.7829|-120.3423|West Slope Northern Sierra Nevada|Alpine|06003 38.7829|-120.3423|West Slope Northern Sierra Nevada|Amador|06005 38.7829|-120.3423|West Slope Northern Sierra Nevada|Calaveras|06009 38.7829|-120.3423|West Slope Northern Sierra Nevada|El Dorado|06017 38.7829|-120.3423|West Slope Northern Sierra Nevada|Nevada|06057 38.7829|-120.3423|West Slope Northern Sierra Nevada|Placer|06061 38.7829|-120.3423|West Slope Northern Sierra Nevada|Sierra|06091 38.7829|-120.3423|West Slope Northern Sierra Nevada|Tuolumne|06109 38.7829|-120.3423|West Slope Northern Sierra Nevada|Yuba|06115',
'CAZ070' => '41.6116|-120.0862|Surprise Valley California|Modoc|06049',
'CAZ071' => '40.466|-120.5471|Lassen-Eastern Plumas-Eastern Sierra Counties|Lassen|06035 40.466|-120.5471|Lassen-Eastern Plumas-Eastern Sierra Counties|Plumas|06063 40.466|-120.5471|Lassen-Eastern Plumas-Eastern Sierra Counties|Sierra|06091',
'CAZ072' => '38.9481|-119.9683|Greater Lake Tahoe Area|Alpine|06003 38.9481|-119.9683|Greater Lake Tahoe Area|El Dorado|06017 38.9481|-119.9683|Greater Lake Tahoe Area|Nevada|06057 38.9481|-119.9683|Greater Lake Tahoe Area|Placer|06061',
'CAZ073' => '37.939|-118.8867|Mono|Mono|06051',
'CAZ080' => '41.5562|-123.1641|Western Siskiyou County|Siskiyou|06093',
'CAZ081' => '41.7362|-122.5631|Central Siskiyou County|Siskiyou|06093',
'CAZ082' => '41.2704|-122.1846|South Central Siskiyou County|Siskiyou|06093',
'CAZ083' => '41.5425|-121.8967|North Central and Southeast Siskiyou County|Siskiyou|06093',
'CAZ084' => '41.8639|-121.6371|Northeast Siskiyou and Northwest Modoc Counties|Modoc|06049 41.8639|-121.6371|Northeast Siskiyou and Northwest Modoc Counties|Siskiyou|06093',
'CAZ085' => '41.5611|-120.7585|Modoc County|Modoc|06049',
'CAZ087' => '33.382|-118.4331|Catalina Island|Los Angeles|06037',
'CAZ088' => '34.4534|-118.5579|Santa Clarita Valley|Los Angeles|06037',
'CAZ101' => '41.0243|-124.0956|Coastal Del Norte|Del Norte|06015',
'CAZ102' => '41.0243|-124.0956|Del Norte Interior|Del Norte|06015',
'CAZ103' => '41.0243|-124.0956|Northern Humboldt Coast|Humboldt|06023',
'CAZ104' => '41.0243|-124.0956|Southwestern Humboldt|Humboldt|06023',
'CAZ105' => '41.0243|-124.0956|Northern Humboldt Interior|Humboldt|06023',
'CAZ106' => '41.0243|-124.0956|Southern Humboldt Interior|Humboldt|06023',
'CAZ107' => '40.7088|-123.111|Northern Trinity|Trinity|06105',
'CAZ108' => '40.7088|-123.111|Southern Trinity|Trinity|06105',
'CAZ109' => '39.3778|-123.7271|Mendocino Coast|Mendocino|06045',
'CAZ110' => '39.6359|-123.4371|Northwestern Mendocino Interior|Mendocino|06045',
'CAZ111' => '39.7603|-123.1396|Northeastern Mendocino Interior|Mendocino|06045',
'CAZ112' => '39.1561|-123.4915|Southwestern Mendocino Interior|Mendocino|06045',
'CAZ113' => '39.0904|-123.1953|Southeastern Mendocino Interior|Mendocino|06045',
'CAZ114' => '39.3619|-122.8628|Northern Lake County|Lake|06033',
'CAZ115' => '38.9779|-122.7022|Southern Lake County|Lake|06033',
'CAZ300' => '36.6593|-120.7869|West Side Mountains north of 198|Fresno|06019 36.6593|-120.7869|West Side Mountains north of 198|Merced|06047',
'CAZ301' => '36.9125|-120.7212|Los Banos - Dos Palos|Fresno|06019 36.9125|-120.7212|Los Banos - Dos Palos|Merced|06047',
'CAZ302' => '37.0903|-120.4536|Merced - Madera - Mendota|Fresno|06019 37.0903|-120.4536|Merced - Madera - Mendota|Madera|06039 37.0903|-120.4536|Merced - Madera - Mendota|Merced|06047',
'CAZ303' => '37.2577|-120.193|Planada - Le Grand - Snelling|Madera|06039 37.2577|-120.193|Planada - Le Grand - Snelling|Mariposa|06043 37.2577|-120.193|Planada - Le Grand - Snelling|Merced|06047',
'CAZ304' => '36.0678|-120.1879|Coalinga - Avenal|Fresno|06019 36.0678|-120.1879|Coalinga - Avenal|Kings|06031',
'CAZ305' => '36.287|-120.1034|West Side of Fresno and Kings Counties|Fresno|06019 36.287|-120.1034|West Side of Fresno and Kings Counties|Kings|06031',
'CAZ306' => '36.5869|-119.8953|Caruthers - San Joaquin - Selma|Fresno|06019 36.5869|-119.8953|Caruthers - San Joaquin - Selma|Tulare|06107',
'CAZ307' => '36.7953|-119.7342|Fresno-Clovis|Fresno|06019',
'CAZ308' => '35.6837|-120.0363|West Side Mountains South of 198|Fresno|06019 35.6837|-120.0363|West Side Mountains South of 198|Kern|06029 35.6837|-120.0363|West Side Mountains South of 198|Kings|06031',
'CAZ309' => '35.6098|-119.6082|Buttonwillow - Lost Hills - I5|Kern|06029 35.6098|-119.6082|Buttonwillow - Lost Hills - I5|Kings|06031',
'CAZ310' => '35.7752|-119.3702|Delano-Wasco-Shafter|Kern|06029 35.7752|-119.3702|Delano-Wasco-Shafter|Kings|06031 35.7752|-119.3702|Delano-Wasco-Shafter|Tulare|06107',
'CAZ311' => '36.226|-119.5882|Hanford - Corcoran - Lemoore|Fresno|06019 36.226|-119.5882|Hanford - Corcoran - Lemoore|Kings|06031 36.226|-119.5882|Hanford - Corcoran - Lemoore|Tulare|06107',
'CAZ312' => '36.3626|-119.2605|Visalia - Porterville - Reedley|Fresno|06019 36.3626|-119.2605|Visalia - Porterville - Reedley|Tulare|06107',
'CAZ313' => '35.2078|-119.4499|Buena Vista|Kern|06029',
'CAZ314' => '35.3612|-119.0216|Bakersfield|Kern|06029',
'CAZ315' => '35.7755|-119.0391|Southeast San Joaquin Valley|Kern|06029 35.7755|-119.0391|Southeast San Joaquin Valley|Tulare|06107',
'CAZ316' => '35.1382|-118.9898|South End San Joaquin Valley|Kern|06029',
'CAZ317' => '37.3511|-119.9965|Mariposa Madera Foothills|Madera|06039 37.3511|-119.9965|Mariposa Madera Foothills|Mariposa|06043 37.3511|-119.9965|Mariposa Madera Foothills|Merced|06047',
'CAZ318' => '37.4854|-119.8078|Mariposa-Madera Lower Sierra|Madera|06039 37.4854|-119.8078|Mariposa-Madera Lower Sierra|Mariposa|06043',
'CAZ319' => '36.607|-119.2012|Fresno-Tulare Foothills|Fresno|06019 36.607|-119.2012|Fresno-Tulare Foothills|Tulare|06107',
'CAZ320' => '36.837|-119.1509|Fresno-Tulare Lower Sierra|Fresno|06019 36.837|-119.1509|Fresno-Tulare Lower Sierra|Tulare|06107',
'CAZ321' => '35.7347|-118.88|South End Sierra Foothills|Kern|06029 35.7347|-118.88|South End Sierra Foothills|Tulare|06107',
'CAZ322' => '35.9436|-118.7513|South End of the Lower Sierra|Kern|06029 35.9436|-118.7513|South End of the Lower Sierra|Tulare|06107',
'CAZ323' => '37.8529|-119.553|Yosemite NP outside of the valley|Madera|06039 37.8529|-119.553|Yosemite NP outside of the valley|Mariposa|06043 37.8529|-119.553|Yosemite NP outside of the valley|Tuolumne|06109',
'CAZ324' => '37.7184|-119.662|Yosemite Valley|Mariposa|06043',
'CAZ325' => '37.3286|-119.3176|San Joaquin River Canyon|Fresno|06019 37.3286|-119.3176|San Joaquin River Canyon|Madera|06039',
'CAZ326' => '37.4492|-119.1195|Upper San Joaquin River|Fresno|06019 37.4492|-119.1195|Upper San Joaquin River|Madera|06039',
'CAZ327' => '37.1044|-119.0287|Kaiser to Rodgers Ridge|Fresno|06019',
'CAZ328' => '36.899|-118.5876|Kings Canyon NP|Fresno|06019 36.899|-118.5876|Kings Canyon NP|Tulare|06107',
'CAZ329' => '36.7902|-118.8599|Grant Grove Area|Fresno|06019 36.7902|-118.8599|Grant Grove Area|Tulare|06107',
'CAZ330' => '36.5082|-118.575|Sequoia NP|Tulare|06107',
'CAZ331' => '36.0209|-118.3399|South End of the Upper Sierra|Kern|06029 36.0209|-118.3399|South End of the Upper Sierra|Tulare|06107',
'CAZ332' => '35.6428|-118.4122|Kern River Valley|Kern|06029 35.6428|-118.4122|Kern River Valley|Tulare|06107',
'CAZ333' => '35.4383|-118.4292|Piute Walker Basin|Kern|06029',
'CAZ334' => '35.1324|-118.5472|Tehachapi|Kern|06029',
'CAZ335' => '34.8909|-118.9043|Grapevine|Kern|06029',
'CAZ336' => '34.9239|-119.1812|Frazier Mountain Communities|Kern|06029',
'CAZ337' => '35.6195|-117.7591|Indian Wells Valley|Kern|06029',
'CAZ338' => '35.2364|-118.1893|Mojave Desert Slopes|Kern|06029',
'CAZ339' => '35.0734|-117.9052|Mojave Desert|Kern|06029',
'CAZ340' => '35.3656|-120.8857|San Luis Obispo County Beaches|San Luis Obispo|06079',
'CAZ341' => '35.1214|-120.5471|San Luis Obispo County Inland Central Coast|San Luis Obispo|06079',
'CAZ342' => '35.4597|-120.795|Santa Lucia Mountains|San Luis Obispo|06079',
'CAZ343' => '35.6395|-120.7122|Southern Salinas Valley|San Luis Obispo|06079',
'CAZ344' => '35.4405|-120.1532|San Luis Obispo County Interior Valleys|San Luis Obispo|06079',
'CAZ345' => '35.1768|-120.1048|San Luis Obispo County Mountains|San Luis Obispo|06079',
'CAZ346' => '34.7179|-120.5534|Santa Barbara County Central Coast Beaches|Santa Barbara|06083',
'CAZ347' => '34.7553|-120.3762|Santa Barbara County Inland Central Coast|Santa Barbara|06083',
'CAZ348' => '34.6908|-120.0988|Santa Ynez Valley|Santa Barbara|06083',
'CAZ349' => '34.5052|-120.3013|Santa Barbara County Southwestern Coast|Santa Barbara|06083',
'CAZ350' => '34.4344|-119.7142|Santa Barbara County Southeastern Coast|Santa Barbara|06083',
'CAZ351' => '34.5164|-119.9838|Santa Ynez Mountains Western Range|Santa Barbara|06083',
'CAZ352' => '34.4707|-119.548|Santa Ynez Mountains Eastern Range|Santa Barbara|06083 34.4707|-119.548|Santa Ynez Mountains Eastern Range|Ventura|06111',
'CAZ353' => '34.7747|-119.823|Santa Barbara County Interior Mountains|Santa Barbara|06083',
'CAZ354' => '34.2116|-119.2077|Ventura County Beaches|Ventura|06111',
'CAZ355' => '34.2366|-119.0715|Ventura County Inland Coast|Ventura|06111',
'CAZ356' => '34.4011|-119.3447|Lake Casitas|Ventura|06111',
'CAZ357' => '34.4268|-119.2615|Ojai Valley|Ventura|06111',
'CAZ358' => '34.3897|-119.0367|Central Ventura County Valleys|Ventura|06111',
'CAZ362' => '34.0408|-118.6777|Malibu Coast|Los Angeles|06037',
'CAZ366' => '33.8457|-118.3308|Los Angeles County Beaches|Los Angeles|06037',
'CAZ367' => '33.7652|-118.3624|Palos Verdes Hills|Los Angeles|06037',
'CAZ368' => '33.9486|-118.2407|Los Angeles County Inland Coast including Downtown Los Angeles|Los Angeles|06037',
'CAZ369' => '34.0907|-118.889|Western Santa Monica Mountains|Los Angeles|06037 34.0907|-118.889|Western Santa Monica Mountains|Ventura|06111',
'CAZ370' => '34.0938|-118.5622|Eastern Santa Monica Mountains|Los Angeles|06037',
'CAZ371' => '34.1299|-118.7423|Calabasas and Agoura Hills|Los Angeles|06037',
'CAZ372' => '34.2249|-118.5083|Western San Fernando Valley|Los Angeles|06037',
'CAZ373' => '34.1898|-118.2987|Eastern San Fernando Valley|Los Angeles|06037',
'CAZ374' => '34.2322|-118.8394|Southeastern Ventura County Valleys|Ventura|06111',
'CAZ375' => '34.3387|-118.7386|Santa Susana Mountains|Los Angeles|06037 34.543|-119.0936|Santa Susana Mountains|Ventura|06111',
'CAZ376' => '34.543|-119.0936|Southern Ventura County Mountains|Ventura|06111',
'CAZ377' => '34.7342|-119.1611|Northern Ventura County Mountains|Ventura|06111',
'CAZ378' => '34.6716|-118.7273|Northwestern Los Angeles County Mountains including the Interstate 5 Corridor|Los Angeles|06037',
'CAZ379' => '34.4617|-118.2964|Western San Gabriel Mountains including the Highway 14 Corridor|Los Angeles|06037',
'CAZ380' => '34.2905|-117.8806|Eastern San Gabriel Mountains|Los Angeles|06037',
'CAZ381' => '34.6494|-118.3779|Western Antelope Valley Foothills|Los Angeles|06037',
'CAZ382' => '34.4909|-117.8141|Eastern Antelope Valley Foothills|Los Angeles|06037',
'CAZ383' => '34.7001|-118.0482|Antelope Valley |Los Angeles|06037',
'CAZ502' => '38.0602|-122.6859|Marin Coastal Range|Marin|06041',
'CAZ503' => '38.6598|-123.1621|Sonoma Coastal Range|Sonoma|06097',
'CAZ504' => '38.5823|-122.4433|North Bay Interior Mountains|Napa|06055 38.5823|-122.4433|North Bay Interior Mountains|Sonoma|06097',
'CAZ505' => '38.2364|-122.9543|Coastal North Bay Including Point Reyes National Seashore|Marin|06041 38.2364|-122.9543|Coastal North Bay Including Point Reyes National Seashore|Sonoma|06097',
'CAZ506' => '38.3698|-122.6419|North Bay Interior Valleys|Marin|06041 38.3698|-122.6419|North Bay Interior Valleys|Napa|06055 38.3698|-122.6419|North Bay Interior Valleys|Sonoma|06097',
'CAZ508' => '37.5938|-122.165|San Francisco Bay Shoreline|Alameda|06001 37.5938|-122.165|San Francisco Bay Shoreline|Contra Costa|06013 37.5938|-122.165|San Francisco Bay Shoreline|San Mateo|06081 37.5938|-122.165|San Francisco Bay Shoreline|Santa Clara|06085',
'CAZ509' => '37.374|-122.3923|San Fransisco Peninsula Coast|San Mateo|06081 37.374|-122.3923|San Fransisco Peninsula Coast|Santa Cruz|06087',
'CAZ510' => '37.8803|-121.8801|East Bay Interior Valleys|Alameda|06001 37.8803|-121.8801|East Bay Interior Valleys|Contra Costa|06013',
'CAZ512' => '37.1726|-122.04|Santa Cruz Mountains|San Mateo|06081 37.1726|-122.04|Santa Cruz Mountains|Santa Clara|06085 37.1726|-122.04|Santa Cruz Mountains|Santa Cruz|06087',
'CAZ513' => '37.2196|-121.7971|Santa Clara Valley Including San Jose|Santa Clara|06085',
'CAZ514' => '37.243|-121.5277|Eastern Santa Clara Hills|Santa Clara|06085',
'CAZ515' => '37.7045|-121.8201|East Bay Hills|Alameda|06001 37.7045|-121.8201|East Bay Hills|Contra Costa|06013',
'CAZ516' => '36.1014|-121.0546|Southern Salinas Valley/Arroyo Seco and Lake San Antonio|Monterey|06053',
'CAZ517' => '36.1606|-121.4188|Santa Lucia Mountains and Los Padres National Forest|Monterey|06053',
'CAZ518' => '36.3718|-120.9214|Mountains Of San Benito County And Interior Monterey County Including Pinnacles National Monument|Monterey|06053 36.3718|-120.9214|Mountains Of San Benito County And Interior Monterey County Including Pinnacles National Monument|San Benito|06069',
'CAZ519' => '36.8269|-118.341|Eastern Sierra Slopes of Inyo County|Inyo|06027',
'CAZ520' => '36.5133|-118.0127|Owens Valley|Inyo|06027',
'CAZ521' => '37.0104|-118.0388|White Mountains of Inyo County|Inyo|06027',
'CAZ522' => '36.4199|-117.1006|Death Valley National Park|Inyo|06027',
'CAZ523' => '35.3053|-117.0005|Western Mojave Desert|San Bernardino|06071',
'CAZ524' => '35.1398|-115.7069|Eastern Mojave Desert Including the Mojave National Preserve|San Bernardino|06071',
'CAZ525' => '34.3424|-116.0947|Morongo Basin|San Bernardino|06071',
'CAZ526' => '34.3849|-115.0956|Cadiz Basin|San Bernardino|06071',
'CAZ527' => '34.4988|-114.5011|San Bernadino County-Upper Colorado River Valley|San Bernardino|06071',
'CAZ528' => '36.6769|-121.5047|Northern Salinas Valley/Hollister Valley and Carmel Valley|Monterey|06053 36.6769|-121.5047|Northern Salinas Valley/Hollister Valley and Carmel Valley|San Benito|06069',
'CAZ529' => '36.9757|-121.9005|Northern Monterey Bay|Santa Cruz|06087',
'CAZ530' => '36.6165|-121.7566|Southern Monterey Bay and Big Sur Coast|Monterey|06053',
'CAZ548' => '34.0657|-117.9738|Los Angeles County San Gabriel Valley|Los Angeles|06037',
'CAZ549' => '33.9774|-120.1462|San Miguel and Santa Rosa Islands|Santa Barbara|06083',
'CAZ550' => '34.0138|-119.7416|Santa Cruz and Anacapa Islands|Santa Barbara|06083',
'CAZ552' => '33.7028|-117.7899|Orange County Coastal|Orange|06059',
'CAZ554' => '33.7234|-117.7705|Orange County Inland|Orange|06059',
'CAZ560' => '33.9359|-116.0847|Joshua Tree NP West|San Bernardino|06071',
'CAZ561' => '33.9564|-115.6533|Joshua Tree NP East|San Bernardino|06071',
'CAZ562' => '32.8129|-116.039|Imperial County Southwest|Imperial|06025',
'CAZ563' => '33.3091|-115.8096|Salton Sea|Imperial|06025 33.3091|-115.8096|Salton Sea|Riverside|06065',
'CAZ564' => '33.3715|-115.2724|Chuckwalla Mountains|Imperial|06025 33.3715|-115.2724|Chuckwalla Mountains|Riverside|06065',
'CAZ565' => '32.886|-114.9902|Imperial County Southeast|Imperial|06025',
'CAZ566' => '32.9908|-115.9008|Imperial County West|Imperial|06025',
'CAZ567' => '32.9245|-115.5185|Imperial Valley|Imperial|06025',
'CAZ568' => '33.6785|-115.6832|Chiriaco Summit|Riverside|06065',
'CAZ569' => '33.4256|-114.6527|Palo Verde Valley|Imperial|06025 33.4256|-114.6527|Palo Verde Valley|Riverside|06065',
'CAZ570' => '33.8125|-115.0182|Chuckwalla Valley|Riverside|06065',
'COC001' => '39.8736|-104.3379|Adams||',
'COC003' => '37.5729|-105.7883|Alamosa||',
'COC005' => '39.6497|-104.3381|Arapahoe||',
'COC007' => '37.1936|-107.0483|Archuleta||',
'COC009' => '37.3192|-102.5605|Baca||',
'COC011' => '37.9551|-103.0717|Bent||',
'COC013' => '40.0925|-105.3575|Boulder||',
'COC014' => '39.9540|-105.0525|Broomfield||',
'COC015' => '38.7466|-106.1938|Chaffee||',
'COC017' => '38.8279|-102.6034|Cheyenne||',
'COC019' => '39.6891|-105.6444|Clear Creek||',
'COC021' => '37.2007|-106.1917|Conejos||',
'COC023' => '37.2781|-105.4283|Costilla||',
'COC025' => '38.3266|-103.7849|Crowley||',
'COC027' => '38.1087|-105.3674|Custer||',
'COC029' => '38.8613|-107.8630|Delta||',
'COC031' => '39.7611|-104.8772|Denver||',
'COC033' => '37.7516|-108.5172|Dolores||',
'COC035' => '39.3297|-104.9295|Douglas||',
'COC037' => '39.6278|-106.6953|Eagle||',
'COC039' => '39.2866|-104.1359|Elbert||',
'COC041' => '38.8321|-104.5256|El Paso||',
'COC043' => '38.4730|-105.4396|Fremont||',
'COC045' => '39.5993|-107.9039|Garfield||',
'COC047' => '39.8576|-105.5226|Gilpin||',
'COC049' => '40.1026|-106.1184|Grand||',
'COC051' => '38.6668|-107.0317|Gunnison||',
'COC053' => '37.8213|-107.3003|Hinsdale||',
'COC055' => '37.6847|-104.9606|Huerfano||',
'COC057' => '40.6664|-106.3428|Jackson||',
'COC059' => '39.5865|-105.2506|Jefferson||',
'COC061' => '38.4327|-102.7404|Kiowa||',
'COC063' => '39.3054|-102.6029|Kit Carson||',
'COC065' => '39.2020|-106.3451|Lake||',
'COC067' => '37.2866|-107.8435|La Plata||',
'COC069' => '40.6664|-105.4612|Larimer||',
'COC071' => '37.3159|-104.0387|Las Animas||',
'COC073' => '38.9880|-103.5140|Lincoln||',
'COC075' => '40.7247|-103.1101|Logan||',
'COC077' => '39.0183|-108.4665|Mesa||',
'COC079' => '37.6690|-106.9241|Mineral||',
'COC081' => '40.6184|-108.2073|Moffat||',
'COC083' => '37.3384|-108.5968|Montezuma||',
'COC085' => '38.4022|-108.2694|Montrose||',
'COC087' => '40.2627|-103.8098|Morgan||',
'COC089' => '37.9027|-103.7164|Otero||',
'COC091' => '38.1555|-107.7693|Ouray||',
'COC093' => '39.1193|-105.7172|Park||',
'COC095' => '40.5939|-102.3575|Phillips||',
'COC097' => '39.2171|-106.9166|Pitkin||',
'COC099' => '37.9552|-102.3933|Prowers||',
'COC101' => '38.1734|-104.5128|Pueblo||',
'COC103' => '39.9798|-108.2172|Rio Blanco||',
'COC105' => '37.5825|-106.3832|Rio Grande||',
'COC107' => '40.4851|-106.9912|Routt||',
'COC109' => '38.0806|-106.2815|Saguache||',
'COC111' => '37.7640|-107.6761|San Juan||',
'COC113' => '38.0038|-108.4058|San Miguel||',
'COC115' => '40.8758|-102.3518|Sedgwick||',
'COC117' => '39.6342|-106.1163|Summit||',
'COC119' => '38.8822|-105.1618|Teller||',
'COC121' => '39.9710|-103.2013|Washington||',
'COC123' => '40.5549|-104.3925|Weld||',
'COC125' => '40.0029|-102.4243|Yuma||',
'COZ001' => '40.444|-108.6994|Lower Yampa River Basin|Garfield|08045 40.444|-108.6994|Lower Yampa River Basin|Moffat|08081 40.444|-108.6994|Lower Yampa River Basin|Rio Blanco|08103',
'COZ002' => '40.4046|-107.9134|Central Yampa River Basin|Moffat|08081 40.4046|-107.9134|Central Yampa River Basin|Rio Blanco|08103 40.4046|-107.9134|Central Yampa River Basin|Routt|08107',
'COZ003' => '39.5758|-108.4377|Roan and Tavaputs Plateaus|Garfield|08045 39.5758|-108.4377|Roan and Tavaputs Plateaus|Mesa|08077 39.5758|-108.4377|Roan and Tavaputs Plateaus|Rio Blanco|08103',
'COZ004' => '40.5653|-106.9552|Elkhead and Park Mountains|Moffat|08081 40.5653|-106.9552|Elkhead and Park Mountains|Routt|08107',
'COZ005' => '40.3903|-106.9616|Upper Yampa River Basin|Routt|08107',
'COZ006' => '39.1541|-108.6809|Grand Valley|Garfield|08045 39.1541|-108.6809|Grand Valley|Mesa|08077',
'COZ007' => '39.4422|-107.9773|Debeque to Silt Corridor|Garfield|08045 39.4422|-107.9773|Debeque to Silt Corridor|Mesa|08077',
'COZ008' => '39.6286|-107.0292|Central Colorado River Basin|Eagle|08037 39.6286|-107.0292|Central Colorado River Basin|Garfield|08045 39.6286|-107.0292|Central Colorado River Basin|Pitkin|08097',
'COZ009' => '39.1332|-107.8549|Grand and Battlement Mesas|Delta|08029 39.1332|-107.8549|Grand and Battlement Mesas|Garfield|08045 39.1332|-107.8549|Grand and Battlement Mesas|Mesa|08077',
'COZ010' => '39.4353|-106.8147|Gore and Elk Mountains/Central Mountain Valleys|Eagle|08037 39.4353|-106.8147|Gore and Elk Mountains/Central Mountain Valleys|Garfield|08045 39.4353|-106.8147|Gore and Elk Mountains/Central Mountain Valleys|Pitkin|08097',
'COZ011' => '38.6735|-107.9201|Central Gunnison and Uncompahgre River Basin|Delta|08029 38.6735|-107.9201|Central Gunnison and Uncompahgre River Basin|Gunnison|08051 38.6735|-107.9201|Central Gunnison and Uncompahgre River Basin|Mesa|08077 38.6735|-107.9201|Central Gunnison and Uncompahgre River Basin|Montrose|08085',
'COZ012' => '38.8011|-107.0042|West Elk and Sawatch Mountains|Delta|08029 38.8011|-107.0042|West Elk and Sawatch Mountains|Gunnison|08051 38.8011|-107.0042|West Elk and Sawatch Mountains|Montrose|08085',
'COZ013' => '39.9766|-107.4376|Flattops|Eagle|08037 39.9766|-107.4376|Flattops|Garfield|08045 39.9766|-107.4376|Flattops|Moffat|08081 39.9766|-107.4376|Flattops|Rio Blanco|08103 39.9766|-107.4376|Flattops|Routt|08107',
'COZ014' => '38.4776|-107.1881|Upper Gunnison River Valley|Gunnison|08051 38.4776|-107.1881|Upper Gunnison River Valley|Montrose|08085',
'COZ017' => '38.5539|-108.4296|Uncompahgre Plateu/Dallas Divide|Delta|08029 38.5539|-108.4296|Uncompahgre Plateu/Dallas Divide|Mesa|08077 38.5539|-108.4296|Uncompahgre Plateu/Dallas Divide|Montrose|08085 38.5539|-108.4296|Uncompahgre Plateu/Dallas Divide|Ouray|08091 38.5539|-108.4296|Uncompahgre Plateu/Dallas Divide|San Miguel|08113',
'COZ018' => '38.0588|-107.5504|Northwestern San Juan Mountains|Gunnison|08051 38.0588|-107.5504|Northwestern San Juan Mountains|Hinsdale|08053 38.0588|-107.5504|Northwestern San Juan Mountains|Montrose|08085 38.0588|-107.5504|Northwestern San Juan Mountains|Ouray|08091 38.0588|-107.5504|Northwestern San Juan Mountains|San Miguel|08113',
'COZ019' => '37.5206|-107.6597|Southwest San Juan Mountains|Archuleta|08007 37.5206|-107.6597|Southwest San Juan Mountains|Dolores|08033 37.5206|-107.6597|Southwest San Juan Mountains|Hinsdale|08053 37.5206|-107.6597|Southwest San Juan Mountains|La Plata|08067 37.5206|-107.6597|Southwest San Juan Mountains|Montezuma|08083 37.5206|-107.6597|Southwest San Juan Mountains|San Juan|08111 37.5206|-107.6597|Southwest San Juan Mountains|San Miguel|08113',
'COZ020' => '38.1963|-108.7095|Paradox Valley/Little Dolores River|Dolores|08033 38.1963|-108.7095|Paradox Valley/Little Dolores River|Mesa|08077 38.1963|-108.7095|Paradox Valley/Little Dolores River|Montrose|08085 38.1963|-108.7095|Paradox Valley/Little Dolores River|San Miguel|08113',
'COZ021' => '37.3809|-108.7278|Four Corners/Upper Dolores River|Dolores|08033 37.3809|-108.7278|Four Corners/Upper Dolores River|Montezuma|08083 37.3809|-108.7278|Four Corners/Upper Dolores River|San Miguel|08113',
'COZ022' => '37.1488|-107.8775|Animas River Basin|La Plata|08067',
'COZ023' => '37.1383|-107.2004|San Juan River Basin|Archuleta|08007',
'COZ030' => '40.6766|-106.309|Jackson County Below 9000 Feet|Jackson|08057',
'COZ031' => '40.6175|-106.6092|West Jackson and West Grand Counties Above 9000 Feet|Grand|08049 40.6175|-106.6092|West Jackson and West Grand Counties Above 9000 Feet|Jackson|08057',
'COZ032' => '40.0726|-106.209|Grand and Summit Counties Below 9000 Feet|Grand|08049 40.0726|-106.209|Grand and Summit Counties Below 9000 Feet|Summit|08117',
'COZ033' => '40.488|-105.9071|South and East Jackson/Larimer/North and Northeast Grand/Northwest Boulder Counties Above 9000 Feet|Boulder|08013 40.488|-105.9071|South and East Jackson/Larimer/North and Northeast Grand/Northwest Boulder Counties Above 9000 Feet|Grand|08049 40.488|-105.9071|South and East Jackson/Larimer/North and Northeast Grand/Northwest Boulder Counties Above 9000 Feet|Jackson|08057 40.488|-105.9071|South and East Jackson/Larimer/North and Northeast Grand/Northwest Boulder Counties Above 9000 Feet|Larimer|08069',
'COZ034' => '39.6044|-105.8505|South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet|Boulder|08013 39.6044|-105.8505|South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet|Clear Creek|08019 39.6044|-105.8505|South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet|Gilpin|08047 39.6044|-105.8505|South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet|Grand|08049 39.6044|-105.8505|South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet|Jefferson|08059 39.6044|-105.8505|South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet|Park|08093 39.6044|-105.8505|South and Southeast Grand/West Central and Southwest Boulder/Gilpin/Clear Creek/Summit/North and West Park Counties Above 9000 Feet|Summit|08117',
'COZ035' => '40.6099|-105.4708|Larimer and Boulder Counties Between 6000 and 9000 Feet|Boulder|08013 40.6099|-105.4708|Larimer and Boulder Counties Between 6000 and 9000 Feet|Larimer|08069',
'COZ036' => '39.4838|-105.2681|Jefferson and West Douglas Counties Above 6000 Feet/Gilpin/Clear Creek/Northeast Park Counties Below 9000 Feet|Clear Creek|08019 39.4838|-105.2681|Jefferson and West Douglas Counties Above 6000 Feet/Gilpin/Clear Creek/Northeast Park Counties Below 9000 Feet|Douglas|08035 39.4838|-105.2681|Jefferson and West Douglas Counties Above 6000 Feet/Gilpin/Clear Creek/Northeast Park Counties Below 9000 Feet|Gilpin|08047 39.4838|-105.2681|Jefferson and West Douglas Counties Above 6000 Feet/Gilpin/Clear Creek/Northeast Park Counties Below 9000 Feet|Jefferson|08059 39.4838|-105.2681|Jefferson and West Douglas Counties Above 6000 Feet/Gilpin/Clear Creek/Northeast Park Counties Below 9000 Feet|Park|08093',
'COZ037' => '38.9846|-105.6737|Central and Southeast Park County|Park|08093',
'COZ038' => '40.7183|-104.8423|Larimer County Below 6000 Feet/Northwest Weld County|Larimer|08069 40.7183|-104.8423|Larimer County Below 6000 Feet/Northwest Weld County|Weld|08123',
'COZ039' => '39.9606|-105.156|Boulder And Jefferson Counties Below 6000 Feet/West Broomfield County|Boulder|08013 39.9606|-105.156|Boulder And Jefferson Counties Below 6000 Feet/West Broomfield County|Broomfield|08014 39.9606|-105.156|Boulder And Jefferson Counties Below 6000 Feet/West Broomfield County|Jefferson|08059',
'COZ040' => '39.7656|-104.804|North Douglas County Below 6000 Feet/Denver/West Adams and Arapahoe Counties/East Broomfield County|Adams|08001 39.7656|-104.804|North Douglas County Below 6000 Feet/Denver/West Adams and Arapahoe Counties/East Broomfield County|Arapahoe|08005 39.7656|-104.804|North Douglas County Below 6000 Feet/Denver/West Adams and Arapahoe Counties/East Broomfield County|Broomfield|08014 39.7656|-104.804|North Douglas County Below 6000 Feet/Denver/West Adams and Arapahoe Counties/East Broomfield County|Denver|08031 39.7656|-104.804|North Douglas County Below 6000 Feet/Denver/West Adams and Arapahoe Counties/East Broomfield County|Douglas|08035',
'COZ041' => '39.3075|-104.5091|Elbert/Central and East Douglas Counties Above 6000 Feet|Arapahoe|08005 39.3075|-104.5091|Elbert/Central and East Douglas Counties Above 6000 Feet|Douglas|08035 39.3075|-104.5091|Elbert/Central and East Douglas Counties Above 6000 Feet|Elbert|08039',
'COZ042' => '40.7427|-104.0025|Northeast Weld County|Weld|08123',
'COZ043' => '40.2668|-104.5924|Central and South Weld County|Weld|08123',
'COZ044' => '40.2627|-103.8098|Morgan County|Morgan|08087',
'COZ045' => '39.7839|-104.1048|Central and East Adams and Arapahoe Counties|Adams|08001 39.7839|-104.1048|Central and East Adams and Arapahoe Counties|Arapahoe|08005',
'COZ046' => '39.356|-103.6814|North and Northeast Elbert County Below 6000 Feet/North Lincoln County|Elbert|08039 39.356|-103.6814|North and Northeast Elbert County Below 6000 Feet/North Lincoln County|Lincoln|08073',
'COZ047' => '38.8048|-103.5944|Southeast Elbert County Below 6000 Feet/South Lincoln County|Elbert|08039 38.8048|-103.5944|Southeast Elbert County Below 6000 Feet/South Lincoln County|Lincoln|08073',
'COZ048' => '40.7247|-103.1101|Logan County|Logan|08075',
'COZ049' => '39.971|-103.2013|Washington County|Washington|08121',
'COZ050' => '40.8758|-102.3518|Sedgwick County|Sedgwick|08115',
'COZ051' => '40.5939|-102.3575|Phillips County|Phillips|08095',
'COZ058' => '39.2545|-106.2141|Western Mosquito Range/East Lake County Above 11000 Ft|Lake|08065',
'COZ059' => '39.1873|-106.3446|Leadville Vicinity/Lake County Below 11000 Ft|Lake|08065',
'COZ060' => '38.8197|-106.3586|Eastern Sawatch Mountains above 11000 Ft|Chaffee|08015 38.8197|-106.3586|Eastern Sawatch Mountains above 11000 Ft|Lake|08065 38.8197|-106.3586|Eastern Sawatch Mountains above 11000 Ft|Saguache|08109',
'COZ061' => '38.7415|-106.2559|Western Chaffee County Between 9000 and 11000 Ft|Chaffee|08015',
'COZ062' => '38.6873|-106.0928|Central Chaffee County Below 9000 Ft|Chaffee|08015',
'COZ063' => '38.8243|-106.0253|Western Mosquito Range/East Chaffee County above 9000Ft|Chaffee|08015',
'COZ064' => '38.3063|-106.7044|Saguache County West of Continental Divide Below 10000 Ft|Saguache|08109',
'COZ065' => '38.1071|-106.3423|Saguache County East of Continental Divide below 10000 Ft|Rio Grande|08105 38.1071|-106.3423|Saquache County East of Continental Divide below 10000 Ft|Saguache|08109',
'COZ066' => '38.0229|-106.7318|La Garita Mountains Above 10000 Ft|Mineral|08079 38.0229|-106.7318|La Garita Mountains Above 10000 Ft|Rio Grande|08105 38.0229|-106.7318|La Garita Mountains Above 10000 Ft|Saguache|08109',
'COZ067' => '37.469|-106.5413|Upper Rio Grande Valley/Eastern San Juan Mountains Below 10000 Ft|Conejos|08021 37.469|-106.5413|Upper Rio Grande Valley/Eastern San Juan Mountains Below 10000 Ft|Mineral|08079 37.469|-106.5413|Upper Rio Grande Valley/Eastern San Juan Mountains Below 10000 Ft|Rio Grande|08105',
'COZ068' => '37.4272|-106.7002|Eastern San Juan Mountains Above 10000 Ft|Conejos|08021 37.4272|-106.7002|Eastern San Juan Mountains Above 10000 Ft|Mineral|08079 37.4272|-106.7002|Eastern San Juan Mountains Above 10000 Ft|Rio Grande|08105',
'COZ069' => '37.9152|-106.0347|Del Norte Vicinity/Northern San Luis Valley Below 8500 Ft|Rio Grande|08105 37.9152|-106.0347|Del Norte Vicinity/Northern San Luis Valley Below 8500 Ft|Saguache|08109',
'COZ070' => '37.5614|-105.8929|Alamosa Vicinity/Central San Luis Valley Below 8500 Ft|Alamosa|08003 37.5614|-105.8929|Alamosa Vicinity/Central San Luis Valley Below 8500 Ft|Rio Grande|08105',
'COZ071' => '37.2224|-105.7537|Southern San Luis Valley|Conejos|08021 37.2224|-105.7537|Southern San Luis Valley|Costilla|08023',
'COZ072' => '37.9018|-105.5379|Northern Sangre de Cristo Mountains Between 8500 And 11000 Ft|Alamosa|08003 37.9018|-105.5379|Northern Sangre de Cristo Mountains Between 8500 And 11000 Ft|Chaffee|08015 37.9018|-105.5379|Northern Sangre de Cristo Mountains Between 8500 And 11000 Ft|Costilla|08023 37.9018|-105.5379|Northern Sangre de Cristo Mountains Between 8500 And 11000 Ft|Custer|08027 37.9018|-105.5379|Northern Sangre de Cristo Mountains Between 8500 And 11000 Ft|Fremont|08043 37.9018|-105.5379|Northern Sangre de Christo Mountains Between 8500 And 11000 Ft|Huerfano|08055 37.9018|-105.5379|Northern Sangre de Cristo Mountains Between 8500 And 11000 Ft|Saguache|08109',
'COZ073' => '37.9767|-105.617|Northern Sangre de Cristo Mountains above 11000 Ft|Alamosa|08003 37.9767|-105.617|Northern Sangre de Cristo Mountains above 11000 Ft|Costilla|08023 37.9767|-105.617|Northern Sangre de Cristo Mountains above 11000 Ft|Custer|08027 37.9767|-105.617|Northern Sangre de Cristo Mountains above 11000 Ft|Fremont|08043 37.9767|-105.617|Northern Sangre de Cristo Mountains above 11000 Ft|Huerfano|08055 37.9767|-105.617|Northern Sangre de Cristo Mountains above 11000 Ft|Saguache|08109',
'COZ074' => '37.2245|-105.0257|Southern Sangre De Cristo Mountains Between 7500 and 11000 Ft|Costilla|08023 37.2245|-105.0257|Southern Sangre De Cristo Mountains Between 7500 and 11000 Ft|Huerfano|08055 37.2245|-105.0257|Southern Sangre De Cristo Mountains Between 7500 and 11000 Ft|Las Animas|08071',
'COZ075' => '37.2046|-105.1708|Southern Sangre De Cristo Mountains Above 11000 Ft|Costilla|08023 37.2046|-105.1708|Southern Sangre De Cristo Mountains Above 11000 Ft|Huerfano|08055 37.2046|-105.1708|Southern Sangre De Cristo Mountains Above 11000 Ft|Las Animas|08071',
'COZ076' => '38.6011|-105.6475|Northwestern Fremont County Above 8500Ft|Fremont|08043',
'COZ077' => '38.4248|-105.5558|Western/Central Fremont County Below 8500 Ft|Fremont|08043',
'COZ078' => '38.1353|-105.4502|Wet Mountain Valley Below 8500 Ft|Custer|08027 38.1353|-105.4502|Wet Mountain Valley Below 8500 Ft|Huerfano|08055',
'COZ079' => '38.046|-105.1469|Wet Mountains between 6300 and 10000Ft|Custer|08027 38.046|-105.1469|Wet Mountains between 6300 and 10000Ft|Fremont|08043 38.046|-105.1469|Wet Mountains between 6300 and 10000Ft|Huerfano|08055 38.046|-105.1469|Wet Mountains between 6300 and 10000Ft|Pueblo|08101',
'COZ080' => '37.9888|-105.1345|Wet Mountains above 10000 Ft|Custer|08027 37.9888|-105.1345|Wet Mountains above 10000 Ft|Huerfano|08055 37.9888|-105.1345|Wet Mountains above 10000 Ft|Pueblo|08101',
'COZ081' => '38.8708|-105.113|Teller County/Rampart Range above 7500fT/Pike\'s Peak Between 7500 And 11000 Ft|El Paso|08041 38.8708|-105.113|Teller County/Rampart Range above 7500fT/Pike\'s Peak Between 7500 And 11000 Ft|Fremont|08043 38.8708|-105.113|Teller County/Rampart Range above 7500fT/Pike\'s Peak Between 7500 And 11000 Ft|Teller|08119',
'COZ082' => '38.8156|-105.0464|Pikes Peak above 11000 Ft|El Paso|08041 38.8156|-105.0464|Pikes Peak above 11000 Ft|Teller|08119',
'COZ083' => '38.4443|-105.1148|Canon City Vicinity/Eastern Fremont County|Custer|08027 38.4443|-105.1148|Canon City Vicinity/Eastern Fremont County|Fremont|08043 38.4443|-105.1148|Canon City Vicinity/Eastern Fremont County|Teller|08119',
'COZ084' => '39.0124|-104.4498|Northern El Paso County/Monument Ridge/Rampart Range Below 7500 Ft|El Paso|08041',
'COZ085' => '38.7125|-104.5034|Colorado Springs Vicinity/Southern El Paso County/Rampart Range Below 7400 Ft|El Paso|08041',
'COZ086' => '38.1821|-104.4872|Pueblo Vicinity/Pueblo County Below 6300 Feet|Pueblo|08101',
'COZ087' => '37.6899|-104.8578|Walsenburg Vicinity/Upper Huerfano River Basin Below 7500 Ft|Huerfano|08055',
'COZ088' => '37.3538|-104.3935|Trinidad Vicinity/Western Las Animas County Below 7500 Ft|Las Animas|08071',
'COZ089' => '38.3266|-103.7849|Crowley County|Crowley|08025',
'COZ090' => '40.0029|-102.4243|Yuma County|Yuma|08125',
'COZ091' => '39.3054|-102.6029|Kit Carson County|Kit Carson|08063',
'COZ092' => '38.8279|-102.6034|Cheyenne County|Cheyenne|08017',
'COZ093' => '37.9027|-103.7164|La Junta Vicinity/Otero County|Otero|08089',
'COZ094' => '37.3221|-103.5645|Eastern Las Animas County|Las Animas|08071',
'COZ095' => '38.424|-103.0919|Western Kiowa County|Kiowa|08061',
'COZ096' => '38.4414|-102.3891|Eastern Kiowa County|Kiowa|08061',
'COZ097' => '37.9551|-103.0717|Las Animas Vicinity/Bent County|Bent|08011',
'COZ098' => '37.9552|-102.3933|Lamar Vicinity/Prowers County|Prowers|08099',
'COZ099' => '37.3192|-102.5605|Springfield Vicinity/Baca County|Baca|08009',
'CTC001' => '41.2731|-73.3887|Fairfield||',
'CTC003' => '41.8064|-72.7328|Hartford||',
'CTC005' => '41.7925|-73.2453|Litchfield||',
'CTC007' => '41.4624|-72.5340|Middlesex||',
'CTC009' => '41.4108|-72.9324|New Haven||',
'CTC011' => '41.4893|-72.1004|New London||',
'CTC013' => '41.8550|-72.3365|Tolland||',
'CTC015' => '41.8299|-71.9875|Windham||',
'CTZ001' => '41.8851|-73.2502|Northern Litchfield|Litchfield|09005',
'CTZ002' => '41.8064|-72.7328|Hartford|Hartford|09003',
'CTZ003' => '41.855|-72.3365|Tolland|Tolland|09013',
'CTZ004' => '41.83|-71.9875|Windham|Windham|09015',
'CTZ005' => '41.353|-73.3629|Northern Fairfield|Fairfield|09001',
'CTZ006' => '41.4648|-72.9956|Northern New Haven|New Haven|09009',
'CTZ007' => '41.4977|-72.5551|Northern Middlesex|Middlesex|09007',
'CTZ008' => '41.5317|-72.0992|Northern New London|New London|09011',
'CTZ009' => '41.1301|-73.435|Southern Fairfield|Fairfield|09001',
'CTZ010' => '41.3108|-72.8154|Southern New Haven|New Haven|09009',
'CTZ011' => '41.3211|-72.4498|Southern Middlesex|Middlesex|09007',
'CTZ012' => '41.3615|-72.1034|Southern New London|New London|09011',
'CTZ013' => '41.6344|-73.2368|Southern Litchfield|Litchfield|09005',
'DCC001' => '38.9093|-77.0146|District of Columbia||',
'DCZ001' => '38.9093|-77.0146|District of Columbia|District of Columbia|11001',
'DEC001' => '39.0867|-75.5688|Kent||',
'DEC003' => '39.5811|-75.6488|New Castle||',
'DEC005' => '38.6621|-75.3990|Sussex||',
'DEZ001' => '39.581|-75.6489|New Castle|New Castle|10003',
'DEZ002' => '39.0867|-75.5688|Kent|Kent|10001',
'DEZ003' => '38.6653|-75.4181|Inland Sussex|Sussex|10005',
'DEZ004' => '38.6114|-75.0919|Delaware Beaches|Sussex|10005',
'FLC001' => '29.6749|-82.3576|Alachua||',
'FLC003' => '30.3310|-82.2846|Baker||',
'FLC005' => '30.2797|-85.6151|Bay||',
'FLC007' => '29.9502|-82.1689|Bradford||',
'FLC009' => '28.2631|-80.7436|Brevard||',
'FLC011' => '26.1519|-80.4886|Broward||',
'FLC013' => '30.4061|-85.1972|Calhoun||',
'FLC015' => '26.9069|-81.8940|Charlotte|| 26.9689|-82.1080|Charlotte||',
'FLC017' => '28.8509|-82.4670|Citrus|| 28.8125|-82.6088|Citrus||',
'FLC019' => '29.9831|-81.8579|Clay||',
'FLC021' => '26.1196|-81.3393|Collier||',
'FLC023' => '30.2243|-82.6215|Columbia||',
'FLC027' => '27.1863|-81.8093|DeSoto||',
'FLC029' => '29.6101|-83.1583|Dixie||',
'FLC031' => '30.3302|-81.6740|Duval||',
'FLC033' => '30.7012|-87.3777|Escambia||',
'FLC035' => '29.4605|-81.3145|Flagler||',
'FLC037' => '29.8773|-84.8172|Franklin|| 29.9194|-84.6607|Franklin||',
'FLC039' => '30.5795|-84.6137|Gadsden||',
'FLC041' => '29.7259|-82.8006|Gilchrist||',
'FLC043' => '26.9605|-81.2397|Glades||',
'FLC045' => '29.9458|-85.1435|Gulf|| 29.9562|-85.2283|Gulf||',
'FLC047' => '30.4964|-82.9478|Hamilton||',
'FLC049' => '27.4927|-81.8099|Hardee||',
'FLC051' => '26.5473|-81.1719|Hendry||',
'FLC053' => '28.5528|-82.4209|Hernando||',
'FLC055' => '27.3434|-81.3410|Highlands||',
'FLC057' => '27.9306|-82.3072|Hillsborough|| 27.7786|-82.4146|Hillsborough||',
'FLC059' => '30.8679|-85.8143|Holmes||',
'FLC061' => '27.6929|-80.6158|Indian River||',
'FLC063' => '30.7956|-85.2194|Jackson|| 30.7800|-84.9213|Jackson||',
'FLC065' => '30.4380|-83.8951|Jefferson||',
'FLC067' => '29.9855|-83.1811|Lafayette||',
'FLC069' => '28.7615|-81.7113|Lake||',
'FLC071' => '26.5786|-81.8210|Lee|| 26.6135|-81.8902|Lee||',
'FLC073' => '30.4581|-84.2778|Leon||',
'FLC075' => '29.2827|-83.0885|Levy|| 29.3216|-82.7389|Levy||',
'FLC077' => '30.2414|-84.8829|Liberty||',
'FLC079' => '30.4442|-83.4700|Madison||',
'FLC081' => '27.4713|-82.2978|Manatee|| 27.5051|-82.5210|Manatee||',
'FLC083' => '29.2103|-82.0567|Marion||',
'FLC085' => '27.0844|-80.3893|Martin||',
'FLC086' => '25.6171|-80.5682|Miami-Dade||',
'FLC087' => '25.5205|-81.0326|Mainland Monroe|| 24.6514|-81.5527|Lower Keys in Monroe|| 24.7471|-80.9876|Middle Keys in Monroe|| 25.1496|-80.4175|Upper Keys in Monroe||',
'FLC089' => '30.6095|-81.8085|Nassau||',
'FLC091' => '30.7068|-86.5964|Okaloosa||',
'FLC093' => '27.4283|-80.9015|Okeechobee||',
'FLC095' => '28.5148|-81.3238|Orange||',
'FLC097' => '28.0627|-81.1496|Osceola||',
'FLC099' => '26.6230|-80.4329|Palm Beach||',
'FLC101' => '28.3093|-82.3911|Pasco||',
'FLC103' => '27.9280|-82.7220|Pinellas|| 28.1264|-82.7303|Pinellas||',