-
Notifications
You must be signed in to change notification settings - Fork 19
/
webpage.html
6302 lines (6279 loc) · 176 KB
/
webpage.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="/static/js/analytics.js?v=1504048623.0" charset="utf-8"></script><script type="text/javascript">archive_analytics.values.service='wb';archive_analytics.values.server_name='wwwb-app43.us.archive.org';archive_analytics.values.server_ms=590;</script><script type="text/javascript" src="/static/js/wbhack.js?v=1504048623.0" charset="utf-8"></script><script type="text/javascript">
__wbhack.init('https://web.archive.org/web');
</script><link rel="stylesheet" type="text/css" href="/static/css/banner-styles.css?v=1504048623.0">
<link rel="stylesheet" type="text/css" href="/static/css/iconochive.css?v=1504048623.0">
<!-- End Wayback Rewrite JS Include --><title>GECSC: Tree Species Distribution Maps for North America</title>
<link rel="stylesheet" type="text/css" href="/web/20170127093428cs_/https://gec.cr.usgs.gov/visid_includes/external/styles/common.css">
<link rel="stylesheet" type="text/css" href="/web/20170127093428cs_/https://gec.cr.usgs.gov/styles/custom.css">
<!-- START Metadate Variables --><meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="language" content="en">
<meta name="author" content="Web Development Team">
<meta name="description" content="Public website for the Geosciences and Environmental Change Science Center (GECSC)">
<meta name="keywords" content="USGS, environmental change, land remote sensing, land change science, geologic mapping, landcover change">
<meta name="created" content="20121030">
<meta name="expires" content="never">
<meta name="review" content="20121030">
<!-- END Metadata Variables --><script type="application/javascript" src="https://web.archive.org/web/20170127093428js_/https://www.usgs.gov/scripts/analytics/usgs-analytics.js"></script>
</head>
<!-- START main page content --><body>
<!-- Code used by the site search -->
<script>
function searchScope(site) {
var field = document.getElementById('sitelimit');
var scope;
switch(site) {
case 1: scope='gec.cr.usgs.gov';
break;
case 2: scope='';
break;
default: scope='';
}
field.value = scope;
}
</script><!-- Code to skip the header --><a href="#menu" title="Skip the header and title section"></a>
<!-- Code to include the standard USGS header -->
<!-- BEGIN USGS Header Template -->
<div id="usgscolorband">
<div id="usgsbanner">
<div id="usgsidentifier"><a href="https://web.archive.org/web/20170127093428/https://www.usgs.gov/"><img src="/web/20170127093428im_/https://gec.cr.usgs.gov/visid_includes/external/images/header_graphic_usgsIdentifier_white.jpg" alt="USGS - science for a changing world" title="U.S. Geological Survey Home Page" width="178" height="72"></a></div>
<div id="usgsccsabox">
<div id="usgsccsa">
<br><a href="https://web.archive.org/web/20170127093428/https://www.usgs.gov/">USGS Home</a>
<br><a href="https://web.archive.org/web/20170127093428/https://www.usgs.gov/ask/">Contact USGS</a>
<br><a href="https://web.archive.org/web/20170127093428/https://search.usgs.gov/">Search USGS</a>
<br>
</div>
</div>
</div>
</div>
<!-- END USGS Header Template -->
<!-- START Title Bar -->
<div id="usgstitle">
<p>Geosciences and Environmental Change Science Center</p>
<!-- Code for adding the site search -->
<form accept-charset="UTF-8" action="https://web.archive.org/web/20170127093428/http://search.usa.gov/search" id="search_form" method="get">
<div style="margin:0;padding:0;display:inline">
<input name="utf8" type="hidden" value="â">
</div>
<input id="affiliate" name="affiliate" type="hidden" value="usgs"><input type="hidden" name="sitelimit" id="sitelimit" value="gec.cr.usgs.gov"><input autocomplete="off" class="usagov-search-autocomplete" id="query" name="query" type="text" maxlength="255" title="Enter your search" placeholder="Search..." size="20"><input name="commit" id="submit-button" type="submit" value="Search">
</form>
</div>
<!-- END Title -->
<!-- Location jumped to by skipping the header and title section -->
<a name="menu"></a>
<!-- Code to skip the main menu -->
<a href="#content" title="Skip the main menu"></a>
<noscript>
<div id="pg-header">JavaScript disabled</div>
<br>
It appears that you have JavaScript(JS) disabled. Several items on this site require JS to work correctly.<br><br><br>
</noscript>
<!-- START Menu Bar -->
<div id="navBar">
<ul id="nav" class="drop">
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/index.shtml">Home</a></li>
<li>
<a href="#">Research Themes</a>
<ul>
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/envchg.shtml">Environmental Change</a></li>
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/geomap.shtml">Geologic Framework</a></li>
</ul>
</li>
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/tech.shtml">Technology</a></li>
<li>
<a href="#">Products</a>
<ul>
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/apps.shtml">Applications</a></li>
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/data.shtml">Data and Maps</a></li>
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/pubs.shtml">Publications</a></li>
</ul>
</li>
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/contact_us.shtml">About Us</a></li>
<li><a href="/web/20170127093428/https://gec.cr.usgs.gov/archive.shtml">Project Archive</a></li>
</ul>
</div>
<div class="clear"></div>
<!-- END Menu Bar -->
<!-- Location jumped to by skipping the main menu -->
<a name="content"></a>
<h1>Digital Representations of Tree Species Range Maps from "Atlas of United States Trees" by Elbert L. Little, Jr. (and other publications)</h1>
<h3>Background</h3>
<img src="/web/20170127093428im_/https://gec.cr.usgs.gov/data/little/usfs_shield.gif" alt="U.S. Forest Service logo" border="0" width="46" height="44" align="LEFT" halign="CENTER">
Maps of the ranges of tree species in North America compiled by Elbert Little, of the U.S. Department of Agriculture, Forest Service, and others (see references below) were digitized for use in USGS' <a href="https://web.archive.org/web/20170127093428/http://pubs.usgs.gov/pp/p1650-a/">vegetation-climate modeling</a> studies. These digital map files are available here for download. Updated versions of some of these maps are also available from the U.S. Forest Service <a href="https://web.archive.org/web/20170127093428/http://www.fs.fed.us/nrs/atlas/littlefia/">Forest Inventory Analysis</a> program.<p>
The maps are available in ArcView® shapefile format. Geographic ranges are represented as polygons. There is one shapefile (with associated data files) for each tree species. At present, not all of the maps have been digitized, quality checked, and made available here, but we plan to make most or all of the digitized maps available over time.</p>
<p>
<b>NOTE ABOUT SCIENTIFIC NAMES:</b> We are aware that the scientific names of some taxa have changed since these atlases were published. Because our intent is to digitally reproduce the maps in their original form, we refer to each tree species by the scientific name as published in the original reference.</p>
<p>
</p>
<h3>References</h3>
Critchfield, W.B., and Little, E.L., Jr., 1966, Geographic distribution of the pines of the world: U.S. Department of Agriculture Miscellaneous Publication 991, p. 1-97.<p>
Little, E.L., Jr., 1971, Atlas of United States trees, volume 1, conifers and important hardwoods: U.S. Department of Agriculture Miscellaneous Publication 1146, 9 p., 200 maps.</p>
<p>
Little, E.L., Jr., 1976, Atlas of United States trees, volume 3, minor Western hardwoods: U.S. Department of Agriculture Miscellaneous Publication 1314, 13 p., 290 maps.</p>
<p>
Little, E.L., Jr., 1977, Atlas of United States trees, volume 4, minor Eastern hardwoods: U.S. Department of Agriculture Miscellaneous Publication 1342, 17 p., 230 maps.</p>
<p>
Little, E.L., Jr. 1978, Atlas of United States trees, volume 5, Florida: U.S. Department of Agriculture Miscellaneous Publication 1361, 262 maps.</p>
<p>
</p>
<h3>Download files</h3>
<b>DOCUMENTATION</b><br>
For information on map projections, polygon attributes, and other map parameters, please see the <b>metadata</b>, available in <a href="vegmaps_met.shtml">FGDC format</a>, a more user-friendly <a href="vegmaps_faq.shtml">"Frequently-anticipated Questions"</a> format, or <a href="vegmaps.met">plain text</a>.<p>
<b>AVAILABLE FILE FORMATS</b><br>
A PDF graphic file of the map is available for viewing purposes. Use the free <a href="https://web.archive.org/web/20170127093428/http://www.adobe.com/prodindex/acrobat/readstep.html">Acrobat Reader</a> program to view.<br>
ArcView shapefiles of the distributions are contained in a ZIP file (.ZIP). Use <a href="https://web.archive.org/web/20170127093428/http://www.winzip.com/">WinZip</a>, <a href="https://web.archive.org/web/20170127093428/http://www.pkware.com/">PKZip</a>, or similar program to extract in MS Windows; use <a href="https://web.archive.org/web/20170127093428/http://www.stuffit.com/">Stuffit Expander</a> or similar to unzip on Macintosh; Use <a href="https://web.archive.org/web/20170127093428/http://www.info-zip.org/">UnZip</a> or similar program to extract on UNIX computers.</p>
<p>
<b>BASEMAP SHAPEFILES</b><br>
ArcView Shapefiles of the basemaps used to create the graphic representations of
the maps are not available for download here. <!--We used the <B>na.shp</B> theme that is included in a standard ArcView distribution.--> Projection information is available in the <a href="vegmaps_met.shtml">metadata</a>.</p>
<p>
<font size="-2" face="Arial,Geneva,Helvetica,sans-serif">NOTICE: Use of trade names does not imply endorsement by the USGS or the U.S. Federal Government.</font></p>
<p>
</p>
<table border cellpadding="3">
<tr bgcolor="#CCCCCC">
<th>PDF</th>
<th>ZIP</th>
<th>Latin Name</th>
<th>Common Name</th>
<th>Reference</th>
<th>Original Map No(s).</th>
</tr>
<tr>
<td nowrap><a href="abieamab.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abieamab.zip">Shapefiles</a></td>
<td nowrap><i>Abies amabilis</i></td>
<td nowrap>Pacific silver fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>1-W, 1-N</td>
</tr>
<tr>
<td nowrap><a href="abiebals.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abiebals.zip">Shapefiles</a></td>
<td nowrap><i>Abies balsamea</i></td>
<td nowrap>balsam fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>2-N, 2-E</td>
</tr>
<tr>
<td nowrap><a href="abiebrac.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abiebrac.zip">Shapefiles</a></td>
<td nowrap><i>Abies bracteata</i></td>
<td nowrap>bristlecone fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>3-W</td>
</tr>
<tr>
<td nowrap><a href="abieconc.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abieconc.zip">Shapefiles</a></td>
<td nowrap><i>Abies concolor</i></td>
<td nowrap>white fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>5-W</td>
</tr>
<tr>
<td nowrap><a href="abiefras.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abiefras.zip">Shapefiles</a></td>
<td nowrap><i>Abies fraseri</i></td>
<td nowrap>Fraser fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>4-E</td>
</tr>
<tr>
<td nowrap><a href="abiegran.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abiegran.zip">Shapefiles</a></td>
<td nowrap><i>Abies grandis</i></td>
<td nowrap>grand fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>6-W</td>
</tr>
<tr>
<td nowrap><a href="abielasi.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abielasi.zip">Shapefiles</a></td>
<td nowrap><i>Abies lasiocarpa</i></td>
<td nowrap>subalpine fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>7-W, 7-N</td>
</tr>
<tr>
<td nowrap><a href="abiemagn.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abiemagn.zip">Shapefiles</a></td>
<td nowrap><i>Abies magnifica</i></td>
<td nowrap>California red fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>8-W</td>
</tr>
<tr>
<td nowrap><a href="abieproc.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="abieproc.zip">Shapefiles</a></td>
<td nowrap><i>Abies procera</i></td>
<td nowrap>noble fir</td>
<td nowrap>Little (1971)
</td>
<td nowrap>9-W</td>
</tr>
<tr>
<td nowrap><a href="acacberl.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acacberl.zip">Shapefiles</a></td>
<td nowrap><i>Acacia berlandieri</i></td>
<td nowrap>Berlandier acacia</td>
<td nowrap>Little (1976)
</td>
<td nowrap>1-N, 1-SW</td>
</tr>
<tr>
<td nowrap><a href="acacchor.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acacchor.zip">Shapefiles</a></td>
<td nowrap><i>Acacia choriophylla</i></td>
<td nowrap>cinnecord</td>
<td nowrap>Little (1978)
</td>
<td nowrap>159</td>
</tr>
<tr>
<td nowrap><a href="acacfarn.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acacfarn.zip">Shapefiles</a></td>
<td nowrap><i>Acacia farnesiana</i></td>
<td nowrap>sweet acacia</td>
<td nowrap>Little (1976)
</td>
<td nowrap>2</td>
</tr>
<tr>
<td nowrap><a href="acacgreg.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acacgreg.zip">Shapefiles</a></td>
<td nowrap><i>Acacia greggii</i></td>
<td nowrap>catclaw acacia</td>
<td nowrap>Little (1976)
</td>
<td nowrap>3</td>
</tr>
<tr>
<td nowrap><a href="acacmacr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acacmacr.zip">Shapefiles</a></td>
<td nowrap><i>Acacia macracantha</i></td>
<td nowrap>long spine acacia</td>
<td nowrap>Little (1978)
</td>
<td nowrap>160</td>
</tr>
<tr>
<td nowrap><a href="acacrigi.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acacrigi.zip">Shapefiles</a></td>
<td nowrap><i>Acacia rigidula</i></td>
<td nowrap>blackbrush acacia</td>
<td nowrap>Little (1976)
</td>
<td nowrap>4</td>
</tr>
<tr>
<td nowrap><a href="acacroem.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acacroem.zip">Shapefiles</a></td>
<td nowrap><i>Acacia roemeriana</i></td>
<td nowrap>Roemer acacia</td>
<td nowrap>Little (1976)
</td>
<td nowrap>5</td>
</tr>
<tr>
<td nowrap><a href="acactort.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acactort.zip">Shapefiles</a></td>
<td nowrap><i>Acacia tortuosa</i></td>
<td nowrap>twisted acacia</td>
<td nowrap>Little (1976)
</td>
<td nowrap>6-N, 6-SW</td>
</tr>
<tr>
<td nowrap><a href="acacwrig.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acacwrig.zip">Shapefiles</a></td>
<td nowrap><i>Acacia wrightii</i></td>
<td nowrap>Wright acacia</td>
<td nowrap>Little (1976)
</td>
<td nowrap>7</td>
</tr>
<tr>
<td nowrap><a href="acerbarb.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acerbarb.zip">Shapefiles</a></td>
<td nowrap><i>Acer barbatum</i></td>
<td nowrap>Florida maple</td>
<td nowrap>Little (1977)
</td>
<td nowrap>1</td>
</tr>
<tr>
<td nowrap><a href="acercirc.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acercirc.zip">Shapefiles</a></td>
<td nowrap><i>Acer circinatum</i></td>
<td nowrap>vine maple</td>
<td nowrap>Little (1976)
</td>
<td nowrap>8</td>
</tr>
<tr>
<td nowrap><a href="acerglab.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acerglab.zip">Shapefiles</a></td>
<td nowrap><i>Acer glabrum</i></td>
<td nowrap>Rocky Mountain maple</td>
<td nowrap>Little (1976)
</td>
<td nowrap>9-N, 9-W</td>
</tr>
<tr>
<td nowrap><a href="acergran.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acergran.zip">Shapefiles</a></td>
<td nowrap><i>Acer grandidentatum</i></td>
<td nowrap>bigtooth maple</td>
<td nowrap>Little (1976)
</td>
<td nowrap>10</td>
</tr>
<tr>
<td nowrap><a href="acerleuc.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acerleuc.zip">Shapefiles</a></td>
<td nowrap><i>Acer leucoderme</i></td>
<td nowrap>chalk maple</td>
<td nowrap>Little (1977)
</td>
<td nowrap>2</td>
</tr>
<tr>
<td nowrap><a href="acermacr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acermacr.zip">Shapefiles</a></td>
<td nowrap><i>Acer macrophyllum</i></td>
<td nowrap>bigleaf maple</td>
<td nowrap>Little (1971)
</td>
<td nowrap>95-W, 95-N</td>
</tr>
<tr>
<td nowrap><a href="acernegu.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acernegu.zip">Shapefiles</a></td>
<td nowrap><i>Acer negundo</i></td>
<td nowrap>boxelder</td>
<td nowrap>Little (1971)
</td>
<td nowrap>96-W, 96-E, 96-N</td>
</tr>
<tr>
<td nowrap><a href="acernigr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acernigr.zip">Shapefiles</a></td>
<td nowrap><i>Acer nigrum</i></td>
<td nowrap>black maple</td>
<td nowrap>Little (1971)
</td>
<td nowrap>97-E</td>
</tr>
<tr>
<td nowrap><a href="acerpens.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acerpens.zip">Shapefiles</a></td>
<td nowrap><i>Acer pensylvanicum</i></td>
<td nowrap>striped maple</td>
<td nowrap>Little (1977)
</td>
<td nowrap>3-N, 3-NE</td>
</tr>
<tr>
<td nowrap><a href="acerrubr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acerrubr.zip">Shapefiles</a></td>
<td nowrap><i>Acer rubrum</i></td>
<td nowrap>red maple</td>
<td nowrap>Little (1971)
</td>
<td nowrap>98-N, 98-E</td>
</tr>
<tr>
<td nowrap><a href="acersacc.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acersacc.zip">Shapefiles</a></td>
<td nowrap><i>Acer saccharinum</i></td>
<td nowrap>silver maple</td>
<td nowrap>Little (1971)
</td>
<td nowrap>101-E</td>
</tr>
<tr>
<td nowrap><a href="acersacr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acersacr.zip">Shapefiles</a></td>
<td nowrap><i>Acer saccharum</i></td>
<td nowrap>sugar maple</td>
<td nowrap>Little (1971)
</td>
<td nowrap>99-N, 99-E</td>
</tr>
<tr>
<td nowrap><a href="acerspic.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acerspic.zip">Shapefiles</a></td>
<td nowrap><i>Acer spicatum</i></td>
<td nowrap>mountain maple</td>
<td nowrap>Little (1977)
</td>
<td nowrap>4-N, 4-NE</td>
</tr>
<tr>
<td nowrap><a href="acoewrig.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="acoewrig.zip">Shapefiles</a></td>
<td nowrap><i>Acoelorrhaphe wrightii</i></td>
<td nowrap>paurotis palm</td>
<td nowrap>Little (1978)
</td>
<td nowrap>161</td>
</tr>
<tr>
<td nowrap><a href="aesccali.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="aesccali.zip">Shapefiles</a></td>
<td nowrap><i>Aesculus californica</i></td>
<td nowrap>California buckeye</td>
<td nowrap>Little (1976)
</td>
<td nowrap>11</td>
</tr>
<tr>
<td nowrap><a href="aescglab.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="aescglab.zip">Shapefiles</a></td>
<td nowrap><i>Aesculus glabra</i></td>
<td nowrap>Ohio buckeye</td>
<td nowrap>Little (1971)
</td>
<td nowrap>102-E</td>
</tr>
<tr>
<td nowrap><a href="aescocta.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="aescocta.zip">Shapefiles</a></td>
<td nowrap><i>Aesculus octandra</i></td>
<td nowrap>yellow buckeye</td>
<td nowrap>Little (1971)
</td>
<td nowrap>103-E</td>
</tr>
<tr>
<td nowrap><a href="aescparv.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="aescparv.zip">Shapefiles</a></td>
<td nowrap><i>Aesculus parviflora</i></td>
<td nowrap>bottlebrush buckeye</td>
<td nowrap>Little (1977)
</td>
<td nowrap>5</td>
</tr>
<tr>
<td nowrap><a href="aescpavi.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="aescpavi.zip">Shapefiles</a></td>
<td nowrap><i>Aesculus pavia</i></td>
<td nowrap>red buckeye</td>
<td nowrap>Little (1977)
</td>
<td nowrap>6</td>
</tr>
<tr>
<td nowrap><a href="aescsylv.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="aescsylv.zip">Shapefiles</a></td>
<td nowrap><i>Aesculus sylvatica</i></td>
<td nowrap>painted buckeye</td>
<td nowrap>Little (1977)
</td>
<td nowrap>7</td>
</tr>
<tr>
<td nowrap><a href="agavutah.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="agavutah.zip">Shapefiles</a></td>
<td nowrap><i>Agave utahensis</i></td>
<td nowrap>Utah agave</td>
<td nowrap>Benson and Darrow (1981)
</td>
<td nowrap>3.16</td>
</tr>
<tr>
<td nowrap><a href="alnumari.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alnumari.zip">Shapefiles</a></td>
<td nowrap><i>Alnus maritima</i></td>
<td nowrap>seaside alder</td>
<td nowrap>Little (1977)
</td>
<td nowrap>8</td>
</tr>
<tr>
<td nowrap><a href="alnuoblo.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alnuoblo.zip">Shapefiles</a></td>
<td nowrap><i>Alnus oblongifolia</i></td>
<td nowrap>Arizona alder</td>
<td nowrap>Little (1976)
</td>
<td nowrap>12</td>
</tr>
<tr>
<td nowrap><a href="alnurhom.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alnurhom.zip">Shapefiles</a></td>
<td nowrap><i>Alnus rhombifolia</i></td>
<td nowrap>white alder</td>
<td nowrap>Little (1976)
</td>
<td nowrap>13</td>
</tr>
<tr>
<td nowrap><a href="alnurubr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alnurubr.zip">Shapefiles</a></td>
<td nowrap><i>Alnus rubra</i></td>
<td nowrap>red alder</td>
<td nowrap>Little (1971)
</td>
<td nowrap>104-W, 104-N</td>
</tr>
<tr>
<td nowrap><a href="alnurugo.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alnurugo.zip">Shapefiles</a></td>
<td nowrap><i>Alnus rugosa</i></td>
<td nowrap>speckled alder</td>
<td nowrap>Little (1977)
</td>
<td nowrap>9-N, 9-NE</td>
</tr>
<tr>
<td nowrap><a href="alnuserr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alnuserr.zip">Shapefiles</a></td>
<td nowrap><i>Alnus serrulata</i></td>
<td nowrap>hazel alder</td>
<td nowrap>Little (1977)
</td>
<td nowrap>10-NE, 10-SE, 10-N</td>
</tr>
<tr>
<td nowrap><a href="alnusinu.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alnusinu.zip">Shapefiles</a></td>
<td nowrap><i>Alnus sinuata</i></td>
<td nowrap>Sitka alder</td>
<td nowrap>Little (1976)
</td>
<td nowrap>14-N, 14-W</td>
</tr>
<tr>
<td nowrap><a href="alnutenu.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alnutenu.zip">Shapefiles</a></td>
<td nowrap><i>Alnus tenuifolia</i></td>
<td nowrap>thinleaf alder</td>
<td nowrap>Little (1976)
</td>
<td nowrap>15-N, 15-W</td>
</tr>
<tr>
<td nowrap><a href="alvaamor.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="alvaamor.zip">Shapefiles</a></td>
<td nowrap><i>Alvaradoa amorphoides</i></td>
<td nowrap>Mexican alvaradoa</td>
<td nowrap>Little (1978)
</td>
<td nowrap>162</td>
</tr>
<tr>
<td nowrap><a href="amelalni.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="amelalni.zip">Shapefiles</a></td>
<td nowrap><i>Amelanchier alnifolia</i></td>
<td nowrap>western serviceberry</td>
<td nowrap>Little (1976)
</td>
<td nowrap>16-N, 16-NW</td>
</tr>
<tr>
<td nowrap><a href="amelarbo.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="amelarbo.zip">Shapefiles</a></td>
<td nowrap><i>Amelanchier arborea</i></td>
<td nowrap>downy serviceberry</td>
<td nowrap>Little (1977)
</td>
<td nowrap>11-N, 11-NE, 11-SE</td>
</tr>
<tr>
<td nowrap><a href="amelinte.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="amelinte.zip">Shapefiles</a></td>
<td nowrap><i>Amelanchier interior</i></td>
<td nowrap>inland serviceberry</td>
<td nowrap>Little (1977)
</td>
<td nowrap>13</td>
</tr>
<tr>
<td nowrap><a href="amelsang.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="amelsang.zip">Shapefiles</a></td>
<td nowrap><i>Amelanchier sanguinea</i></td>
<td nowrap>roundleaf serviceberry</td>
<td nowrap>Little (1977)
</td>
<td nowrap>14</td>
</tr>
<tr>
<td nowrap><a href="amelutah.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="amelutah.zip">Shapefiles</a></td>
<td nowrap><i>Amelanchier utahensis</i></td>
<td nowrap>Utah serviceberry</td>
<td nowrap>Little (1976)
</td>
<td nowrap>17</td>
</tr>
<tr>
<td nowrap><a href="amphlati.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="amphlati.zip">Shapefiles</a></td>
<td nowrap><i>Amphitecna latifolia </i></td>
<td nowrap>black calabash</td>
<td nowrap>Little (1978)
</td>
<td nowrap>163</td>
</tr>
<tr>
<td nowrap><a href="amyrbals.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="amyrbals.zip">Shapefiles</a></td>
<td nowrap><i>Amyris balsamifera</i></td>
<td nowrap>balsam torchwood</td>
<td nowrap>Little (1978)
</td>
<td nowrap>164</td>
</tr>
<tr>
<td nowrap><a href="amyrelem.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="amyrelem.zip">Shapefiles</a></td>
<td nowrap><i>Amyris elemifera</i></td>
<td nowrap>torchwood</td>
<td nowrap>Little (1978)
</td>
<td nowrap>165</td>
</tr>
<tr>
<td nowrap><a href="annoglab.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="annoglab.zip">Shapefiles</a></td>
<td nowrap><i>Annona glabra</i></td>
<td nowrap>pond apple</td>
<td nowrap>Little (1978)
</td>
<td nowrap>166</td>
</tr>
<tr>
<td nowrap><a href="aralspin.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="aralspin.zip">Shapefiles</a></td>
<td nowrap><i>Aralia spinosa</i></td>
<td nowrap>devils walkingstick</td>
<td nowrap>Little (1977)
</td>
<td nowrap>15</td>
</tr>
<tr>
<td nowrap><a href="arbuariz.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="arbuariz.zip">Shapefiles</a></td>
<td nowrap><i>Arbutus arizonica</i></td>
<td nowrap>Arizona madrone</td>
<td nowrap>Little (1976)
</td>
<td nowrap>18</td>
</tr>
<tr>
<td nowrap><a href="arbumenz.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="arbumenz.zip">Shapefiles</a></td>
<td nowrap><i>Arbutus menziesii</i></td>
<td nowrap>Pacific madrone</td>
<td nowrap>Little (1971)
</td>
<td nowrap>100-W</td>
</tr>
<tr>
<td nowrap><a href="arbutexa.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="arbutexa.zip">Shapefiles</a></td>
<td nowrap><i>Arbutus texana</i></td>
<td nowrap>Texas madrone</td>
<td nowrap>Little (1976)
</td>
<td nowrap>19</td>
</tr>
<tr>
<td nowrap><a href="arctprin.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="arctprin.zip">Shapefiles</a></td>
<td nowrap><i>Arctostaphylos pringlei</i></td>
<td nowrap>Pringle manzanita</td>
<td nowrap>Little (1976)
</td>
<td nowrap>20</td>
</tr>
<tr>
<td nowrap><a href="ardiesca.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="ardiesca.zip">Shapefiles</a></td>
<td nowrap><i>Ardisia escallonioides</i></td>
<td nowrap>marlberry</td>
<td nowrap>Little (1978)
</td>
<td nowrap>167</td>
</tr>
<tr>
<td nowrap><a href="artetrid.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="artetrid.zip">Shapefiles</a></td>
<td nowrap><i>Artemisia tridentata</i></td>
<td nowrap>big sagebrush</td>
<td nowrap>Little (1976)
</td>
<td nowrap>21-NW, 21-SW</td>
</tr>
<tr>
<td nowrap><a href="asimparv.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="asimparv.zip">Shapefiles</a></td>
<td nowrap><i>Asimina parviflora</i></td>
<td nowrap>smallflower pawpaw</td>
<td nowrap>Little (1978)
</td>
<td nowrap>158.5</td>
</tr>
<tr>
<td nowrap><a href="asimtril.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="asimtril.zip">Shapefiles</a></td>
<td nowrap><i>Asimina triloba</i></td>
<td nowrap>pawpaw</td>
<td nowrap>Little (1977)
</td>
<td nowrap>16</td>
</tr>
<tr>
<td nowrap><a href="avicgerm.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="avicgerm.zip">Shapefiles</a></td>
<td nowrap><i>Avicennia germinans</i></td>
<td nowrap>black mangrove</td>
<td nowrap>Little (1977, 1978)
</td>
<td nowrap>17-N,17-SE, 168</td>
</tr>
<tr>
<td nowrap><a href="bacchali.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bacchali.zip">Shapefiles</a></td>
<td nowrap><i>Baccharis halimifolia</i></td>
<td nowrap>eastern baccharis</td>
<td nowrap>Little (1977)
</td>
<td nowrap>18-NE, 18-SE</td>
</tr>
<tr>
<td nowrap><a href="betualle.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="betualle.zip">Shapefiles</a></td>
<td nowrap><i>Betula alleghaniensis</i></td>
<td nowrap>yellow birch</td>
<td nowrap>Little (1971)
</td>
<td nowrap>105-N, 105-E</td>
</tr>
<tr>
<td nowrap><a href="betulent.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="betulent.zip">Shapefiles</a></td>
<td nowrap><i>Betula lenta</i></td>
<td nowrap>sweet birch</td>
<td nowrap>Little (1971)
</td>
<td nowrap>106-E</td>
</tr>
<tr>
<td nowrap><a href="betunana.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="betunana.zip">Shapefiles</a></td>
<td nowrap><i>Betula nana </i></td>
<td nowrap>dwarf birch</td>
<td nowrap>Little (1975)
</td>
<td nowrap>34</td>
</tr>
<tr>
<td nowrap><a href="betunigr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="betunigr.zip">Shapefiles</a></td>
<td nowrap><i>Betula nigra</i></td>
<td nowrap>river birch</td>
<td nowrap>Little (1971)
</td>
<td nowrap>110-E</td>
</tr>
<tr>
<td nowrap><a href="betuocci.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="betuocci.zip">Shapefiles</a></td>
<td nowrap><i>Betula occidentalis</i></td>
<td nowrap>water birch</td>
<td nowrap>Little (1976)
</td>
<td nowrap>22-N, 22-NW</td>
</tr>
<tr>
<td nowrap><a href="betupapy.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="betupapy.zip">Shapefiles</a></td>
<td nowrap><i>Betula papyrifera</i></td>
<td nowrap>paper birch</td>
<td nowrap>Little (1971)
</td>
<td nowrap>107-N, 107-W, 107-E</td>
</tr>
<tr>
<td nowrap><a href="betupopu.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="betupopu.zip">Shapefiles</a></td>
<td nowrap><i>Betula populifolia</i></td>
<td nowrap>gray birch</td>
<td nowrap>Little (1971)
</td>
<td nowrap>108-N, 108-E</td>
</tr>
<tr>
<td nowrap><a href="betuuber.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="betuuber.zip">Shapefiles</a></td>
<td nowrap><i>Betula uber</i></td>
<td nowrap>Ashe birch</td>
<td nowrap>Little (1977)
</td>
<td nowrap>19</td>
</tr>
<tr>
<td nowrap><a href="bourovat.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bourovat.zip">Shapefiles</a></td>
<td nowrap><i>Bourreria ovata</i></td>
<td nowrap>Bahama strongbark</td>
<td nowrap>Little (1978)
</td>
<td nowrap>169</td>
</tr>
<tr>
<td nowrap><a href="bourradu.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bourradu.zip">Shapefiles</a></td>
<td nowrap><i>Bourreria radula</i></td>
<td nowrap>rough strongbark</td>
<td nowrap>Little (1978)
</td>
<td nowrap>170</td>
</tr>
<tr>
<td nowrap><a href="bumecela.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bumecela.zip">Shapefiles</a></td>
<td nowrap><i>Bumelia celastrina</i></td>
<td nowrap>saffron plum</td>
<td nowrap>Little (1976, 1978)
</td>
<td nowrap>23-N, 23-SW, 171</td>
</tr>
<tr>
<td nowrap><a href="bumelanu.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bumelanu.zip">Shapefiles</a></td>
<td nowrap><i>Bumelia lanuginosa</i></td>
<td nowrap>gum bumelia</td>
<td nowrap>Little (1976, 1977)
</td>
<td nowrap>24, 20</td>
</tr>
<tr>
<td nowrap><a href="bumelyci.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bumelyci.zip">Shapefiles</a></td>
<td nowrap><i>Bumelia lycioides</i></td>
<td nowrap>buckthorn bumelia</td>
<td nowrap>Little (1977)
</td>
<td nowrap>21</td>
</tr>
<tr>
<td nowrap><a href="bumetena.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bumetena.zip">Shapefiles</a></td>
<td nowrap><i>Bumelia tenax</i></td>
<td nowrap>tough bumelia</td>
<td nowrap>Little (1977)
</td>
<td nowrap>22</td>
</tr>
<tr>
<td nowrap><a href="bursfaga.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bursfaga.zip">Shapefiles</a></td>
<td nowrap><i>Bursera fagaroides</i></td>
<td nowrap>fragrant bursera</td>
<td nowrap>Little (1976)
</td>
<td nowrap>26-N, 26-SW</td>
</tr>
<tr>
<td nowrap><a href="bursmicr.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="bursmicr.zip">Shapefiles</a></td>
<td nowrap><i>Bursera microphylla</i></td>
<td nowrap>elephanttree</td>
<td nowrap>Little (1976)
</td>
<td nowrap>25</td>
</tr>
<tr>
<td nowrap><a href="burssima.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="burssima.zip">Shapefiles</a></td>
<td nowrap><i>Bursera simaruba</i></td>
<td nowrap>gumbo limbo</td>
<td nowrap>Little (1978)
</td>
<td nowrap>172</td>
</tr>
<tr>
<td nowrap><a href="byrsluci.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="byrsluci.zip">Shapefiles</a></td>
<td nowrap><i>Byrsonima lucida</i></td>
<td nowrap>key byrsonima</td>
<td nowrap>Little (1978)
</td>
<td nowrap>173</td>
</tr>
<tr>
<td nowrap><a href="caesmexi.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="caesmexi.zip">Shapefiles</a></td>
<td nowrap><i>Caesalpinia mexicana</i></td>
<td nowrap>Mexican poinciana</td>
<td nowrap>Little (1976)
</td>
<td nowrap>27-N, 27-SW</td>
</tr>
<tr>
<td nowrap><a href="calypall.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="calypall.zip">Shapefiles</a></td>
<td nowrap><i>Calyptranthes pallens</i></td>
<td nowrap>pale lidflower</td>
<td nowrap>Little (1978)
</td>
<td nowrap>174</td>
</tr>
<tr>
<td nowrap><a href="calyzuzy.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="calyzuzy.zip">Shapefiles</a></td>
<td nowrap><i>Calyptranthes zuzygium</i></td>
<td nowrap>myrtle of the river</td>
<td nowrap>Little (1978)
</td>
<td nowrap>175</td>
</tr>
<tr>
<td nowrap><a href="canewint.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="canewint.zip">Shapefiles</a></td>
<td nowrap><i>Canella winterana</i></td>
<td nowrap>canella</td>
<td nowrap>Little (1978)
</td>
<td nowrap>176</td>
</tr>
<tr>
<td nowrap><a href="canoholo.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="canoholo.zip">Shapefiles</a></td>
<td nowrap><i>Canotia holacantha</i></td>
<td nowrap>canotia</td>
<td nowrap>Little (1976)
</td>
<td nowrap>28</td>
</tr>
<tr>
<td nowrap><a href="cappcyno.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="cappcyno.zip">Shapefiles</a></td>
<td nowrap><i>Capparis cynophallophora</i></td>
<td nowrap>Jamaica caper</td>
<td nowrap>Little (1978)
</td>
<td nowrap>177</td>
</tr>
<tr>
<td nowrap><a href="cappflex.pdf">Graphic(PDF)</a></td>
<td nowrap><a href="cappflex.zip">Shapefiles</a></td>
<td nowrap><i>Capparis flexuosa</i></td>
<td nowrap>limber caper</td>
<td nowrap>Little (1978)
</td>
<td nowrap>178</td>