-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsouth-california-chaparral.html
1265 lines (1232 loc) · 38.8 KB
/
south-california-chaparral.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>
<html>
<head>
<title>South California Chaparral</title>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://kit.fontawesome.com/c2d8b7b6a9.js" crossorigin="anonymous"></script>
<!--doccss-->
<style type="text/css">
.lst-kix_eduec9cxyllu-8 > li:before {
content: "\0025a0 ";
}
.lst-kix_4g9gqewwdd7w-2 > li:before {
content: "\0025a0 ";
}
.lst-kix_4g9gqewwdd7w-1 > li:before {
content: "\0025cb ";
}
.lst-kix_4g9gqewwdd7w-0 > li:before {
content: "\0025cf ";
}
.lst-kix_4g9gqewwdd7w-6 > li:before {
content: "\0025cf ";
}
.lst-kix_4g9gqewwdd7w-5 > li:before {
content: "\0025a0 ";
}
.lst-kix_4g9gqewwdd7w-7 > li:before {
content: "\0025cb ";
}
.lst-kix_eduec9cxyllu-2 > li:before {
content: "\0025a0 ";
}
.lst-kix_4g9gqewwdd7w-3 > li:before {
content: "\0025cf ";
}
.lst-kix_eduec9cxyllu-1 > li:before {
content: "\0025cb ";
}
.lst-kix_4g9gqewwdd7w-4 > li:before {
content: "\0025cb ";
}
.lst-kix_eduec9cxyllu-0 > li:before {
content: "\0025cf ";
}
.lst-kix_eduec9cxyllu-5 > li:before {
content: "\0025a0 ";
}
.lst-kix_eduec9cxyllu-7 > li:before {
content: "\0025cb ";
}
.lst-kix_eduec9cxyllu-6 > li:before {
content: "\0025cf ";
}
.lst-kix_xgrf0caqv27k-2 > li:before {
content: "\0025a0 ";
}
.lst-kix_eduec9cxyllu-3 > li:before {
content: "\0025cf ";
}
.lst-kix_xgrf0caqv27k-1 > li:before {
content: "\0025cb ";
}
.lst-kix_4g9gqewwdd7w-8 > li:before {
content: "\0025a0 ";
}
.lst-kix_eduec9cxyllu-4 > li:before {
content: "\0025cb ";
}
.lst-kix_xgrf0caqv27k-0 > li:before {
content: "\0025cf ";
}
.lst-kix_xgrf0caqv27k-5 > li:before {
content: "\0025a0 ";
}
.lst-kix_xgrf0caqv27k-7 > li:before {
content: "\0025cb ";
}
ul.lst-kix_4g9gqewwdd7w-3 {
list-style-type: none;
}
ul.lst-kix_4g9gqewwdd7w-2 {
list-style-type: none;
}
ul.lst-kix_4g9gqewwdd7w-1 {
list-style-type: none;
}
ul.lst-kix_4g9gqewwdd7w-0 {
list-style-type: none;
}
.lst-kix_xgrf0caqv27k-6 > li:before {
content: "\0025cf ";
}
ul.lst-kix_4g9gqewwdd7w-7 {
list-style-type: none;
}
ul.lst-kix_4g9gqewwdd7w-6 {
list-style-type: none;
}
ul.lst-kix_4g9gqewwdd7w-5 {
list-style-type: none;
}
ul.lst-kix_4g9gqewwdd7w-4 {
list-style-type: none;
}
.lst-kix_xgrf0caqv27k-3 > li:before {
content: "\0025cf ";
}
ul.lst-kix_4g9gqewwdd7w-8 {
list-style-type: none;
}
.lst-kix_xgrf0caqv27k-4 > li:before {
content: "\0025cb ";
}
.lst-kix_7bg6ruh90kux-3 > li:before {
content: "\0025cf ";
}
.lst-kix_7bg6ruh90kux-1 > li:before {
content: "\0025cb ";
}
.lst-kix_7bg6ruh90kux-2 > li:before {
content: "\0025a0 ";
}
.lst-kix_7bg6ruh90kux-0 > li:before {
content: "\0025cf ";
}
.lst-kix_xgrf0caqv27k-8 > li:before {
content: "\0025a0 ";
}
.lst-kix_7bg6ruh90kux-4 > li:before {
content: "\0025cb ";
}
.lst-kix_7bg6ruh90kux-5 > li:before {
content: "\0025a0 ";
}
.lst-kix_7bg6ruh90kux-6 > li:before {
content: "\0025cf ";
}
.lst-kix_x9jp9wibd50u-1 > li:before {
content: "\0025cb ";
}
.lst-kix_x9jp9wibd50u-2 > li:before {
content: "\0025a0 ";
}
.lst-kix_7bg6ruh90kux-7 > li:before {
content: "\0025cb ";
}
.lst-kix_7bg6ruh90kux-8 > li:before {
content: "\0025a0 ";
}
.lst-kix_x9jp9wibd50u-0 > li:before {
content: "\0025cf ";
}
ul.lst-kix_eduec9cxyllu-8 {
list-style-type: none;
}
.lst-kix_x9jp9wibd50u-5 > li:before {
content: "\0025a0 ";
}
.lst-kix_x9jp9wibd50u-6 > li:before {
content: "\0025cf ";
}
ul.lst-kix_eduec9cxyllu-7 {
list-style-type: none;
}
ul.lst-kix_eduec9cxyllu-4 {
list-style-type: none;
}
.lst-kix_x9jp9wibd50u-3 > li:before {
content: "\0025cf ";
}
.lst-kix_x9jp9wibd50u-7 > li:before {
content: "\0025cb ";
}
ul.lst-kix_eduec9cxyllu-3 {
list-style-type: none;
}
ul.lst-kix_eduec9cxyllu-6 {
list-style-type: none;
}
ul.lst-kix_eduec9cxyllu-5 {
list-style-type: none;
}
ul.lst-kix_eduec9cxyllu-0 {
list-style-type: none;
}
ul.lst-kix_7bg6ruh90kux-0 {
list-style-type: none;
}
ul.lst-kix_eduec9cxyllu-2 {
list-style-type: none;
}
ul.lst-kix_eduec9cxyllu-1 {
list-style-type: none;
}
ul.lst-kix_7bg6ruh90kux-3 {
list-style-type: none;
}
.lst-kix_x9jp9wibd50u-4 > li:before {
content: "\0025cb ";
}
ul.lst-kix_7bg6ruh90kux-4 {
list-style-type: none;
}
ul.lst-kix_7bg6ruh90kux-1 {
list-style-type: none;
}
ul.lst-kix_7bg6ruh90kux-2 {
list-style-type: none;
}
ul.lst-kix_7bg6ruh90kux-7 {
list-style-type: none;
}
ul.lst-kix_7bg6ruh90kux-8 {
list-style-type: none;
}
ul.lst-kix_7bg6ruh90kux-5 {
list-style-type: none;
}
ul.lst-kix_7bg6ruh90kux-6 {
list-style-type: none;
}
.lst-kix_x9jp9wibd50u-8 > li:before {
content: "\0025a0 ";
}
ul.lst-kix_xgrf0caqv27k-7 {
list-style-type: none;
}
ul.lst-kix_xgrf0caqv27k-8 {
list-style-type: none;
}
ul.lst-kix_xgrf0caqv27k-5 {
list-style-type: none;
}
ul.lst-kix_xgrf0caqv27k-6 {
list-style-type: none;
}
ul.lst-kix_xgrf0caqv27k-3 {
list-style-type: none;
}
ul.lst-kix_xgrf0caqv27k-4 {
list-style-type: none;
}
ul.lst-kix_xgrf0caqv27k-1 {
list-style-type: none;
}
ul.lst-kix_xgrf0caqv27k-2 {
list-style-type: none;
}
ul.lst-kix_xgrf0caqv27k-0 {
list-style-type: none;
}
ul.lst-kix_ykreuan2l9q3-5 {
list-style-type: none;
}
.lst-kix_ykreuan2l9q3-8 > li:before {
content: "\0025a0 ";
}
ul.lst-kix_ykreuan2l9q3-6 {
list-style-type: none;
}
.lst-kix_ykreuan2l9q3-7 > li:before {
content: "\0025cb ";
}
ul.lst-kix_ykreuan2l9q3-7 {
list-style-type: none;
}
ul.lst-kix_ykreuan2l9q3-8 {
list-style-type: none;
}
.lst-kix_ykreuan2l9q3-4 > li:before {
content: "\0025cb ";
}
.lst-kix_ykreuan2l9q3-5 > li:before {
content: "\0025a0 ";
}
ul.lst-kix_ykreuan2l9q3-0 {
list-style-type: none;
}
ul.lst-kix_ykreuan2l9q3-1 {
list-style-type: none;
}
.lst-kix_ykreuan2l9q3-6 > li:before {
content: "\0025cf ";
}
ul.lst-kix_ykreuan2l9q3-2 {
list-style-type: none;
}
li.li-bullet-0:before {
margin-left: -18pt;
white-space: nowrap;
display: inline-block;
min-width: 18pt;
}
ul.lst-kix_ykreuan2l9q3-3 {
list-style-type: none;
}
ul.lst-kix_ykreuan2l9q3-4 {
list-style-type: none;
}
.lst-kix_ykreuan2l9q3-0 > li:before {
content: "\0025cf ";
}
.lst-kix_ykreuan2l9q3-1 > li:before {
content: "\0025cb ";
}
ul.lst-kix_x9jp9wibd50u-7 {
list-style-type: none;
}
ul.lst-kix_x9jp9wibd50u-8 {
list-style-type: none;
}
ul.lst-kix_x9jp9wibd50u-5 {
list-style-type: none;
}
ul.lst-kix_x9jp9wibd50u-6 {
list-style-type: none;
}
ul.lst-kix_x9jp9wibd50u-3 {
list-style-type: none;
}
ul.lst-kix_x9jp9wibd50u-4 {
list-style-type: none;
}
ul.lst-kix_x9jp9wibd50u-1 {
list-style-type: none;
}
.lst-kix_ykreuan2l9q3-3 > li:before {
content: "\0025cf ";
}
ul.lst-kix_x9jp9wibd50u-2 {
list-style-type: none;
}
.lst-kix_ykreuan2l9q3-2 > li:before {
content: "\0025a0 ";
}
ul.lst-kix_x9jp9wibd50u-0 {
list-style-type: none;
}
ol {
max-width: 700pt;
margin: 0;
padding: 0;
}
table td,
table th {
padding: 0;
}
.c2 {
max-width: 700pt;
margin-left: 36pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: left;
height: 11pt;
}
.c9 {
max-width: 700pt;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Baloo Bhaina";
font-style: normal;
}
.c28 {
max-width: 700pt;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Arial";
font-style: normal;
}
.c0 {
max-width: 700pt;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 10pt;
font-family: "Baloo Bhaina";
font-style: normal;
}
.c4 {
max-width: 700pt;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 8pt;
font-family: "Baloo Bhaina";
font-style: normal;
}
.c15 {
max-width: 700pt;
margin-left: 36pt;
padding-top: 0pt;
padding-left: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
text-align: left;
}
.c1 {
max-width: 700pt;
margin-left: 36pt;
padding-top: 0pt;
padding-left: 0pt;
padding-bottom: 0pt;
line-height: 1;
text-align: left;
}
.c6 {
max-width: 700pt;
margin-left: 72pt;
padding-top: 0pt;
padding-left: 0pt;
padding-bottom: 0pt;
line-height: 1;
text-align: left;
}
.c14 {
max-width: 700pt;
margin-left: 36pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1;
text-align: left;
}
.c3 {
max-width: 700pt;
padding-top: 20pt;
padding-bottom: 6pt;
line-height: 1;
page-break-after: avoid;
text-align: left;
}
.c23 {
max-width: 700pt;
text-decoration: none;
vertical-align: baseline;
font-size: 26pt;
font-style: normal;
}
.c17 {
max-width: 700pt;
text-decoration: none;
vertical-align: baseline;
font-size: 20pt;
font-style: normal;
}
.c25 {
max-width: 700pt;
padding-top: 0pt;
padding-bottom: 3pt;
line-height: 1;
page-break-after: avoid;
text-align: center;
}
.c18 {
max-width: 700pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1;
page-break-after: avoid;
text-align: left;
}
.c27 {
max-width: 700pt;
text-decoration: none;
vertical-align: baseline;
font-size: 14pt;
font-style: normal;
}
.c19 {
max-width: 700pt;
text-decoration: none;
vertical-align: baseline;
font-size: 18pt;
font-style: normal;
}
.c12 {
max-width: 700pt;
text-decoration: none;
vertical-align: baseline;
font-size: 15pt;
font-style: normal;
}
.c5 {
max-width: 700pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1;
text-align: left;
height: 11pt;
}
.c8 {
max-width: 700pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
text-align: left;
height: 11pt;
}
.c20 {
max-width: 700pt;
text-decoration: none;
vertical-align: baseline;
font-size: 12pt;
font-style: normal;
}
.c26 {
max-width: 700pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1;
text-align: left;
}
.c24 {
max-width: 700pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
text-align: left;
}
.c11 {
max-width: 700pt;
padding: 72pt 72pt 72pt 72pt;
}
.c16 {
max-width: 700pt;
padding: 0;
margin: 0;
}
.c7 {
max-width: 700pt;
orphans: 2;
widows: 2;
}
.c10 {
max-width: 700pt;
font-weight: 400;
font-family: "Baloo Bhaina";
}
.c21 {
max-width: 700pt;
font-size: 8pt;
}
.c22 {
max-width: 700pt;
margin-left: 72pt;
}
.title {
max-width: 700pt;
padding-top: 0pt;
font-size: 26pt;
padding-bottom: 3pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left;
}
.subtitle {
max-width: 700pt;
padding-top: 0pt;
font-size: 15pt;
padding-bottom: 16pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left;
}
li {
max-width: 700pt;
font-size: 11pt;
}
p {
max-width: 700pt;
margin: 0;
font-size: 11pt;
}
h1 {
max-width: 700pt;
padding-top: 20pt;
font-size: 20pt;
padding-bottom: 6pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left;
}
h2 {
max-width: 700pt;
padding-top: 18pt;
font-size: 16pt;
padding-bottom: 6pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left;
}
h3 {
max-width: 700pt;
padding-top: 16pt;
font-size: 14pt;
padding-bottom: 4pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left;
}
h4 {
max-width: 700pt;
padding-top: 14pt;
font-size: 12pt;
padding-bottom: 4pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left;
}
h5 {
max-width: 700pt;
padding-top: 12pt;
font-size: 11pt;
padding-bottom: 4pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left;
}
h6 {
max-width: 700pt;
padding-top: 12pt;
font-size: 11pt;
padding-bottom: 4pt;
line-height: 1.15;
page-break-after: avoid;
font-style: italic;
orphans: 2;
widows: 2;
text-align: left;
}
</style>
<link
href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@600&display=swap"
rel="stylesheet"
/>
<style>
.w3-theme {color:#fff !important; background-color:#5c6275 !important}
.weewe {
color: #ffffff;
cursor: pointer;
font-size: 26px;
transition: all 0.2s ease-in-out;
background: none;
border: none;
}
.weewe:hover {
transform: scale(1.1);
color: black;
}
.button {
color: #ffffff;
border: 1px solid #ffffff;
background: #5c6275;
border-radius: 4px;
padding: 0 15px;
cursor: pointer;
height: 32px;
font-size: 14px;
transition: all 0.2s ease-in-out;
}
.button:hover {
transform: scale(1.1);
}
::-webkit-scrollbar {
width: 12px;
}
/* Track */
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
-webkit-border-radius: 10px;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.8);
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(255, 255, 255, 0.4);
}
* {
font-family: "Baloo 2", cursive !important;
color: #fff !important;
text-shadow: 0 0 7px #141414;
line-height: 1.6;
}
*:not(li) {
margin: auto !important;
}
body {
background: #5c6275 !important;
}
</style>
<!--pop up start-->
<style>
dialog {
position: fixed;
top: 50%;
transform: translate(0, -50%);
}
dialog::backdrop {
/* native */
background: hsla(215.14991590559399, 100%, 85%, 0.5);
cursor: pointer;
}
dialog + .backdrop {
/* polyfill */
background: hsla(215.14991590559399, 100%, 85%, 0.5);
cursor: pointer;
}
</style>
<!--Popup end-->
</head>
<body class="c11">
<p class="c7 c25 title" id="h.gle4muhjej3m">
<span class="c10 c23">South California Chaparral</span>
</p>
<h1 class="c7 c18" id="h.6jfur4kzw82p">
<span class="c19 c10">What it is</span>
</h1>
<h1 class="c3 c7" id="h.hr1rmkyn4jom">
<span class="c12 c10"
>The chaparral of Southern California is a terrestrial ecoregion
situated on the Western coast of North America in Southern California.
It is a hot and wet-winter, dry-summer climate region. Light in
the Chaparral biome is constant and bright. The temperature range is
between 30 and 100 F, the average temperature during the cold season is
64 F. Vegetation is composed of broad-leaved evergreen shrubs, bushes,
small trees usually less than 2.5 m (about 8 feet) tall, grasses,
chamise, and manzanita. It is home to many animals. It receives about
10-17 inches of precipitation a year and most of it comes in the winter.
There is a long period of dryness in the summer. This makes the
chaparral most vulnerable to fire in the late summer and fall. It has
thin and nutrient-poor soils. The soil of the biome is typically dry and
dusty, with little nutrients. Generally, chaparral is thought to occur
in thin, porous, and rocky soils that are relatively low in nitrogen,
potassium, and phosphorous. A total of 1,177 species are found on
Southern California Chaparral.</span
>
</h1>
<h1 class="c3 c7" id="h.shfv5b1j58rx">
<span class="c10 c19">Biotic and Abiotic Factors</span>
</h1>
<h1 class="c3 c7" id="h.v9ipqeltn8rh">
<span class="c10 c12"
>There are a lot of biotic and abiotic factors in this ecosystem and
some of them include:</span
>
</h1>
<ul class="c16 lst-kix_xgrf0caqv27k-0 start">
<li class="c1 li-bullet-0"><span class="c4">Abiotic</span></li>
</ul>
<ul class="c16 lst-kix_xgrf0caqv27k-1 start">
<li class="c6 li-bullet-0"><span class="c4">Rocks</span></li>
<li class="c6 li-bullet-0"><span class="c4">Sand</span></li>
<li class="c6 li-bullet-0">
<span class="c4">Small Streams and Rivers</span>
</li>
<li class="c6 li-bullet-0"><span class="c4">Sun Light</span></li>
<li class="c6 li-bullet-0">
<span class="c4">hot and dry summers with cool and moist winters</span>
</li>
<li class="c6 li-bullet-0">
<span class="c4">thin and nutrient-poor soils </span>
</li>
<li class="c6 li-bullet-0"><span class="c4">periodic fires</span></li>
<li class="c6 li-bullet-0">
<span class="c4">various mountain ranges and/or hills</span>
</li>
<li class="c6 li-bullet-0"><span class="c4">water</span></li>
<li class="c6 li-bullet-0"><span class="c4">drought conditions</span></li>
</ul>
<p class="c5 c22"><span class="c4"></span></p>
<ul class="c16 lst-kix_xgrf0caqv27k-0">
<li class="c1 li-bullet-0"><span class="c4">Biotic</span></li>
</ul>
<ul class="c16 lst-kix_xgrf0caqv27k-1 start">
<li class="c6 li-bullet-0"><span class="c4">Shrubs</span></li>
<li class="c6 li-bullet-0">
<span class="c10 c13 c21">chamise and manzanita</span
><span class="c4">.</span>
</li>
<li class="c6 li-bullet-0"><span class="c4">Sonoma Chipmunk</span></li>
<li class="c6 li-bullet-0"><span class="c4">Scrub-Jays</span></li>
<li class="c6 li-bullet-0"><span class="c4">Acorn Woodpeckers</span></li>
<li class="c6 li-bullet-0"><span class="c4">California Condor</span></li>
<li class="c6 li-bullet-0"><span class="c4">Common Sagebrush</span></li>
<li class="c6 li-bullet-0">
<span class="c4">California Blue Oak</span>
</li>
<li class="c6 li-bullet-0">
<span class="c4">Red Diamond Rattlesnake</span>
</li>
<li class="c6 li-bullet-0"><span class="c4">Spotted Skunk</span></li>
<li class="c6 li-bullet-0"><span class="c4">Roadrunners</span></li>
<li class="c6 li-bullet-0"><span class="c4">Whiptail Lizards</span></li>
<li class="c6 li-bullet-0"><span class="c4">Pumas</span></li>
<li class="c6 li-bullet-0"><span class="c4">Coyote</span></li>
<li class="c6 li-bullet-0">
<span class="c4"
>Poison oak, Yucca Wiple, toyon, chamise, trees, and cacti.
</span>
</li>
</ul>
<h1 class="c3 c7" id="h.f9w9fkqwrmki">
<span class="c9"
>Together, biotic and abiotic factors make up an ecosystem. To survive,
biotic factors need abiotic factors. Passing the food materials and
energy are some of the major interactions between these factors. These
special relationship between the biotic and abiotic factors should
create a balance in the biome. The sun and the amount of rain are some
of the most important abiotic factors in the Southern California
Chaparral. The more sun and the limited amount of rain affect the biome
by creating conditions that are triggering fires more and more often.
Let's look at the fires, they can be natural as a result of
lightning striking in the area. However, there are times when they are
started by people being careless. Occasionally those fires may be set
intentionally too. While it can be hard to get the fires under control,
studies show they really are an essential part of controlling the
balance of living things in this particular biome. Many of the plants
found in the chaparral biome have leaves that are made from highly
flammable materials. That is why the fires are able to spread so quickly
rather than just from the dry conditions. Also, these plants have the
ability to withstand fires. They have heavy bark and deep roots so it
isn’t long after the fire that they are able to thrive again. Even
plants with seeds have become highly adaptive to chaparral biome fires.
Some of these plants only will spout after the dormant seeds have been
touched by fire. This is a great example of how the living elements of a
biome are able to fit very well with what they have to work with.
Because of the fires animals have adapted to this sparse and rough
terrain. Animals generally have to be nocturnal in order to avoid the
intense heat in the day. Abiotic factors affect the ability of organisms
to survive and reproduce. Abiotic limiting factors restrict the growth
of populations. They help determine the types and numbers of organisms
able to exist within an environment. Biotic factors are living things
that directly or indirectly affect organisms within an environment. This
includes the organisms themselves, other organisms, interactions between
living organisms, and even their waste. Other biotic factors include
parasitism, disease, and predation (the act of one animal eating
another).</span
>
</h1>
<p class="c5 c7"><span class="c9"></span></p>
<p class="c5 c7"><span class="c9"></span></p>
<p class="c5 c7"><span class="c9"></span></p>
<p class="c5 c7"><span class="c9"></span></p>
<h1 class="c3 c7" id="h.8dfl0mwxaa6y">
<span class="c19 c10">Ecosystem Services </span>
</h1>
<h1 class="c3 c7" id="h.shbu7yxy9cx0">
<span class="c10 c27"
>Ecosystem services are outputs, conditions, or processes of natural
systems that directly or indirectly benefit humans or enhance social
welfare.</span
>
</h1>
<p class="c5 c7"><span class="c9"></span></p>
<ul class="c16 lst-kix_eduec9cxyllu-0 start">
<li class="c1 li-bullet-0">
<span class="c20 c10"
>Chaparral provides physical ecosystem services that aid in flood
hazard reduction, sediment retention, and the supply of water as well
as</span
>
</li>
</ul>
<p class="c14">
<span class="c20 c10"
>protecting habitat for endangered species and soil quality.</span
>
</p>
<ul class="c16 lst-kix_eduec9cxyllu-0">
<li class="c1 li-bullet-0">
<span class="c20 c10">Chaparral ecosystems provide many services,</span>
</li>
</ul>
<p class="c14">
<span class="c20 c10"
> such as the stabilization of steep slopes,
</span>
</p>
<ul class="c16 lst-kix_ykreuan2l9q3-0 start">
<li class="c1 li-bullet-0">
<span class="c20 c10">Filtration of drinking water</span>
</li>
<li class="c1 li-bullet-0">
<span class="c20 c10">Myriad recreational opportunities</span>
</li>
</ul>
<ul class="c16 lst-kix_7bg6ruh90kux-0 start">
<li class="c1 li-bullet-0">
<span class="c20 c10"
> They also beautify the landscape for many millions
</span>
</li>
</ul>
<p class="c26">
<span class="c20 c10"
> of California
inhabitants and visitors</span
>
</p>
<p class="c5"><span class="c20 c10"></span></p>
<p class="c5"><span class="c20 c10"></span></p>
<p class="c5"><span class="c20 c10"></span></p>
<p class="c5"><span class="c20 c10"></span></p>
<p class="c5"><span class="c10 c20"></span></p>
<p class="c5"><span class="c20 c10"></span></p>
<p class="c5"><span class="c20 c10"></span></p>
<p class="c5"><span class="c20 c10"></span></p>
<p class="c5"><span class="c20 c10"></span></p>
<h1 class="c3" id="h.wtbqbtagoz15">
<span class="c17 c10">This project</span>
</h1>
<p class="c24 c7">
<span class="c9"
>In this project, I will be addressing the habitat loss issue. Many
problems destroy habitats for species to live in. Some of these problems
are:</span
>
</p>
<p class="c8 c7"><span class="c0"></span></p>
<ul class="c16 lst-kix_4g9gqewwdd7w-0 start">
<li class="c15 c7 li-bullet-0">
<span class="c0"
>Wildfires have been burning many habitats for animals, burning down
bid areas covered with grasses, trees, and bushes. When the fires are
extensive and often repeated animals are left with no shelter and
food, and water supplies.</span
>
</li>
</ul>
<p class="c2"><span class="c0"></span></p>
<ul class="c16 lst-kix_4g9gqewwdd7w-0">
<li class="c15 c7 li-bullet-0">
<span class="c0"
>Another factor is human development, urbanizing areas that are either
too close to the South California Chaparral, either is overlapping
some of it. This leads to leaving animals without shelter or food
supplies as well. Stealing these areas from their inhabitants is a big
limiting factor. Between 1970 and 1990, the size of the Los Angeles
metropolitan area increased by over 1,000 square kilometers, metro San
Diego expanded by almost 800 square kilometers.</span
>
</li>
</ul>
<p class="c2"><span class="c0"></span></p>
<ul class="c16 lst-kix_4g9gqewwdd7w-0">
<li class="c7 c15 li-bullet-0">
<span class="c0"
>Air pollution and water pollution can affect the health of all biotic
factors both animals and plants. Contaminating water sources could
minimize the population of different species or even kill inhabitants
in certain areas. It can also lead to soil contamination for longer
periods of time.</span
>
</li>
</ul>
<p class="c2"><span class="c0"></span></p>