-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
102 lines (91 loc) · 5.86 KB
/
Copy pathabout.html
File metadata and controls
102 lines (91 loc) · 5.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About EVCs | Find My EVC</title>
<meta name="description" content="Learn about Ecological Vegetation Classes in Victoria and why they matter for ecological gardening and indigenous plant selection.">
<link rel="canonical" href="https://findmyevc.com/about.html">
<link rel="manifest" href="./manifest.json">
<meta name="theme-color" content="#3d4535">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/styles.css">
</head>
<body>
<nav class="main-nav">
<div class="nav-container">
<a href="./" class="logo">Find My EVC</a>
<button class="hamburger" id="hamburger" aria-label="Menu">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<div class="nav-modal" id="navModal">
<div class="nav-modal-content">
<button class="nav-close" id="navClose">×</button>
<ul class="nav-links">
<li><a href="./">Home</a></li>
<li><a href="./about.html">About EVCs</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="https://www.findmyecologicalgarden.com/" target="_blank" rel="noopener">Find My Ecological Garden →</a></li>
</ul>
</div>
</div>
<main class="main-content page-content">
<article class="content-article">
<h1>About Ecological Vegetation Classes</h1>
<section class="content-section">
<h2>What is an EVC?</h2>
<p>An Ecological Vegetation Class (EVC) is a standardised vegetation classification system used in Victoria. Each EVC represents a distinct native vegetation community characterised by its plant species composition, habitat structure, and ecological processes.</p>
<p>The EVC framework was developed by the Victorian Government to map and describe the state's diverse native vegetation. It provides a consistent language for discussing vegetation patterns across different bioregions.</p>
</section>
<section class="content-section">
<h2>Why EVCs matter for gardens</h2>
<p>Understanding your local EVC helps you select indigenous plants that would naturally occur in your area. These plants are adapted to local soil types, rainfall patterns, and ecological relationships.</p>
<p>By choosing plants from your EVC, you create habitat that supports local wildlife, contributes to ecological connectivity, and helps restore the indigenous character of your landscape.</p>
</section>
<section class="content-section">
<h2>How EVCs are mapped</h2>
<p>EVC mapping is based on vegetation surveys, satellite imagery, soil types, topography, and historical records. The Victorian Government maintains the authoritative EVC mapping dataset, which is regularly updated as new information becomes available.</p>
<p>EVC boundaries represent the best available ecological information, but they are inherently complex. Vegetation communities transition gradually across landscapes, and historical clearing has fragmented many remnant areas.</p>
</section>
<section class="content-section">
<h2>Understanding boundaries</h2>
<p>EVC boundaries are ecological approximations, not precise legal boundaries. At the edges of EVC zones, vegetation communities often intergrade or form mosaics. Your property may sit within a transitional area where multiple EVCs overlap.</p>
<p>The EVC identified for your address represents the most likely native vegetation community based on current mapping. For specific planting advice, consider consulting local ecological references or visiting nearby remnant vegetation.</p>
</section>
<section class="content-section">
<h2>Conservation status</h2>
<p>Many EVCs are listed as endangered, vulnerable, or depleted due to historical land clearing. Understanding the conservation status of your local EVC highlights the ecological importance of restoring indigenous vegetation in gardens and public spaces.</p>
</section>
<div class="cta-box">
<h3>Ready to find your EVC?</h3>
<p>Enter your address to discover your local vegetation community.</p>
<a href="./" class="btn-primary">Find My EVC</a>
</div>
</article>
</main>
<div class="gardener-badge">
<a href="https://www.gardenerandson.com.au/" target="_blank" rel="noopener">
<div class="badge-text">A Gardener & Son Project</div>
</a>
</div>
<footer class="footer">
<div class="footer-content">
<p class="acknowledgement">We acknowledge the Traditional Custodians of the lands on which we work and pay our respects to Elders past, present, and emerging. This site uses ecological data to support the restoration of indigenous plant communities on Country.</p>
<p class="footer-links">
<a href="./about.html">About</a>
<span>·</span>
<a href="./contact.html">Contact</a>
<span>·</span>
<a href="https://www.gardenerandson.com.au/" target="_blank" rel="noopener">Gardener & Son</a>
</p>
</div>
</footer>
<script src="./assets/app.js"></script>
</body>
</html>