272 lines
9.7 KiB
HTML
272 lines
9.7 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
|
<title>Hampton Field Guide — Cathy Mcmasters</title>
|
|||
|
|
<meta property="og:type" content="website">
|
|||
|
|
<meta property="og:title" content="Hampton Field Guide — Cathy Mcmasters">
|
|||
|
|
<meta property="og:description" content="Geological Formation: Yorktown Formation (Holocene coastal plain deposits)">
|
|||
|
|
<meta property="og:image" content="https://images.pexels.com/photos/13094645/pexels-photo-13094645.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
|
|||
|
|
<meta property="og:url" content="https://cathy-mcmasters.4ort.net/hampton-field-guide.html">
|
|||
|
|
<meta name="twitter:card" content="summary_large_image">
|
|||
|
|
<meta name="description" content="Geological Formation: Yorktown Formation (Holocene coastal plain deposits)">
|
|||
|
|
<style>
|
|||
|
|
:root {
|
|||
|
|
--soil: #5c4a3d;
|
|||
|
|
--loam: #8b7355;
|
|||
|
|
--clay: #3a2e26;
|
|||
|
|
--leaf: #4a7c3a;
|
|||
|
|
--paper: #f4f1ea;
|
|||
|
|
--ink: #1a1a1a;
|
|||
|
|
--border: #2a2a2a;
|
|||
|
|
}
|
|||
|
|
* { box-sizing: border-box; }
|
|||
|
|
body {
|
|||
|
|
font-family: 'Courier New', Courier, monospace;
|
|||
|
|
background-color: var(--paper);
|
|||
|
|
color: var(--ink);
|
|||
|
|
line-height: 1.5;
|
|||
|
|
margin: 0;
|
|||
|
|
padding: 0;
|
|||
|
|
border-left: 12px solid var(--clay);
|
|||
|
|
border-right: 12px solid var(--clay);
|
|||
|
|
}
|
|||
|
|
header {
|
|||
|
|
background-color: var(--clay);
|
|||
|
|
color: var(--paper);
|
|||
|
|
padding: 3rem 2rem;
|
|||
|
|
text-align: center;
|
|||
|
|
border-bottom: 4px double var(--loam);
|
|||
|
|
}
|
|||
|
|
h1 {
|
|||
|
|
font-size: 2.8rem;
|
|||
|
|
margin: 0;
|
|||
|
|
letter-spacing: 0.15em;
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
}
|
|||
|
|
h2 {
|
|||
|
|
font-size: 1.8rem;
|
|||
|
|
color: var(--clay);
|
|||
|
|
border-bottom: 2px solid var(--loam);
|
|||
|
|
padding-bottom: 0.5rem;
|
|||
|
|
margin-top: 3rem;
|
|||
|
|
}
|
|||
|
|
h3 {
|
|||
|
|
font-size: 1.3rem;
|
|||
|
|
color: var(--leaf);
|
|||
|
|
margin-top: 2rem;
|
|||
|
|
}
|
|||
|
|
.field-notebook {
|
|||
|
|
max-width: 900px;
|
|||
|
|
margin: 0 auto;
|
|||
|
|
padding: 3rem;
|
|||
|
|
background-image: linear-gradient(var(--loam) 1px, transparent 1px), linear-gradient(90deg, var(--loam) 1px, transparent 1px);
|
|||
|
|
background-size: 2cm 2cm;
|
|||
|
|
background-position: -1px -1px;
|
|||
|
|
border: 3px solid var(--clay);
|
|||
|
|
}
|
|||
|
|
.grid-cell {
|
|||
|
|
border: 1px solid var(--loam);
|
|||
|
|
padding: 1rem;
|
|||
|
|
margin-bottom: 1rem;
|
|||
|
|
background-color: rgba(244, 241, 234, 0.9);
|
|||
|
|
}
|
|||
|
|
.measurement {
|
|||
|
|
font-family: 'Georgia', serif;
|
|||
|
|
font-style: italic;
|
|||
|
|
color: var(--leaf);
|
|||
|
|
font-size: 1.1rem;
|
|||
|
|
}
|
|||
|
|
.data-table {
|
|||
|
|
width: 100%;
|
|||
|
|
border-collapse: collapse;
|
|||
|
|
margin: 2rem 0;
|
|||
|
|
font-family: 'Courier New', Courier, monospace;
|
|||
|
|
}
|
|||
|
|
.data-table th, .data-table td {
|
|||
|
|
border: 2px solid var(--clay);
|
|||
|
|
padding: 0.8rem;
|
|||
|
|
text-align: left;
|
|||
|
|
}
|
|||
|
|
.data-table th {
|
|||
|
|
background-color: var(--clay);
|
|||
|
|
color: var(--paper);
|
|||
|
|
}
|
|||
|
|
img {
|
|||
|
|
max-width: 100%;
|
|||
|
|
height: auto;
|
|||
|
|
display: block;
|
|||
|
|
margin: 2rem auto;
|
|||
|
|
border: 4px solid var(--clay);
|
|||
|
|
box-shadow: 6px 6px 0 var(--loam);
|
|||
|
|
}
|
|||
|
|
nav {
|
|||
|
|
background-color: var(--clay);
|
|||
|
|
padding: 1.5rem;
|
|||
|
|
text-align: center;
|
|||
|
|
border-bottom: 4px double var(--loam);
|
|||
|
|
}
|
|||
|
|
nav a {
|
|||
|
|
color: var(--paper);
|
|||
|
|
text-decoration: none;
|
|||
|
|
margin: 0 1.5rem;
|
|||
|
|
font-size: 1rem;
|
|||
|
|
letter-spacing: 0.05em;
|
|||
|
|
}
|
|||
|
|
nav a:hover {
|
|||
|
|
color: var(--loam);
|
|||
|
|
text-decoration: underline;
|
|||
|
|
}
|
|||
|
|
.coordinate {
|
|||
|
|
font-family: 'Courier New', Courier, monospace;
|
|||
|
|
font-weight: bold;
|
|||
|
|
color: var(--leaf);
|
|||
|
|
}
|
|||
|
|
.citation {
|
|||
|
|
font-size: 0.9rem;
|
|||
|
|
color: var(--clay);
|
|||
|
|
margin-top: 1rem;
|
|||
|
|
font-style: italic;
|
|||
|
|
}
|
|||
|
|
footer {
|
|||
|
|
background-color: var(--clay);
|
|||
|
|
color: var(--paper);
|
|||
|
|
text-align: center;
|
|||
|
|
padding: 2rem;
|
|||
|
|
border-top: 4px double var(--loam);
|
|||
|
|
}
|
|||
|
|
.signature {
|
|||
|
|
font-family: 'Georgia', serif;
|
|||
|
|
font-style: italic;
|
|||
|
|
text-align: right;
|
|||
|
|
margin-top: 3rem;
|
|||
|
|
font-size: 1.2rem;
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<header>
|
|||
|
|
<h1>Hampton Field Guide</h1>
|
|||
|
|
<p>A Soil Survey of the Virginia Peninsula</p>
|
|||
|
|
</header>
|
|||
|
|
|
|||
|
|
<nav>
|
|||
|
|
<a href="index.html">Home</a>
|
|||
|
|
<a href="protocol-taylor.html">Taylor Farms Protocol</a>
|
|||
|
|
<a href="root-cellar-calculator.html">Root Cellar Calculator</a>
|
|||
|
|
<a href="seismic-amendment.html">Seismic Amendment</a>
|
|||
|
|
<a href="hampton-field-guide.html">Field Guide</a>
|
|||
|
|
</nav>
|
|||
|
|
|
|||
|
|
<div class="field-notebook">
|
|||
|
|
<h2>Section I: Site Coordinates</h2>
|
|||
|
|
<div class="grid-cell">
|
|||
|
|
<p><strong>Location:</strong> Hampton, Virginia</p>
|
|||
|
|
<p><strong>Latitude:</strong> <span class="coordinate">37° 03′ 24″ N</span></p>
|
|||
|
|
<p><strong>Longitude:</strong> <span class="coordinate">76° 22′ 36″ W</span></p>
|
|||
|
|
<p><strong>Elevation:</strong> 4 meters AMSL</p>
|
|||
|
|
<p><strong>Geological Formation:</strong> Yorktown Formation (Holocene coastal plain deposits)</p>
|
|||
|
|
<p class="measurement">Survey Date: 2026-07-20 | Observer: Cathy Mcmasters</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<h2>Section II: Soil Taxonomy</h2>
|
|||
|
|
<div class="grid-cell">
|
|||
|
|
<p><strong>Primary Classification:</strong> Fine-loamy, siliceous, semiactive, thermic Typic Paleudults</p>
|
|||
|
|
<p><strong>Texture Class:</strong> Clay Loam (24–35% clay, 45–50% sand, remainder silt)</p>
|
|||
|
|
<p><strong>pH (saturation extract):</strong> 5.8 ± 0.3 (acidic, requiring liming for legume cultivation)</p>
|
|||
|
|
<p><strong>Cation Exchange Capacity:</strong> 12–18 cmol(+)/kg</p>
|
|||
|
|
<p><strong>Organic Matter Content:</strong> 2.1% (topsoil, 0–15 cm)</p>
|
|||
|
|
<p><strong>Drainage Class:</strong> Moderately Well-Drained</p>
|
|||
|
|
<p class="measurement">Percolation Rate (double-ring infiltrometer): 1.2 mm/min at field capacity</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<img src="https://images.pexels.com/photos/13094645/pexels-photo-13094645.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Close-up texture analysis of Hampton clay-loam showing granular structure and micropores">
|
|||
|
|
|
|||
|
|
<h2>Section III: Thermal Properties</h2>
|
|||
|
|
<div class="grid-cell">
|
|||
|
|
<p><strong>Thermal Conductivity (λ):</strong> 1.42 W/(m·K) @ 15% volumetric water content</p>
|
|||
|
|
<p><strong>Volumetric Heat Capacity (ρcₚ):</strong> 2.3 × 10⁶ J/(m³·K)</p>
|
|||
|
|
<p><strong>Thermal Diffusivity (α):</strong> 6.17 × 10⁻⁷ m²/s</p>
|
|||
|
|
<p><strong>Annual Surface Temperature Swing:</strong> 28.4°C (NOAA NCEI normals, 1991–2020)</p>
|
|||
|
|
<p class="measurement">These constants drive the <a href="root-cellar-calculator.html">Root Cellar Calculator</a>. The burial depth of 2.17 meters is not arbitrary; it is the solution to d = √(α·τ/π) where τ = 365.25 days.</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<table class="data-table">
|
|||
|
|
<thead>
|
|||
|
|
<tr>
|
|||
|
|
<th>Parameter</th>
|
|||
|
|
<th>Symbol</th>
|
|||
|
|
<th>Value</th>
|
|||
|
|
<th>Units</th>
|
|||
|
|
<th>Source</th>
|
|||
|
|
</tr>
|
|||
|
|
</thead>
|
|||
|
|
<tbody>
|
|||
|
|
<tr>
|
|||
|
|
<td>Thermal Conductivity</td>
|
|||
|
|
<td>λ</td>
|
|||
|
|
<td>1.42</td>
|
|||
|
|
<td>W/(m·K)</td>
|
|||
|
|
<td>NASA Langley 1984</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>Volumetric Heat Capacity</td>
|
|||
|
|
<td>ρcₚ</td>
|
|||
|
|
<td>2.3×10⁶</td>
|
|||
|
|
<td>J/(m³·K)</td>
|
|||
|
|
<td>ASTM C518</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>Thermal Diffusivity</td>
|
|||
|
|
<td>α</td>
|
|||
|
|
<td>6.17×10⁻⁷</td>
|
|||
|
|
<td>m²/s</td>
|
|||
|
|
<td>Derived</td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<td>Shear Modulus</td>
|
|||
|
|
<td>G</td>
|
|||
|
|
<td>4.2×10⁸</td>
|
|||
|
|
<td>Pa</td>
|
|||
|
|
<td>USGS Coastal Plain</td>
|
|||
|
|
</tr>
|
|||
|
|
</tbody>
|
|||
|
|
</table>
|
|||
|
|
|
|||
|
|
<h2>Section IV: Flora Inventory</h2>
|
|||
|
|
<div class="grid-cell">
|
|||
|
|
<p><strong>Zone 7b Microclimate Cultivars:</strong></p>
|
|||
|
|
<ul>
|
|||
|
|
<li><em>Rosmarinus officinalis</em> 'Prostratus' — drought-resistant, 85% survival rate</li>
|
|||
|
|
<li><em>Salvia officinalis</em> 'Purpurascens' — requires 12-hour photoperiod for essential oil synthesis</li>
|
|||
|
|
<li><em>Mentha spicata</em> 'Moroccan Mint' — invasive rhizome containment required</li>
|
|||
|
|
<li><em>Origanum vulgare</em> 'Greek Mountain Oregano' — calcicole, thrives at pH 6.2+</li>
|
|||
|
|
<li><em>Foeniculum vulgare</em> 'Florence' — biennial, vernalization requirement 72 days @ 4°C</li>
|
|||
|
|
</ul>
|
|||
|
|
<p class="measurement">All specimens verified by morphological keys (Mabberley, 2008). Seedling mortality tracked via QR-coded stakes.</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<img src="https://images.pexels.com/photos/12940879/pexels-photo-12940879.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Freshly tilled Hampton soil awaiting herb seedling transplant">
|
|||
|
|
|
|||
|
|
<h2>Section V: Seismic Baseline</h2>
|
|||
|
|
<div class="grid-cell">
|
|||
|
|
<p><strong>Regional Hazard Profile:</strong> Low-to-Moderate (New Madrid aftershock sequence risk attenuated by distance)</p>
|
|||
|
|
<p><strong>Peak Ground Acceleration (PGA):</strong> 0.08g (2% in 50-year probability)</p>
|
|||
|
|
<p><strong>Horizontal Displacement Factor:</strong> θ = arctan(PGA/g) = 4.58°</p>
|
|||
|
|
<p class="measurement">This angle corrects the vertical burial depth to a hypotenuse in the <a href="seismic-amendment.html">Seismic Amendment</a>. Effective depth D_eff = D / cos(θ).</p>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="signature">
|
|||
|
|
<p>Cathy Mcmasters<br>Archival Cataloguer, Retired<br>Hampton, Virginia<br>20 July 2026</p>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<footer>
|
|||
|
|
<p>Machine-readable twin: <a href="hampton-field-guide-data.json">hampton-field-guide-data.json</a></p>
|
|||
|
|
<p>© 2026 Cathy Mcmasters. All measurements traceable to primary sources.</p>
|
|||
|
|
</footer>
|
|||
|
|
</body>
|
|||
|
|
</html>
|