-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathspecies4.json
More file actions
2089 lines (2089 loc) · 99 KB
/
Copy pathspecies4.json
File metadata and controls
2089 lines (2089 loc) · 99 KB
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
[
{
"COMMON": "Maple (Acer spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Acer spp.",
"ID": "237",
"ITREECODE": "AC",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "",
"FULL_PIC": "/images/237/EOL-media-913-104820/full.jpg",
"GENUS": "Acer",
"BARK_TYPE": "burling",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Maple (Acer spp.) contains about 120+ species, most which are native to Asia. Maples can be separated into two groups, the soft maple group and the hard maple group. The best way to identify maple trees is by their leaves, bark, and fruit. Maple trees commonly have leaves with pointed lobes and with deep indentations between the lobes. The bark on maple trees starts smooth and gray before developing fissures and furrows. Maple tree fruit looks like small wing-shaped leaves.",
"FULL_PIC_180x110": "new_images/237/EOL-media-913-104820/full_180x110.png",
"FULL_PIC_1024x768": "new_images/237/EOL-media-913-104820/full_1024x768.png",
"THUMB_PIC_1024x768": ""
},
{
"COMMON": "Abelia (Abelia spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Abelia spp.",
"ID": "238",
"ITREECODE": "AB1",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/238/EOL-media-544-7ee2ba8cd842933272701dbce2d434c0/full.jpg,/images/238/EOL-media-509-10954525/full.jpg",
"FULL_PIC": "/images/238/EOL-media-509-16940122/full.jpg",
"GENUS": "Abelia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Abelia is a genus of about 5 species of evergreen, and some deciduous, shrubs from eastern Asia and Mexico. In summer, Abelia plants produce an abundance of tubular-shaped flowers in clusters for which they are grown.",
"FULL_PIC_180x110": "new_images/238/EOL-media-509-16940122/full_180x110.png",
"FULL_PIC_1024x768": "new_images/238/EOL-media-509-16940122/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/238/EOL-media-544-7ee2ba8cd842933272701dbce2d434c0/full_1024x768.png,new_images/238/EOL-media-509-10954525/full_1024x768.png"
},
{
"COMMON": "Indian mallow (Abutilon spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Abutilon spp.",
"ID": "239",
"ITREECODE": "AB3",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/239/EOL-media-7-CalPhotos_0000%200000%200606%200539/full.jpg,/images/239/EOL-media-851-138810-2.jpg/full.jpg",
"FULL_PIC": "/images/239/EOL-media-851-138810-1.jpg/full.jpg",
"GENUS": "Abutilon",
"BARK_TYPE": "",
"LEAF_SHAPE": "ovate, cordate",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "hairy",
"DESCRIPTION": "The Indian mallow genus is a herbaceous perennial with several stems which are woody at the base and much branched above. The stems are densely hairy and are approximately 2-3 ft. (.6-.9 m) high. Leaves are thickish, mostly ovate-cordate, with a sharp to tapering point. The edges are irregularly serrate, with minute star shaped hairs underneath, approximately 4 in (10 cm) long. These hairs are noticeably smaller on the branchlets.",
"FULL_PIC_180x110": "new_images/239/EOL-media-851-138810-1.jpg/full_180x110.png",
"FULL_PIC_1024x768": "new_images/239/EOL-media-851-138810-1.jpg/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/239/EOL-media-7-CalPhotos_0000 0000 0606 0539/full_1024x768.png,new_images/239/EOL-media-851-138810-2.jpg/full_1024x768.png"
},
{
"COMMON": "Baobabs (Adansonia spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Adansonia spp.",
"ID": "240",
"ITREECODE": "AB1",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/240/EOL-media-542-9574334779/full.jpg,/images/240/EOL-media-851-139770-12.jpg/full.jpg",
"FULL_PIC": "/images/240/EOL-media-7-CalPhotos_0000%200000%200113%202545/full.jpg",
"GENUS": "Adansonia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Adansonia is a genus made up of eight species of medium to large deciduous trees known as 'Baobabs'. Six of the species (Adansonia grandidieri, A. madagascariensis, A. perrieri, A. rubrostipa, A. suarezensis, and A. za) are endemic to Madagascar. The other two species come from mainland Africa/Arabian penninsula, and northwest Australia. Some of the species (such as the Adansonia suarezensis or Suarez baobab) are becoming increasingly rare due to habitat loss. Previously, the 'Baobab' was classified within the family Bombacaceae - which is a widely distributed family of tropical trees. Currently, they are now placed in the Malvaceae family - which is is a family of flowering plants (with a few trees) - which is estimated to contain around 4,225 known species. The 'Baobab' is frequently known as the 'tree of life' or as the 'upside down tree'. They rank as some of the most long-lived of vascular plants in the world, and have large flowers that are reproductive for a maximum of 15 hours. Trees within this genus are easy to identify due to their unusual barrel-like trunks and sparse - often rounded - crowns. It is also notable that many species in this genus have edible leaves and fruits - and some are important sources of herbal remedies.",
"FULL_PIC_180x110": "new_images/240/EOL-media-7-CalPhotos_0000 0000 0113 2545/full_180x110.png",
"FULL_PIC_1024x768": "new_images/240/EOL-media-7-CalPhotos_0000 0000 0113 2545/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/240/EOL-media-542-9574334779/full_1024x768.png,new_images/240/EOL-media-851-139770-12.jpg/full_1024x768.png"
},
{
"COMMON": "Wild lime (Adelia spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Adelia spp.",
"ID": "241",
"ITREECODE": "AD2",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/241/EOL-media-7-CalPhotos_0000%200000%200217%200441/full.jpg,/images/241/EOL-media-539-MHPAC_BioBot00009-BB000032+1213797710.JPG/full.jpg,/missing_images_pt2/241/Zanthoxylum_fagara_(homeredwardprice)_001.jpg",
"FULL_PIC": "/images/241/EOL-media-7-CalPhotos_0000%200000%200217%200443/full.jpg",
"GENUS": "Adelia",
"BARK_TYPE": "scaly",
"LEAF_SHAPE": "obovate",
"LEAF_VEINS": "arcuate, pinnate",
"LEAF_EDGES": "crenate",
"LEAF_TYPE": "pinnately compound",
"TREE_SHAPE": "open-head irregular, globe, vase-shaped, shrub",
"FRUIT_SEED": "berry or seed (small capsule)",
"BARK_COLOR": "grey",
"LEAF_COLOR": "green",
"LEAF_ARRANGEMENT": "alternate",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Wild lime is a genus of evergreen shrubs and flowering plants from the spurge family: Euphorbiaceae. It is native to Latin America and the Caribbean, with one species (Vasey's Wild Lime i.e. Adelia vasey) extending northward into the southernmost part of Texas. Plants of this genus also occur naturally throughout Central and Southern Florida. There are individual species in this shrubby genus that actually grow to be very tall - even upwards to 13.7 ft (4.2 m). Species in the 'Wild lime' genus bloom year-round, with peak flowering occuring in winter and spring. Its dense foliage provides cover, and food, for many birds and small wildlife. Also, this genus of tree is a noted foodplant for many butterflies- including the Giant Swallowtail, one of the largest known butterflies. Despite its common name, 'Wild lime' is merely a cousin of culinary limes and other citrus fruit. However ,it is worth noting that 'Wild lime' flowers and crushed leaves really do smell distinctively like lime. Another notable trait about the species in this genus is that they have trunks and branches armed with sharp hooked thorns.",
"FULL_PIC_180x110": "new_images/241/EOL-media-7-CalPhotos_0000 0000 0217 0443/full_180x110.png",
"FULL_PIC_1024x768": "new_images/241/EOL-media-7-CalPhotos_0000 0000 0217 0443/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/241/EOL-media-7-CalPhotos_0000 0000 0217 0441/full_1024x768.png,new_images/241/EOL-media-539-MHPAC_BioBot00009-BB0000321213797710.JPG/full_1024x768.png,new_images/241/Zanthoxylum_fagara_homeredwardprice_001_1024x768.png"
},
{
"COMMON": "Beadtree (Adenanthera spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Adenanthera spp.",
"ID": "242",
"ITREECODE": "AD3",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/242/EOL-media-84-CalPhotos_4444%204444%200510%201187/full.jpg",
"FULL_PIC": "/images/242/EOL-media-542-5171050160/full.jpg",
"GENUS": "Adenanthera",
"BARK_TYPE": "fibrous",
"LEAF_SHAPE": "ovate",
"LEAF_VEINS": "pinnate",
"LEAF_EDGES": "entire (smooth)",
"LEAF_TYPE": "bipinnately compound",
"TREE_SHAPE": "open-head irregular, vase-shaped, shrub",
"FRUIT_SEED": "legume, berry or seed (small capsule)",
"BARK_COLOR": "gray, brown, pink",
"LEAF_COLOR": "green, yellow",
"LEAF_ARRANGEMENT": "alternate, opposite",
"LEAF_UNDERSIDE_COLOR": "blue, green",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Beadtree spp. (Adenanthera) is a genus of flowering plants in the family Fabaceae. It is an introduced species to the United States, and its range includes Hawaii, Florida, and Puerto Rico. It is largely considered invasive - particularly in Cuba, Puerto Rico, and Florida. Members of this genus tend to be fast-growing, with an attractive, spreading canopy. It is often planted for shade, or for ornamental purposes in large gardens or parks. Though commonly used as an ornamental, it is well-known for producing much litter in the form of leaves, twigs and especially seed pods which crack open while still on the branch. The raw seeds are poisonous, despite their attractive coloring.",
"FULL_PIC_180x110": "new_images/242/EOL-media-542-5171050160/full_180x110.png",
"FULL_PIC_1024x768": "new_images/242/EOL-media-542-5171050160/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/242/EOL-media-84-CalPhotos_4444 4444 0510 1187/full_1024x768.png"
},
{
"COMMON": "Prickbush (Adolphia spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Adolphia spp.",
"ID": "243",
"ITREECODE": "AD6",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/243/EOL-media-542-15921848564/full.jpg",
"FULL_PIC": "/images/243/EOL-media-7-CalPhotos_0000%200000%200206%201073/full.jpg",
"GENUS": "Adolphia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Adolphia (Prickbush) is a genus of plants in the family Rhamnaceae. These are rigid, thorny, flowering bushes. Their height is up to about 5 feet tall, and they are commonly found on rocky slopes and in chaparral habitat areas.",
"FULL_PIC_180x110": "new_images/243/EOL-media-7-CalPhotos_0000 0000 0206 1073/full_180x110.png",
"FULL_PIC_1024x768": "new_images/243/EOL-media-7-CalPhotos_0000 0000 0206 1073/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/243/EOL-media-542-15921848564/full_1024x768.png"
},
{
"COMMON": "Buckeye (Aesculus spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Aesculus spp.",
"ID": "244",
"ITREECODE": "AE",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/244/EOL-media-542-4298066400/full.jpg,/images/244/EOL-media-913-121529/full.jpg",
"FULL_PIC": "/images/244/EOL-media-542-4300033413/full.jpg",
"GENUS": "Aesculus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Buckeye refers to any of the six species of North American trees and shrubs in the genus Aesculus of the soapberry family (Sapindaceae). The name refers to the nutlike seed, which has a pale patch on a shiny red-brown surface, and resembles the eye of a deer.",
"FULL_PIC_180x110": "new_images/244/EOL-media-542-4300033413/full_180x110.png",
"FULL_PIC_1024x768": "new_images/244/EOL-media-542-4300033413/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/244/EOL-media-542-4298066400/full_1024x768.png,new_images/244/EOL-media-913-121529/full_1024x768.png"
},
{
"COMMON": "Tree of Heaven",
"TYPE": "broadleaf",
"SCIENTIFIC": "Ailanthus altissima",
"ID": "245",
"ITREECODE": "AI1",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/245/EOL-media-542-4941302523/full.jpg,/images/245/EOL-media-542-11753578175/full.jpg",
"FULL_PIC": "/images/245/EOL-media-542-11753565725/full.jpg",
"GENUS": "Ailanthus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Ailanthus altissima is commonly known as the 'Tree of Heaven'. It is native to northeast and central China, and Taiwan. The tree grows rapidly, and is capable of reaching heights of 15 m (50 ft) in 25 years. While the species rarely lives more than 50 years, some specimens exceed 100 years of age. The bark is smooth and light grey, and the leaves are large (1 to 3 ft long), odd- or even-pinnately compound on the stem. It is considered one of the worst invasive plant species in Europe and North America.",
"FULL_PIC_180x110": "new_images/245/EOL-media-542-11753565725/full_180x110.png",
"FULL_PIC_1024x768": "new_images/245/EOL-media-542-11753565725/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/245/EOL-media-542-4941302523/full_1024x768.png,new_images/245/EOL-media-542-11753578175/full_1024x768.png"
},
{
"COMMON": "Albizia (Albizia spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Albizia spp.",
"ID": "246",
"ITREECODE": "AL1",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/246/EOL-media-84-CalPhotos_4444%204444%200510%201049/full.jpg,/images/246/EOL-media-851-125580-1.jpg/full.jpg,/images/246/EOL-media-851-162710-1.jpg/full.jpg",
"FULL_PIC": "/images/246/EOL-media-913-28340/full.jpg",
"GENUS": "Albizia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Albizia is a genus of more than 160 species of mostly fast-growing subtropical and tropical trees and shrubs in the subfamily Mimosoideae of the family Fabaceae. Albizia is an herb that was originally grown in southern and eastern Asia. The flowers and stem bark are frequently used to make medicine.",
"FULL_PIC_180x110": "new_images/246/EOL-media-913-28340/full_180x110.png",
"FULL_PIC_1024x768": "new_images/246/EOL-media-913-28340/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/246/EOL-media-84-CalPhotos_4444 4444 0510 1049/full_1024x768.png,new_images/246/EOL-media-851-125580-1.jpg/full_1024x768.png,new_images/246/EOL-media-851-162710-1.jpg/full_1024x768.png"
},
{
"COMMON": "Alchorneopsis (Alchorneopsis spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Alchorneopsis spp.",
"ID": "247",
"ITREECODE": "AL2",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "",
"FULL_PIC": "/images/247/EOL-media-542-11486568505/full.jpg",
"GENUS": "Alchorneopsis",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Alchorneopsis is a genus of flowering plants in the family Euphorbiaceae. The trees are small to medium sized evergreen trees, ranging from 20 to 50 feet (6 to 15 meters) in height with a trunk diameter near 1 ½ feet (3.8 centimeters). The outer bark is smooth, slightly grooved and gray in color. Branches are light-brown with fine hairs when immature. They feature elliptically shaped leaves, pointed at each end, that are thin, slightly shiny, and light-green to yellow-green in color. Also has small, greenish or yellow-green flowers bunched together on extremely short stalks – they are dioecious – with male and female flowers occuring on different trees.",
"FULL_PIC_180x110": "new_images/247/EOL-media-542-11486568505/full_180x110.png",
"FULL_PIC_1024x768": "new_images/247/EOL-media-542-11486568505/full_1024x768.png",
"THUMB_PIC_1024x768": ""
},
{
"COMMON": "Alhagi (Alhagi spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Alhagi spp.",
"ID": "248",
"ITREECODE": "AL6",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/248/EOL-media-509-11228873/full.jpg,/images/248/EOL-media-509-11228928/full.jpg",
"FULL_PIC": "/images/248/EOL-media-542-14594364340/full.jpg",
"GENUS": "Alhagi",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Alhagi is a genus of Old World plants in the family Fabaceae. They are commonly called camelthorns or manna trees. Proportionally, they have the deepest root system of any plants (a 1 m high shrub may have a main root more than 15 m long) and are well adapted to living in arid environments. They resemble a small perennial thorny shrub, with intricate branching patterns, and often have sharp yellow spines that are 1-2 inches (2.54 - 5.08 cm) in length.",
"FULL_PIC_180x110": "new_images/248/EOL-media-542-14594364340/full_180x110.png",
"FULL_PIC_1024x768": "new_images/248/EOL-media-542-14594364340/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/248/EOL-media-509-11228873/full_1024x768.png,new_images/248/EOL-media-509-11228928/full_1024x768.png"
},
{
"COMMON": "Alder (Alnus spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Alnus spp.",
"ID": "249",
"ITREECODE": "AL",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/249/EOL-media-913-5061/full.jpg",
"FULL_PIC": "/images/249/EOL-media-913-5062/full.jpg",
"GENUS": "Alnus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Alders are trees comprising the genus Alnus in the birch family Betulaceae. The easiest way of recognizing an alder tree is by its distinctive little fruiting body, called a strobile. They appear in fall and look like 1 inch (2.5 cm.) long cones. The Alder leaf is rounded to ovate roundish and 6 – 12 cm (2.4 – 4.7 in) long and broad. The veins go opposite from the central axis of the leaf. The leaf has no peak. The leaf margin is double serrated.",
"FULL_PIC_180x110": "new_images/249/EOL-media-913-5062/full_180x110.png",
"FULL_PIC_1024x768": "new_images/249/EOL-media-913-5062/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/249/EOL-media-913-5061/full_1024x768.png"
},
{
"COMMON": "Coast oak (aka Santa Cruz Island oak)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Quercus parvula",
"ID": "250",
"ITREECODE": "QUPA8",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/250/EOL-media-7-CalPhotos_0000%200000%200518%200166/full.jpg",
"FULL_PIC": "/images/250/EOL-media-7-CalPhotos_0000%200000%201117%200644/full.jpg",
"GENUS": "Quercus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Quercus parvula, the Coast oak or the Santa Cruz Island oak, is an evergreen red oak found on north-facing Santa Cruz Island slopes and in the California Coast Ranges from Santa Barbara County north to Mendocino County.",
"FULL_PIC_180x110": "new_images/250/EOL-media-7-CalPhotos_0000 0000 1117 0644/full_180x110.png",
"FULL_PIC_1024x768": "new_images/250/EOL-media-7-CalPhotos_0000 0000 1117 0644/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/250/EOL-media-7-CalPhotos_0000 0000 0518 0166/full_1024x768.png"
},
{
"COMMON": "Coastal live oak",
"TYPE": "broadleaf",
"SCIENTIFIC": "Quercus live agrifolia",
"ID": "251",
"ITREECODE": "QUAG",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/missing_images/251/CoastalLiveOak/coastal%20live%20oak%20tumb%20pic.jpeg",
"FULL_PIC": "/missing_images/251/CoastalLiveOak/coastal%20live%20oak%20full%20pic.jpeg",
"GENUS": "Quercus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "The Coast Live Oak is a beautiful evergreen oak that grows predominantly west of the central valleys, as far north as Mendocino County, and as far south as northern Baja California in Mexico. This tree typically has a much-branched trunk and reaches a mature height of 10-25 meters. ",
"FULL_PIC_180x110": "new_images/251/CoastalLiveOak/coastal live oak full pic_180x110.png",
"FULL_PIC_1024x768": "new_images/251/CoastalLiveOak/coastal live oak full pic_1024x768.png",
"THUMB_PIC_1024x768": "new_images/251/CoastalLiveOak/coastal live oak tumb pic_1024x768.png"
},
{
"COMMON": "Evergreen pear",
"TYPE": "broadleaf",
"SCIENTIFIC": "Pyrus kawakamii",
"ID": "252",
"ITREECODE": "PYKA",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/252/EOL-media-7-CalPhotos_0000%200000%200317%201637/full.jpg,/images/252/EOL-media-7-CalPhotos_0000%200000%201116%202784/full.jpg,/images/252/EOL-media-7-CalPhotos_0000%200000%201216%203693/full.jpg",
"FULL_PIC": "/images/252/EOL-media-7-CalPhotos_0000%200000%200317%201636/full.jpg",
"GENUS": "Pyrus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "The Evergreen Pear Tree (Pyrus kawakamii) is prized for its beautiful winter color. Despite its name, in late December and January, the foliage turns a beautiful orange-red color. It grows moderately tall - from fifteen to thirty feet in height. The tree is native to China and Taiwan.",
"FULL_PIC_180x110": "new_images/252/EOL-media-7-CalPhotos_0000 0000 0317 1636/full_180x110.png",
"FULL_PIC_1024x768": "new_images/252/EOL-media-7-CalPhotos_0000 0000 0317 1636/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/252/EOL-media-7-CalPhotos_0000 0000 0317 1637/full_1024x768.png,new_images/252/EOL-media-7-CalPhotos_0000 0000 1116 2784/full_1024x768.png,new_images/252/EOL-media-7-CalPhotos_0000 0000 1216 3693/full_1024x768.png"
},
{
"COMMON": "California palm",
"TYPE": "broadleaf",
"SCIENTIFIC": "Washingtonia filifera",
"ID": "253",
"ITREECODE": "WAFI",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/253/EOL-media-7-CalPhotos_0000%200000%200613%201535/full.jpg",
"FULL_PIC": "/images/253/EOL-media-7-CalPhotos_0000%200000%200508%202196/full.jpg",
"GENUS": "Washingtonia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Washingtonia filifera, also known as desert fan palm, California fan palm, or California palm, is a flowering plant in the palm family native to the southwestern United States and Baja California. ",
"FULL_PIC_180x110": "new_images/253/EOL-media-7-CalPhotos_0000 0000 0508 2196/full_180x110.png",
"FULL_PIC_1024x768": "new_images/253/EOL-media-7-CalPhotos_0000 0000 0508 2196/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/253/EOL-media-7-CalPhotos_0000 0000 0613 1535/full_1024x768.png"
},
{
"COMMON": "Mexican fan palm",
"TYPE": "broadleaf",
"SCIENTIFIC": "Washingtonia robusta",
"ID": "254",
"ITREECODE": "WARO",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/254/EOL-media-542-3139187251/full.jpg,/images/254/EOL-media-542-26686444445/full.jpg",
"FULL_PIC": "/images/254/EOL-media-509-38234864/full.jpg",
"GENUS": "Washingtonia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "palmately compound",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "The Mexican Fan Palm Tree is one of the fastest growing of all palm tree varieties. As the name suggests it originates in Mexico but it has spread widely throughout California and the rest of the United States.",
"FULL_PIC_180x110": "new_images/254/EOL-media-509-38234864/full_180x110.png",
"FULL_PIC_1024x768": "new_images/254/EOL-media-509-38234864/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/254/EOL-media-542-3139187251/full_1024x768.png,new_images/254/EOL-media-542-26686444445/full_1024x768.png"
},
{
"COMMON": "Fan Palms (Washingtonia spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Washingtonia spp.",
"ID": "255",
"ITREECODE": "WA4",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/255/EOL-media-7-CalPhotos_0000%200000%200613%201533/full.jpg",
"FULL_PIC": "/images/255/EOL-media-7-CalPhotos_0000%200000%200613%201535/full.jpg",
"GENUS": "Washingtonia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "palmately compound",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Fan palm as a descriptive term can refer to any of several different kinds of palms (Arecaceae) in various genera with leaves that are palmately lobed (rather than pinnately compound).",
"FULL_PIC_180x110": "new_images/255/EOL-media-7-CalPhotos_0000 0000 0613 1535/full_180x110.png",
"FULL_PIC_1024x768": "new_images/255/EOL-media-7-CalPhotos_0000 0000 0613 1535/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/255/EOL-media-7-CalPhotos_0000 0000 0613 1533/full_1024x768.png"
},
{
"COMMON": "Yucca (Yucca spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Yucca spp.",
"ID": "256",
"ITREECODE": "YU1",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/missing_images/256/Yucca_filamentosa.jpg,/images/256/EOL-media-543-yucca_005_avp.tif/full.jpg",
"FULL_PIC": "/missing_images/256/800px-Yucca_aloifolia_4.jpg",
"GENUS": "Yucca",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Yucca is a genus of perennial shrubs and trees in the family Asparagaceae, subfamily Agavoideae. Its 40–50 species are notable for their rosettes of evergreen, tough, sword-shaped leaves and large terminal panicles of white or whitish flowers.",
"FULL_PIC_180x110": "new_images/256/800px-Yucca_aloifolia_4_180x110.png",
"FULL_PIC_1024x768": "new_images/256/800px-Yucca_aloifolia_4_1024x768.png",
"THUMB_PIC_1024x768": "new_images/256/Yucca_filamentosa_1024x768.png,new_images/256/EOL-media-543-yucca_005_avp.tif/full_1024x768.png"
},
{
"COMMON": "Silver dollar eucalyptus",
"TYPE": "broadleaf",
"SCIENTIFIC": "Eucalyptus cinerea",
"ID": "257",
"ITREECODE": "EUCI",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "",
"FULL_PIC": "/images/257/EOL-media-509-18202692/full.jpg",
"GENUS": "Eucalyptus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Botanically, the silver dollar eucalyptus is known as the Eucalyptus cinerea. It is also referred to as the Argyle apple and mealy stringybark. It can grow rapidly (6-8 feet in one season). The leaves are round, fragrant and an attractive silver color, hence the name.",
"FULL_PIC_180x110": "new_images/257/EOL-media-509-18202692/full_180x110.png",
"FULL_PIC_1024x768": "new_images/257/EOL-media-509-18202692/full_1024x768.png",
"THUMB_PIC_1024x768": ""
},
{
"COMMON": "Eucalyptus (Gum spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Gum spp.",
"ID": "258",
"ITREECODE": "EU1",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/258/EOL-media-851-142450-1.jpg/full.jpg",
"FULL_PIC": "/images/258/EOL-media-913-65897/full.jpg",
"GENUS": "Eucalyptus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Eucalyptus is a fast-growing evergreen tree native to Australia. As an ingredient in many products, it is used to reduce symptoms of coughs, colds, and congestion. It also features in creams and ointments aimed at relieving muscle and joint pain.",
"FULL_PIC_180x110": "new_images/258/EOL-media-913-65897/full_180x110.png",
"FULL_PIC_1024x768": "new_images/258/EOL-media-913-65897/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/258/EOL-media-851-142450-1.jpg/full_1024x768.png"
},
{
"COMMON": "Monterey pine",
"TYPE": "conifer",
"SCIENTIFIC": "Pinus radiata",
"ID": "259",
"ITREECODE": "PIRA",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/259/EOL-media-7-CalPhotos_0000 0000 1215 1133/full.jpg,/images/259/EOL-media-509-2751281/full.jpg",
"FULL_PIC": "/images/259/EOL-media-7-CalPhotos_8120 3181 4902 0090/full.jpg",
"GENUS": "Pinus",
"BARK_TYPE": "",
"NEEDLE_TRAITS": "",
"NEEDLE_DIRECTION": "",
"TREE_SHAPE": "",
"CONE": "",
"FASCICLE_NO": "",
"BARK_COLOR": "",
"NEEDLE_COLOR": "",
"NEEDLE_ARRANGEMENT": "",
"DESCRIPTION": "Pinus radiata, commonly known as Monterey pine, is a coniferous evergreen tree growing to between 15 - 30 m (49 - 98 ft) in height in the wild, but up to 60 m (200 ft) in cultivation in optimal conditions. It is native to the Central Coast of California and Mexico, and features upward pointing branches and a rounded top. The leaves ('needles') are bright green, in clusters of three (two in var. binata), slender, 8 - 15 cm (3.1 - in) long and with a blunt tip. The cones are 7 - 17 cm (2.8 - 6.7 in) long, brown, ovoid (egg-shaped). The bark is fissured and dark grey to brown. It is adapted to cope with stand-killing fire disturbance. Its cones are serotinous, i.e. they remain closed until opened by the heat of a forest fire; the abundant seeds are then discharged to regenerate on the burned forest floor. The cones may also burst open in hot weather. Monterey pine (Pinus radiata) and Bishop pine (P. muricata) are the tree species most commonly infected by Pitch Canker in California.",
"FULL_PIC_180x110": "new_images/259/EOL-media-7-CalPhotos_8120 3181 4902 0090/full_180x110.png",
"FULL_PIC_1024x768": "new_images/259/EOL-media-7-CalPhotos_8120 3181 4902 0090/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/259/EOL-media-7-CalPhotos_0000 0000 1215 1133/full_1024x768.png,new_images/259/EOL-media-509-2751281/full_1024x768.png"
},
{
"COMMON": "Hawai'i poisonberry tree",
"TYPE": "broadleaf",
"SCIENTIFIC": "Pittosporum argentifolium",
"ID": "260",
"ITREECODE": "PIAR4",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "",
"FULL_PIC": "/missing_images/260/poisonberry_tree.jpg",
"GENUS": "Pittosporum",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Pittosporum Argentifolium, or more commonly know as Hawaii Poisonberry Tree, is a tree of the genus Pittosporum. It is endemic to the Hawaiian islands of Molokai and Maui. The total number of individuals is thought to be under 1,000 in an undetermined number of occurrences.",
"FULL_PIC_180x110": "new_images/260/poisonberry_tree_180x110.png",
"FULL_PIC_1024x768": "new_images/260/poisonberry_tree_1024x768.png",
"THUMB_PIC_1024x768": ""
},
{
"COMMON": "Corcho bobo",
"TYPE": "broadleaf",
"SCIENTIFIC": "Pisonia albida",
"ID": "261",
"ITREECODE": "PIAL3",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "",
"FULL_PIC": "/missing_images/261/Corcho%20bobo/Corcho%20bobo%20full%20pic.jpeg",
"GENUS": "Pisonia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Corcho Bobo (Pisonia albida) is a deciduous shrub or a tree with a spreading crown; it can grow up to 9 metres tall (29.5 feet). The bole is 15 - 30cm in diameter; the base of the bole and the roots are often enlarged, suggesting an elephant's foot with toes. It has been reported that the sticky fruit clusters fallen on the ground can cause death of young birds that get tangled in them.",
"FULL_PIC_180x110": "new_images/261/Corcho bobo/Corcho bobo full pic_180x110.png",
"FULL_PIC_1024x768": "new_images/261/Corcho bobo/Corcho bobo full pic_1024x768.png",
"THUMB_PIC_1024x768": ""
},
{
"COMMON": "Aulu",
"TYPE": "broadleaf",
"SCIENTIFIC": "Pisonia sandwicensis",
"ID": "262",
"ITREECODE": "PISA5",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/missing_images/262/aulu%20tree/aulu%20tree%20tgumb%20pic.jpeg",
"FULL_PIC": "/missing_images/262/aulu%20tree/aulu%20tree%20full%20pic.jpeg",
"GENUS": "Pisonia",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "entire (smooth)",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Aulu (Kaulu) is a tree that is endemic to Hawaii. Shiny green leaves are entire and oppositely arranged or whorled. Greenish-white flowers grow in clusters.",
"FULL_PIC_180x110": "new_images/262/aulu tree/aulu tree full pic_180x110.png",
"FULL_PIC_1024x768": "new_images/262/aulu tree/aulu tree full pic_1024x768.png",
"THUMB_PIC_1024x768": "new_images/262/aulu tree/aulu tree tgumb pic_1024x768.png"
},
{
"COMMON": "Sierran palm",
"TYPE": "broadleaf",
"SCIENTIFIC": "Prestoea acuminata",
"ID": "263",
"ITREECODE": "PRAC",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/missing_images/263/Sierran%20palm/sierran%20palm%20thumb%20pic.jpeg",
"FULL_PIC": "/missing_images/263/Sierran%20palm/sierran%20palm%20full%20pic.jpeg",
"GENUS": "Prestoea",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Prestoea acuminata (Sierran Palm) is a species of palms native to Central America, the West Indies, and South America. It was formerly widely harvested in Ecuador for palmito. However, the palm is now uncommon due to overharvesting and is no longer commercially harvested on a large scale.",
"FULL_PIC_180x110": "new_images/263/Sierran palm/sierran palm full pic_180x110.png",
"FULL_PIC_1024x768": "new_images/263/Sierran palm/sierran palm full pic_1024x768.png",
"THUMB_PIC_1024x768": "new_images/263/Sierran palm/sierran palm thumb pic_1024x768.png"
},
{
"COMMON": "Eastern white pine",
"TYPE": "conifer",
"SCIENTIFIC": "Pinus strobus",
"ID": "264",
"ITREECODE": "PIST",
"LEVEL": "medium",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/264/EOL-media-7-CalPhotos_0000%200000%200115%201471/full.jpg,/images/264/EOL-media-542-25430200723/full.jpg",
"FULL_PIC": "/images/264/EOL-media-542-10772175994/full.jpg",
"GENUS": "Pinus",
"BARK_TYPE": "",
"NEEDLE_TRAITS": "",
"NEEDLE_DIRECTION": "",
"TREE_SHAPE": "",
"CONE": "",
"FASCICLE_NO": "",
"BARK_COLOR": "",
"NEEDLE_COLOR": "",
"NEEDLE_ARRANGEMENT": "",
"DESCRIPTION": "The Eastern white pine is a large pine native to eastern North America. It features clustered soft blue-green needles (occuring in fascicles/bundles of 5, or rarely 3 to 4). The seed cones are slender and rarely longer than 1-2 inches. It particularly likes moist, well-drained soils.",
"FULL_PIC_180x110": "new_images/264/EOL-media-542-10772175994/full_180x110.png",
"FULL_PIC_1024x768": "new_images/264/EOL-media-542-10772175994/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/264/EOL-media-7-CalPhotos_0000 0000 0115 1471/full_1024x768.png,new_images/264/EOL-media-542-25430200723/full_1024x768.png"
},
{
"COMMON": "Pine (Pinus spp.)",
"TYPE": "conifer",
"SCIENTIFIC": "Pinus spp.",
"ID": "265",
"ITREECODE": "PI2",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/265/EOL-media-916-13903158484/full.jpg",
"FULL_PIC": "/images/265/EOL-media-539-PNCA_DSG673-atte+1149810569.JPG/full.jpg",
"GENUS": "Pinus",
"BARK_TYPE": "",
"NEEDLE_TRAITS": "",
"NEEDLE_DIRECTION": "",
"TREE_SHAPE": "",
"CONE": "",
"FASCICLE_NO": "",
"BARK_COLOR": "",
"NEEDLE_COLOR": "",
"NEEDLE_ARRANGEMENT": "",
"DESCRIPTION": "A pine is any conifer in the genus Pinus of the family Pinaceae.",
"FULL_PIC_180x110": "new_images/265/EOL-media-539-PNCA_DSG673-atte1149810569.JPG/full_180x110.png",
"FULL_PIC_1024x768": "new_images/265/EOL-media-539-PNCA_DSG673-atte1149810569.JPG/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/265/EOL-media-916-13903158484/full_1024x768.png"
},
{
"COMMON": "Birch (Betula spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Betula spp.",
"ID": "266",
"ITREECODE": "BE",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/266/EOL-media-539-MLTVP_TE2013-I_113a+1373739972.JPG/full.jpg",
"FULL_PIC": "/images/266/EOL-media-539-BBYUK_IMG_3905+1341950300.JPG/full.jpg",
"GENUS": "Betula",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "A birch is a thin-leaved deciduous hardwood tree of the genus Betula, in the family Betulaceae, which also includes alders, hazels, and hornbeams.",
"FULL_PIC_180x110": "new_images/266/EOL-media-539-BBYUK_IMG_39051341950300.JPG/full_180x110.png",
"FULL_PIC_1024x768": "new_images/266/EOL-media-539-BBYUK_IMG_39051341950300.JPG/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/266/EOL-media-539-MLTVP_TE2013-I_113a1373739972.JPG/full_1024x768.png"
},
{
"COMMON": "Hickory (Carya spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Carya spp.",
"ID": "267",
"ITREECODE": "CA1",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/267/EOL-media-851-164060-1.jpg/full.jpg,/images/267/EOL-media-509-20455432/full.jpg",
"FULL_PIC": "/images/267/EOL-media-542-4689369513/full.jpg",
"GENUS": "Carya",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "nut (large capsule), large drupe",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Hickory is a common name for trees composing the genus Carya, which includes around 18 species. Five or six species are native to China, Indochina, and India, as many as twelve are native to the United States, four are found in Mexico, and two to four are from Canada.",
"FULL_PIC_180x110": "new_images/267/EOL-media-542-4689369513/full_180x110.png",
"FULL_PIC_1024x768": "new_images/267/EOL-media-542-4689369513/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/267/EOL-media-851-164060-1.jpg/full_1024x768.png,new_images/267/EOL-media-509-20455432/full_1024x768.png"
},
{
"COMMON": "Chestnut (Castanea spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Castanea spp.",
"ID": "268",
"ITREECODE": "CA4",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/268/EOL-media-913-12984/full.jpg,/images/268/EOL-media-851-167420-2.jpg/full.jpg",
"FULL_PIC": "/images/268/EOL-media-913-116654/full.jpg",
"GENUS": "Castanea",
"BARK_TYPE": "ridges or furrowed",
"LEAF_SHAPE": "lanceolate, ovate, elliptic, obovate",
"LEAF_VEINS": "pinnate",
"LEAF_EDGES": "dentate, serrate",
"LEAF_TYPE": "palmately compound",
"TREE_SHAPE": "open-head irregular, globe, horizontal spreading",
"FRUIT_SEED": "nut (large capsule)",
"BARK_COLOR": "grey, brown, red, green",
"LEAF_COLOR": "yellow, green",
"LEAF_ARRANGEMENT": "alternate",
"LEAF_UNDERSIDE_COLOR": "yellow, green",
"LEAF_TEXTURE": "smooth, hairy, waxy, leathery",
"DESCRIPTION": "The Chestnut genus contains 7 species of deciduous trees that are within the beech family (Fagaceae). All of the species in genus Castanea produce burred fruit capsules which contain edible nuts.",
"FULL_PIC_180x110": "new_images/268/EOL-media-913-116654/full_180x110.png",
"FULL_PIC_1024x768": "new_images/268/EOL-media-913-116654/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/268/EOL-media-913-12984/full_1024x768.png,new_images/268/EOL-media-851-167420-2.jpg/full_1024x768.png"
},
{
"COMMON": "Golden Rain Tree (or Goldenrain 'Fastigiata')",
"TYPE": "broadleaf",
"SCIENTIFIC": "Koelreuteria paniculata 'Fastigiata'",
"ID": "269",
"ITREECODE": "KOPAFA",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "",
"FULL_PIC": "/missing_images/269/wikipedia/1280px-KoelreuteriaPaniculata5.jpg",
"GENUS": "Koelreuteria",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Native to eastern Asia, China and Korea, Koelreuteria paniculata 'Fastigiata' is a cultivar with a particularly narrow, columnar habit and handsome pinnate (feather-like) foliage. The leaves are pale green and turn a beautiful golden-yellow in a good, crisp autumn before falling.",
"FULL_PIC_180x110": "new_images/269/wikipedia/1280px-KoelreuteriaPaniculata5_180x110.png",
"FULL_PIC_1024x768": "new_images/269/wikipedia/1280px-KoelreuteriaPaniculata5_1024x768.png",
"THUMB_PIC_1024x768": ""
},
{
"COMMON": "Katsura tree (Cercidiphyllum spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Cercidiphyllum spp.",
"ID": "270",
"ITREECODE": "CE17",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/270/EOL-media-7-CalPhotos_0000%200000%200313%203769/full.jpg,/images/270/EOL-media-542-11327039696/full.jpg,/images/270/EOL-media-913-67612/full.jpg",
"FULL_PIC": "/images/270/EOL-media-542-34375017863/full.jpg",
"GENUS": "Cercidiphyllum",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "The katsura tree, native to Japan and China. It is a handsome ornamental tree planted widely for its broadly oval form; it grows up to 15 m (50 feet) tall in cultivation.",
"FULL_PIC_180x110": "new_images/270/EOL-media-542-34375017863/full_180x110.png",
"FULL_PIC_1024x768": "new_images/270/EOL-media-542-34375017863/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/270/EOL-media-7-CalPhotos_0000 0000 0313 3769/full_1024x768.png,new_images/270/EOL-media-542-11327039696/full_1024x768.png,new_images/270/EOL-media-913-67612/full_1024x768.png"
},
{
"COMMON": "Elm (Ulmus spp.)",
"TYPE": "broadleaf",
"SCIENTIFIC": "Ulmus spp.",
"ID": "271",
"ITREECODE": "ULS",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/271/EOL-media-913-23072/full.jpg",
"FULL_PIC": "/images/271/EOL-media-643-13145030/full.jpg",
"GENUS": "Ulmus",
"BARK_TYPE": "",
"LEAF_SHAPE": "",
"LEAF_VEINS": "",
"LEAF_EDGES": "",
"LEAF_TYPE": "",
"TREE_SHAPE": "",
"FRUIT_SEED": "",
"BARK_COLOR": "",
"LEAF_COLOR": "",
"LEAF_ARRANGEMENT": "",
"LEAF_UNDERSIDE_COLOR": "",
"LEAF_TEXTURE": "",
"DESCRIPTION": "Elms are deciduous and semi-deciduous trees comprising the flowering plant genus Ulmus in the plant family Ulmaceae",
"FULL_PIC_180x110": "new_images/271/EOL-media-643-13145030/full_180x110.png",
"FULL_PIC_1024x768": "new_images/271/EOL-media-643-13145030/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/271/EOL-media-913-23072/full_1024x768.png"
},
{
"COMMON": "Spruce (Picea spp.)",
"TYPE": "conifer",
"SCIENTIFIC": "Picea spp.",
"ID": "272",
"ITREECODE": "PI1",
"LEVEL": "easy",
"ITREECODE_APPROX": "n",
"THUMB_PIC": "/images/272/EOL-media-7-CalPhotos_0000 0000 1208 1025/full.jpg,/images/272/EOL-media-913-107887/full.jpg",
"FULL_PIC": "/images/272/EOL-media-542-5354359355/full.jpg",
"GENUS": "Picea",
"BARK_TYPE": "scaly",
"NEEDLE_TRAITS": "",
"NEEDLE_DIRECTION": "",
"TREE_SHAPE": "fastigiate, conical, symmetrical",
"CONE": "downward (female), ovoid or egg-shaped (female), green/purple/brown (female)",
"FASCICLE_NO": "",
"BARK_COLOR": "grey, brown",
"NEEDLE_COLOR": "blue, yellow",
"NEEDLE_ARRANGEMENT": "",
"DESCRIPTION": "The 'Spruce' genus (Picea), is a genus of about 35 species of coniferous evergreen trees from within the family Pinaceae. These trees are commonly found in northern temperate and boreal climates. Spruces tend to be large trees, ranging from about 60-200 ft (20 - 60 m) tall. Determining if a tree is a spruce is not difficult; however, specifying which species of Spruce the tree is can be considerably more challenging. In general, trees of this genus can be identified by the four-sided needles and the cones that hang downwards after pollination.",
"FULL_PIC_180x110": "new_images/272/EOL-media-542-5354359355/full_180x110.png",
"FULL_PIC_1024x768": "new_images/272/EOL-media-542-5354359355/full_1024x768.png",
"THUMB_PIC_1024x768": "new_images/272/EOL-media-7-CalPhotos_0000 0000 1208 1025/full_1024x768.png,new_images/272/EOL-media-913-107887/full_1024x768.png"
},
{
"COMMON": "Fir (Abies spp.)",
"TYPE": "conifer",