Skip to content

Instantly share code, notes, and snippets.

@zsarge
Created May 4, 2025 05:28
Show Gist options
  • Save zsarge/1811b9ce6cc230c054f71d19ad6c969f to your computer and use it in GitHub Desktop.
Save zsarge/1811b9ce6cc230c054f71d19ad6c969f to your computer and use it in GitHub Desktop.
KML List of all Firetowers in USA
#!/usr/bin/env python3
"""
This script reads from "urls.txt", which is assumed to be the list of
firetowers from http://nhlr.org/.
From there, it parses all of the webpages, and builds up a "firetowers.kml" file,
which contains the points from the urls found.
Estimated runtime: 15 to 30 minutes, depending on the time slept.
This list of firetowers can be imported into https://mymaps.google.com, or other
mapping software.
"""
import sys
import requests
from bs4 import BeautifulSoup
import pandas as pd
import simplekml
from tqdm import tqdm # for progress bar
import time
# bigger is kinder to the server
SLEEP_DURATION = 0.1
def fetch_html(url: str) -> str:
"""Download the HTML content of the given URL."""
resp = requests.get(url)
resp.raise_for_status()
return resp.text
def extract_table_from_id(html: str, element_id: str = "tabs-about") -> pd.DataFrame:
"""
Parse the HTML, find the element with the given id,
locate the first <table> inside it, and return it as a DataFrame.
"""
soup = BeautifulSoup(html, "lxml")
container = soup.find(id=element_id)
if container is None:
raise ValueError(f"No element with id '{element_id}' found.")
table = container.find("table")
if table is None:
raise ValueError(f"No <table> found inside element with id '{element_id}'.")
# Read the HTML of that table into pandas
df_list = pd.read_html(str(table))
if not df_list:
raise ValueError("pd.read_html could not parse any tables.")
return df_list[0]
def get_gps_coordinates(given: str) -> (float, float):
print(f"starting {given=}")
"""
Returns just the GPS coordinates for the firetower
"""
assert "Google Maps" in given # assert using template for website
lines = given.split(" ")
assert len(lines) == 3
lat_dir, lat_val, lon_dir, lon_val = lines[2].split(" ")
assert lat_dir in "NS" and lon_dir in "EW"
lat_val = lat_val.replace("°", "")
lon_val = lon_val.replace("°", "")
lat = float(lat_val) * (1 if lat_dir.upper() == 'N' else -1)
lon = float(lon_val) * (1 if lon_dir.upper() == 'E' else -1)
return lon, lat
def main():
kml = simplekml.Kml()
errored_urls = []
with open("urls.txt") as f:
for url in tqdm(f.readlines()):
url = url.strip()
try:
html = fetch_html(url)
soup = BeautifulSoup(html, "lxml")
title_element = soup.find(id="pageTitle").get_text(strip=True)
assert len(title_element) > 0
df = extract_table_from_id(html, "tabs-about")
point = kml.newpoint(name=title_element)
found = df[df[1].str.contains("view using Google Maps")]
raw_str = found[1].iloc[0]
coords = get_gps_coordinates(raw_str)
point.coords = [coords]
begin = "<![CDATA["
end = "]]>"
description = begin + f'<a href="{url}">{url}</a><br>' + df.to_html(index=False) + end
point.description = description
point.atomlink = url
except Exception as e:
print(f"{url=}")
print(f"Error: {e}", file=sys.stderr)
errored_urls.append(url)
finally:
time.sleep(SLEEP_DURATION)
kml.save("firetowers.kml")
print(f"{errored_urls = }")
if __name__ == "__main__":
main()
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document id="1">
<Placemark id="3">
<name>Punta Gorda Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/punta-gorda-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/punta-gorda-lookout-tower/">http://nhlr.org/lookouts/us/fl/punta-gorda-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1783, FL 28 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 13, 2024</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Charlotte County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 26° 50.129' W 081° 58.346' (view using Google Maps) N 26° 50' 08" W 081° 58' 21" N 26.835488° W 081.972433°</td>
</tr>
<tr>
<td>Elevation</td>
<td>31 ft (9 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Forest Service - Punta Gorda Forestry Station</td>
</tr>
</tbody>
</table>]]></description>
<Point id="2">
<coordinates>-81.972433,26.835488,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="5">
<name>Abbeville Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/abbeville-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/abbeville-lookout-tower/">http://nhlr.org/lookouts/us/al/abbeville-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 844, AL 23 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 2, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Henry County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 31° 36.527' W 085° 15.662' (view using Google Maps) N 31° 36' 32" W 085° 15' 40" N 31.608780° W 085.261030°</td>
</tr>
<tr>
<td>Elevation</td>
<td>496 ft (151 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>George &amp; Rebecca Taylor</td>
</tr>
<tr>
<td>Cooperators</td>
<td>George &amp; Rebecca Taylor</td>
</tr>
</tbody>
</table>]]></description>
<Point id="4">
<coordinates>-85.26103,31.60878,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="7">
<name>Acker Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/acker-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/acker-rock-lookout/">http://nhlr.org/lookouts/us/or/acker-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 355, OR 41 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 2000</td>
</tr>
<tr>
<td>Location</td>
<td>Umpqua National Forest Douglas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 03.118' W 122° 38.767' (view using Google Maps) N 43° 03' 07" W 122° 38' 46" N 43.051960° W 122.646124°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,974 ft (1,211 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1964</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Tiller Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="6">
<coordinates>-122.646124,43.05196,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="9">
<name>Acushnet Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/acushnet-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/acushnet-fire-tower/">http://nhlr.org/lookouts/us/ma/acushnet-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 558, MA 8 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 2, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Bristol County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 42.050' W 070° 53.017' (view using Google Maps) N 41° 42' 03" W 070° 53' 01" N 41.700830° W 070.883610°</td>
</tr>
<tr>
<td>Elevation</td>
<td>142 ft (43 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1937</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 3</td>
</tr>
</tbody>
</table>]]></description>
<Point id="8">
<coordinates>-70.88361,41.70083,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="11">
<name>Adirondack History Museum Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/adirondack-history-museum-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/adirondack-history-museum-fire-tower/">http://nhlr.org/lookouts/us/ny/adirondack-history-museum-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1596, NY 48 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Essex County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 12.910' W 073° 35.475' (view using Google Maps) N 44° 12' 55" W 073° 35' 28" N 44.215172° W 073.591246°</td>
</tr>
<tr>
<td>Elevation</td>
<td>594 ft (181 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1990s</td>
</tr>
<tr>
<td>Administered by</td>
<td>Adirondack History Museum</td>
</tr>
</tbody>
</table>]]></description>
<Point id="10">
<coordinates>-73.591246,44.215172,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="13">
<name>Aeneas Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/aeneas-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/aeneas-lookout/">http://nhlr.org/lookouts/us/wa/aeneas-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 118, WA 10 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 1, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Washington Dept. of Natural Resources - Northeast Division Okanogan County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 44.581' W 119° 37.330' (view using Google Maps) N 48° 44' 35" W 119° 37' 20" N 48.743015° W 119.622164°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,099 ft (1,554 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1980</td>
</tr>
<tr>
<td>Administered by</td>
<td>Washington Dept. of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Washington Dept. of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="12">
<coordinates>-119.622164,48.743015,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="15">
<name>Agawam Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/agawam-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/agawam-fire-tower/">http://nhlr.org/lookouts/us/ma/agawam-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 561, MA 11 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 30, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Agawam Hamden County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 05.050' W 072° 42.300' (view using Google Maps) N 42° 05' 03" W 072° 42' 18" N 42.084170° W 072.705000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>580 ft (177 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1959</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 11</td>
</tr>
</tbody>
</table>]]></description>
<Point id="14">
<coordinates>-72.705,42.08417,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="17">
<name>Aimwell Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/aimwell-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/aimwell-fire-tower/">http://nhlr.org/lookouts/us/al/aimwell-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 894, AL 52 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 24, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Marengo County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 08.760' W 087° 54.741' (view using Google Maps) N 32° 08' 46" W 087° 54' 44" N 32.146000° W 087.912350°</td>
</tr>
<tr>
<td>Elevation</td>
<td>305 ft (93 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1951</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="16">
<coordinates>-87.91235,32.146,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="19">
<name>Airey Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/airey-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/airey-lookout-tower/">http://nhlr.org/lookouts/us/ms/airey-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 523, MS 3 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Judith Henry, District Ranger, De Soto RD</td>
</tr>
<tr>
<td>Location</td>
<td>De Soto National Forest Stone County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 30° 41.361' W 089° 03.835' (view using Google Maps) N 30° 41' 22" W 089° 03' 50" N 30.689350° W 089.063920°</td>
</tr>
<tr>
<td>Elevation</td>
<td>202 ft (62 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>De Soto Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="18">
<coordinates>-89.06392,30.68935,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="21">
<name>Aiton Heights Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mn/aiton-heights-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/aiton-heights-fire-tower/">http://nhlr.org/lookouts/us/mn/aiton-heights-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 548, MN 8 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 12, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Unknown</td>
</tr>
<tr>
<td>Location</td>
<td>Itasca State Park Clearwater County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 11.160' W 095° 11.280' (view using Google Maps) N 47° 11' 10" W 095° 11' 17" N 47.186000° W 095.188000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,662 ft (507 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Dept. of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Minnesota Dept. of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="20">
<coordinates>-95.188,47.186,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="23">
<name>Albert Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nc/albert-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/albert-mountain-lookout/">http://nhlr.org/lookouts/us/nc/albert-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 70, NC 2 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Joe Nicholson, Wayah R.D.</td>
</tr>
<tr>
<td>Location</td>
<td>Nantahala National Forest Macon County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 03.143' W 083° 28.641' (view using Google Maps) N 35° 03' 09" W 083° 28' 38" N 35.052385° W 083.477349°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,115 ft (1,559 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1951</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Wayah Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="22">
<coordinates>-83.477349,35.052385,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="25">
<name>Alder Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/alder-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/alder-ridge-lookout/">http://nhlr.org/lookouts/us/ca/alder-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 592, CA 63 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 21, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kathy Allison</td>
</tr>
<tr>
<td>Location</td>
<td>Eldorado National Forest El Dorado County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 44.640' W 120° 20.400' (view using Google Maps) N 38° 44' 38" W 120° 20' 24" N 38.744000° W 120.340000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,192 ft (1,887 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Placerville Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="24">
<coordinates>-120.34,38.744,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="27">
<name>Aldrich Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/aldrich-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/aldrich-butte-lookout/">http://nhlr.org/lookouts/us/or/aldrich-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 453, OR 56 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 22.638' W 119° 27.079' (view using Google Maps) N 44° 22' 38" W 119° 27' 05" N 44.377300° W 119.451320°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,912 ft (2,107 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oregon Department of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Oregon Dept. of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="26">
<coordinates>-119.45132,44.3773,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="29">
<name>Aldridge Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/aldridge-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/aldridge-lookout-tower/">http://nhlr.org/lookouts/us/al/aldridge-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1745, AL 83 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Walker County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 47.465' W 087° 19.748' (view using Google Maps) N 33° 47' 28" W 087° 19' 45" N 33.791080° W 087.329130°</td>
</tr>
<tr>
<td>Elevation</td>
<td>518 ft (158 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="28">
<coordinates>-87.32913,33.79108,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="31">
<name>Allen Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/allen-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/allen-lookout/">http://nhlr.org/lookouts/us/ca/allen-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1147, CA 112 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Scott McClintock</td>
</tr>
<tr>
<td>Location</td>
<td>San Mateo County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 23.063' W 122° 17.391' (view using Google Maps) N 37° 23' 04" W 122° 17' 23" N 37.384386° W 122.289853°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,207 ft (673 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1966</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry &amp; Fire Protection</td>
</tr>
</tbody>
</table>]]></description>
<Point id="30">
<coordinates>-122.289853,37.384386,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="33">
<name>Allison Fire Tower (Rudder Hill Tower)</name>
<atom:link>http://nhlr.org/lookouts/us/al/allison-fire-tower-rudder-hill-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/allison-fire-tower-rudder-hill-tower/">http://nhlr.org/lookouts/us/al/allison-fire-tower-rudder-hill-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 866, AL 44 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 18, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Choctaw County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 09.719' W 088° 09.278' (view using Google Maps) N 32° 09' 43" W 088° 09' 17" N 32.161976° W 088.154631°</td>
</tr>
<tr>
<td>Elevation</td>
<td>293 ft (89 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1954</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="32">
<coordinates>-88.154631,32.161976,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="35">
<name>Alma Hill Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/alma-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/alma-hill-fire-tower/">http://nhlr.org/lookouts/us/ny/alma-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1595, NY 47 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Allegany County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 03.285' W 078° 00.848' (view using Google Maps) N 42° 03' 17" W 078° 00' 51" N 42.054757° W 078.014137°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,546 ft (776 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="34">
<coordinates>-78.014137,42.054757,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="37">
<name>Almond Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ar/almond-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/almond-lookout-tower/">http://nhlr.org/lookouts/us/ar/almond-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1725, AR 17 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 10, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Independence County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 41.648' W 091° 47.290' (view using Google Maps) N 35° 41' 39" W 091° 47' 17" N 35.694130° W 091.788160°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,186 ft (361 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Arkansas Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="36">
<coordinates>-91.78816,35.69413,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="39">
<name>Alpine Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/alpine-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/alpine-lookout/">http://nhlr.org/lookouts/us/wa/alpine-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 123, WA 11 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 1, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Wenatchee National Forest Chelan County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 48.716' W 120° 51.936' (view using Google Maps) N 47° 48' 43" W 120° 51' 56" N 47.811930° W 120.865606°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,156 ft (1,876 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Lake Wenatchee Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="38">
<coordinates>-120.865606,47.81193,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="41">
<name>Altamont Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/tn/altamont-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/altamont-lookout/">http://nhlr.org/lookouts/us/tn/altamont-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1075, TN 18 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jerry Lutes</td>
</tr>
<tr>
<td>Location</td>
<td>Grundy County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 26.097' W 085° 47.788' (view using Google Maps) N 35° 26' 06" W 085° 47' 47" N 35.434950° W 085.796474°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,031 ft (619 m)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="40">
<coordinates>-85.796474,35.43495,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="43">
<name>Alton Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/va/alton-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/alton-fire-tower/">http://nhlr.org/lookouts/us/va/alton-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1038, VA 18 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Scholetzky</td>
</tr>
<tr>
<td>Location</td>
<td>Halifax County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 36.033' W 078° 58.867' (view using Google Maps) N 36° 36' 02" W 078° 58' 52" N 36.600556° W 078.981111°</td>
</tr>
<tr>
<td>Elevation</td>
<td>572 ft (174 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Virginia Department of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Cluster Springs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="42">
<coordinates>-78.981111,36.600556,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="45">
<name>American Camp Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/american-camp-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/american-camp-lookout/">http://nhlr.org/lookouts/us/ca/american-camp-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1180, CA 115 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bill Luedeke</td>
</tr>
<tr>
<td>Location</td>
<td>Stanislaus National Forest Tuolumne County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 05.179' W 120° 23.236' (view using Google Maps) N 38° 05' 11" W 120° 23' 14" N 38.086312° W 120.387273°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,405 ft (1,038 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="44">
<coordinates>-120.387273,38.086312,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="47">
<name>Anderson Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/anderson-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/anderson-butte-lookout/">http://nhlr.org/lookouts/us/id/anderson-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 232, ID 18 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 25, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, Idaho Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 53.230' W 115° 19.902' (view using Google Maps) N 45° 53' 14" W 115° 19' 54" N 45.887160° W 115.331696°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,827 ft (2,081 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Elk City Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="46">
<coordinates>-115.331696,45.88716,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="49">
<name>Andover Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/andover-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/andover-fire-tower/">http://nhlr.org/lookouts/us/ma/andover-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 606, MA 17 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Andover Essex County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 38.467' W 071° 06.416' (view using Google Maps) N 42° 38' 28" W 071° 06' 25" N 42.641110° W 071.106940°</td>
</tr>
<tr>
<td>Elevation</td>
<td>400 ft (122 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1970</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 5</td>
</tr>
</tbody>
</table>]]></description>
<Point id="48">
<coordinates>-71.10694,42.64111,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="51">
<name>Angora Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/angora-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/angora-ridge-lookout/">http://nhlr.org/lookouts/us/ca/angora-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 518, CA 56 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 29, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Lake Tahoe Basin Management Unit El Dorado County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 52.945' W 120° 03.278' (view using Google Maps) N 38° 52' 57" W 120° 03' 17" N 38.882420° W 120.054630°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,256 ft (2,212 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1914</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="50">
<coordinates>-120.05463,38.88242,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="53">
<name>Annette Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/annette-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/annette-lookout/">http://nhlr.org/lookouts/us/ca/annette-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1319, CA 142 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 19, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Kern County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 39.079' W 120° 10.187' (view using Google Maps) N 35° 39' 05" W 120° 10' 11" N 35.651312° W 120.169784°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,362 ft (720 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Privately Owned</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Kern County Fire Department</td>
</tr>
</tbody>
</table>]]></description>
<Point id="52">
<coordinates>-120.169784,35.651312,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="55">
<name>Antelope Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/antelope-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/antelope-mountain-lookout/">http://nhlr.org/lookouts/us/ca/antelope-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 182, CA 7 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 26, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Sylvia A. Buesing</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen National Forest Lassen County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 35.525' W 120° 54.613' (view using Google Maps) N 40° 35' 31" W 120° 54' 37" N 40.592080° W 120.910211°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,675 ft (2,339 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1975</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Eagle Lake Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="54">
<coordinates>-120.910211,40.59208,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="57">
<name>Antelope Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/antelope-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/antelope-mountain-lookout/">http://nhlr.org/lookouts/us/or/antelope-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 913, OR 117 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 4, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 02.548' W 118° 25.154' (view using Google Maps) N 44° 02' 33" W 118° 25' 09" N 44.042460° W 118.419240°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,456 ft (1,968 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1963</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Prairie City Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="56">
<coordinates>-118.41924,44.04246,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="59">
<name>Anthony Hill Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/anthony-hill-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/anthony-hill-lookout-tower/">http://nhlr.org/lookouts/us/tn/anthony-hill-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1760, TN 64 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 9, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Giles County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 06.491' W 087° 03.444' (view using Google Maps) N 35° 06' 29" W 087° 03' 27" N 35.108190° W 087.057400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,026 ft (313 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1958</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="58">
<coordinates>-87.0574,35.10819,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="61">
<name>Anthony Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/anthony-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/anthony-peak-lookout/">http://nhlr.org/lookouts/us/ca/anthony-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 88, CA 2 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 16, 1994</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Allan Bier, Covelo District Ranger</td>
</tr>
<tr>
<td>Location</td>
<td>Mendocino National Forest Mendocino County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 50.770' W 122° 57.872' (view using Google Maps) N 39° 50' 46" W 122° 57' 52" N 39.846160° W 122.964536°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,891 ft (2,100 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Covelo Ranger District, Corning Ranger District, and Twin Rocks Landowners Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="60">
<coordinates>-122.964536,39.84616,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="63">
<name>Apache Maid Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/apache-maid-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/apache-maid-lookout/">http://nhlr.org/lookouts/us/az/apache-maid-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 674, AZ 61 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Coconino National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 43.500' W 111° 32.950' (view using Google Maps) N 34° 43' 30" W 111° 32' 57" N 34.725000° W 111.549170°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,301 ft (2,225 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1961</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Red Rock Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="62">
<coordinates>-111.54917,34.725,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="65">
<name>Apgar Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/apgar-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/apgar-lookout/">http://nhlr.org/lookouts/us/mt/apgar-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 33, MT 1 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 15, 1991</td>
</tr>
<tr>
<td>Nominated by</td>
<td>H. Gilbert Lusk, Superintendent, U.S. Dept. of the Interior, National Park Service, Glacier National Park</td>
</tr>
<tr>
<td>Location</td>
<td>Glacier National Park Flathead County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 31.069' W 114° 01.226' (view using Google Maps) N 48° 31' 04" W 114° 01' 14" N 48.517820° W 114.020430°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,128 ft (1,563 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Glacier National Park</td>
</tr>
</tbody>
</table>]]></description>
<Point id="64">
<coordinates>-114.02043,48.51782,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="67">
<name>Apple Pie Hill Station Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/apple-pie-hill-station-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/apple-pie-hill-station-fire-tower/">http://nhlr.org/lookouts/us/nj/apple-pie-hill-station-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 564, NJ 17 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bob Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Tabernacle Twp. Burlington County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 48.443' W 074° 35.363' (view using Google Maps) N 39° 48' 27" W 074° 35' 22" N 39.807381° W 074.589384°</td>
</tr>
<tr>
<td>Elevation</td>
<td>179 ft (55 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Forest Fire Service, Division B</td>
</tr>
</tbody>
</table>]]></description>
<Point id="66">
<coordinates>-74.589384,39.807381,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="69">
<name>Applegate Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/applegate-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/applegate-butte-lookout/">http://nhlr.org/lookouts/us/or/applegate-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 479, OR 72 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Winema National Forest Klamath County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 42.473' W 121° 43.052' (view using Google Maps) N 42° 42' 28" W 121° 43' 03" N 42.707880° W 121.717530°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,040 ft (1,841 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Chiloquin Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="68">
<coordinates>-121.71753,42.70788,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="71">
<name>Appleton/Bramlett Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/appletonbramlett-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/appletonbramlett-tower/">http://nhlr.org/lookouts/us/sc/appletonbramlett-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 965, SC 18 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 24, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch, Jr., FFLA Area Rep</td>
</tr>
<tr>
<td>Location</td>
<td>Allendale County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 59.233' W 081° 24.500' (view using Google Maps) N 32° 59' 14" W 081° 24' 30" N 32.987222° W 081.408333°</td>
</tr>
<tr>
<td>Elevation</td>
<td>207 ft (63 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mickey Scott, Owner</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mickey Scott, Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="70">
<coordinates>-81.408333,32.987222,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="73">
<name>Archbold (Red Hill) Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/archbold-red-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/archbold-red-hill-fire-tower/">http://nhlr.org/lookouts/us/fl/archbold-red-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1081, FL 15 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Highlands County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 27° 11.139' W 081° 20.310' (view using Google Maps) N 27° 11' 08" W 081° 20' 19" N 27.185653° W 081.338502°</td>
</tr>
<tr>
<td>Elevation</td>
<td>214 ft (65 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Department of Agriculture &amp; Consumer Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="72">
<coordinates>-81.338502,27.185653,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="75">
<name>Arctic Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/arctic-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/arctic-point-lookout/">http://nhlr.org/lookouts/us/id/arctic-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 264, ID 25 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 1, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Payette National Forest</td>
</tr>
<tr>
<td>Location</td>
<td>Payette National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 28.440' W 115° 02.309' (view using Google Maps) N 45° 28' 26" W 115° 02' 19" N 45.474000° W 115.038487°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,469 ft (2,277 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Krassel Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="74">
<coordinates>-115.038487,45.474,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="77">
<name>Argentine Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/argentine-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/argentine-rock-lookout/">http://nhlr.org/lookouts/us/ca/argentine-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 601, CA 72 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 21, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kathy Allison</td>
</tr>
<tr>
<td>Location</td>
<td>Plumas National Forest Plumas County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 57.143' W 120° 45.740' (view using Google Maps) N 39° 57' 09" W 120° 45' 44" N 39.952380° W 120.762330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,151 ft (2,180 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mt. Hough Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="76">
<coordinates>-120.76233,39.95238,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="79">
<name>Arid Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/arid-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/arid-peak-lookout/">http://nhlr.org/lookouts/us/id/arid-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 153, ID 12 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 2, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>C. Rod Bacon, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Idaho Panhandle National Forest Shoshone County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 21.538' W 115° 45.829' (view using Google Maps) N 47° 21' 32" W 115° 45' 50" N 47.358960° W 115.763817°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,241 ft (1,597 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>St. Joe Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="78">
<coordinates>-115.763817,47.35896,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="81">
<name>Ark Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/va/ark-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/ark-fire-tower/">http://nhlr.org/lookouts/us/va/ark-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1408, VA 41 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 24, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>James Hull</td>
</tr>
<tr>
<td>Location</td>
<td>Gloucester County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 26.297' W 076° 34.714' (view using Google Maps) N 37° 26' 18" W 076° 34' 43" N 37.438290° W 076.578560°</td>
</tr>
<tr>
<td>Elevation</td>
<td>87 ft (27 m)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="80">
<coordinates>-76.57856,37.43829,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="83">
<name>Armintrout Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/oh/armintrout-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/oh/armintrout-fire-tower/">http://nhlr.org/lookouts/us/oh/armintrout-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1021, OH 10 (view other lookouts in United States, Ohio)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark</td>
</tr>
<tr>
<td>Location</td>
<td>Ohio State Fairgrounds Franklin County, Ohio</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 59.712' W 082° 59.323' (view using Google Maps) N 39° 59' 43" W 082° 59' 19" N 39.995201° W 082.988714°</td>
</tr>
<tr>
<td>Elevation</td>
<td>827 ft (252 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ohio Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="82">
<coordinates>-82.988714,39.995201,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="85">
<name>Armstrong Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/armstrong-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/armstrong-hill-lookout/">http://nhlr.org/lookouts/us/ca/armstrong-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1041, CA 99 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>M. Sills</td>
</tr>
<tr>
<td>Location</td>
<td>Eldorado National Forest El Dorado County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 32.540' W 120° 23.057' (view using Google Maps) N 38° 32' 32" W 120° 23' 03" N 38.542330° W 120.384280°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,707 ft (1,739 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1937</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Eldorado National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="84">
<coordinates>-120.38428,38.54233,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="87">
<name>Armstrong Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/armstrong-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/armstrong-mountain-lookout/">http://nhlr.org/lookouts/us/wa/armstrong-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1521, WA 70 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Colville Indian Reservation Okanogan County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 16.030' W 119° 05.141' (view using Google Maps) N 48° 16' 02" W 119° 05' 08" N 48.267168° W 119.085682°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,552 ft (1,387 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Colville Indian Reservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Colville National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="86">
<coordinates>-119.085682,48.267168,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="89">
<name>Ash Cave Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/oh/ash-cave-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/oh/ash-cave-fire-tower/">http://nhlr.org/lookouts/us/oh/ash-cave-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 699, OH 4 (view other lookouts in United States, Ohio)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 20, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Steve W. Klan Sr.</td>
</tr>
<tr>
<td>Location</td>
<td>Hocking Hills State Forest Hocking County, Ohio</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 24.337' W 082° 31.859' (view using Google Maps) N 39° 24' 20" W 082° 31' 52" N 39.405620° W 082.530980°</td>
</tr>
<tr>
<td>Elevation</td>
<td>998 ft (304 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ohio Department of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ohio Division of Forestry &amp; Ohio Fire Tower Restoration Project</td>
</tr>
</tbody>
</table>]]></description>
<Point id="88">
<coordinates>-82.53098,39.40562,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="91">
<name>Ash River Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mn/ash-river-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/ash-river-lookout/">http://nhlr.org/lookouts/us/mn/ash-river-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1286, MN 12 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 5, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jacob Hufnagle</td>
</tr>
<tr>
<td>Location</td>
<td>Kabetogama State Forest Saint Louis County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 24.394' W 092° 47.231' (view using Google Maps) N 48° 24' 24" W 092° 47' 14" N 48.406572° W 092.787191°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,372 ft (418 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="90">
<coordinates>-92.787191,48.406572,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="93">
<name>Ashby Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/ashby-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/ashby-fire-tower/">http://nhlr.org/lookouts/us/fl/ashby-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1070, FL 17 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Volusia County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 28° 54.311' W 081° 04.145' (view using Google Maps) N 28° 54' 19" W 081° 04' 09" N 28.905184° W 081.069085°</td>
</tr>
<tr>
<td>Elevation</td>
<td>27 ft (8 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Department of Agriculture &amp; Consumer Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="92">
<coordinates>-81.069085,28.905184,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="95">
<name>Atascosa Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/atascosa-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/atascosa-lookout/">http://nhlr.org/lookouts/us/az/atascosa-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 201, AZ 8 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>David Lorenz, Arizona Registrar &amp; Mary Farrell, Archaeologist, Coronado N.F.</td>
</tr>
<tr>
<td>Location</td>
<td>Coronado National Forest Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 31° 25.241' W 111° 08.802' (view using Google Maps) N 31° 25' 14" W 111° 08' 48" N 31.420680° W 111.146708°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,070 ft (1,850 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Nogales Ranger District &amp; Friends of Atascosa Lookout</td>
</tr>
</tbody>
</table>]]></description>
<Point id="94">
<coordinates>-111.146708,31.42068,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="97">
<name>Atkins Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/atkins-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/atkins-fire-tower/">http://nhlr.org/lookouts/us/sc/atkins-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 983, SC 24 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 12, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch, Jr.</td>
</tr>
<tr>
<td>Location</td>
<td>Lee County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 02.633' W 080° 07.250' (view using Google Maps) N 34° 02' 38" W 080° 07' 15" N 34.043889° W 080.120833°</td>
</tr>
<tr>
<td>Elevation</td>
<td>155 ft (47 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>South Carolina Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="96">
<coordinates>-80.120833,34.043889,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="99">
<name>Atkinson Ridge Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/oh/atkinson-ridge-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/oh/atkinson-ridge-fire-tower/">http://nhlr.org/lookouts/us/oh/atkinson-ridge-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 701, OH 6 (view other lookouts in United States, Ohio)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 20, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Steve W. Klan Sr.</td>
</tr>
<tr>
<td>Location</td>
<td>Zaleski State Forest Vinton County, Ohio</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 17.394' W 082° 22.213' (view using Google Maps) N 39° 17' 24" W 082° 22' 13" N 39.289900° W 082.370220°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,046 ft (319 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1929</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ohio Department of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ohio Division of Forestry &amp; Ohio Fire Tower Restoration Project</td>
</tr>
</tbody>
</table>]]></description>
<Point id="98">
<coordinates>-82.37022,39.2899,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="101">
<name>Atole Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/atole-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/atole-lookout/">http://nhlr.org/lookouts/us/nm/atole-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 316, NM 4 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Tecolote Mesa Rio Arriba County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 51.217' W 106° 46.498' (view using Google Maps) N 36° 51' 13" W 106° 46' 30" N 36.853623° W 106.774975°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,883 ft (2,708 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bureau of Indian Affairs</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bureau of Indian Affairs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="100">
<coordinates>-106.774975,36.853623,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="103">
<name>Attala (Kosciusko) Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/attala-kosciusko-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/attala-kosciusko-lookout-tower/">http://nhlr.org/lookouts/us/ms/attala-kosciusko-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1663, MS 28 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 10, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Attala County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 04.555' W 089° 37.293' (view using Google Maps) N 33° 04' 33" W 089° 37' 18" N 33.075922° W 089.621550°</td>
</tr>
<tr>
<td>Elevation</td>
<td>548 ft (167 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="102">
<coordinates>-89.62155,33.075922,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="105">
<name>Austin Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/austin-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/austin-ridge-lookout/">http://nhlr.org/lookouts/us/id/austin-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 938, ID 97 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 18, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Luke Channer</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 21.044' W 115° 40.258' (view using Google Maps) N 46° 21' 03" W 115° 40' 15" N 46.350740° W 115.670970°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,731 ft (1,442 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Lochsa Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="104">
<coordinates>-115.67097,46.35074,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="107">
<name>Aztec Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/aztec-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/aztec-peak-lookout/">http://nhlr.org/lookouts/us/az/aztec-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 192, AZ 2 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>James R. Soeth, District Ranger</td>
</tr>
<tr>
<td>Location</td>
<td>Tonto National Forest Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 48.731' W 110° 54.457' (view using Google Maps) N 33° 48' 44" W 110° 54' 27" N 33.812180° W 110.907616°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,728 ft (2,355 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pleasant Valley Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="106">
<coordinates>-110.907616,33.81218,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="109">
<name>Azure Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/azure-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/azure-mountain-fire-tower/">http://nhlr.org/lookouts/us/ny/azure-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 520, NY 23 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 30, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Franklin County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 32.570' W 074° 30.276' (view using Google Maps) N 44° 32' 34" W 074° 30' 17" N 44.542830° W 074.504600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,500 ft (762 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York Dept. of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Azure Mountain Friends &amp; New York Dept. of Environmental Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="108">
<coordinates>-74.5046,44.54283,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="111">
<name>Babbit Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/babbit-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/babbit-peak-lookout/">http://nhlr.org/lookouts/us/ca/babbit-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 515, CA 53 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 29, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Tahoe National Forest Sierra County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 36.144' W 120° 06.446' (view using Google Maps) N 39° 36' 09" W 120° 06' 27" N 39.602400° W 120.107430°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,727 ft (2,660 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Sierraville Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="110">
<coordinates>-120.10743,39.6024,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="113">
<name>Badger Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/badger-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/badger-peak-lookout/">http://nhlr.org/lookouts/us/mt/badger-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1530, MT 93 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 12, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Northern Cheyenne Tribe Rosebud County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 38.561' W 106° 32.901' (view using Google Maps) N 45° 38' 34" W 106° 32' 54" N 45.642690° W 106.548350°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,404 ft (1,342 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
<tr>
<td>Administered by</td>
<td>Northern Cheyenne Agency - Bureau of Indian Affairs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="112">
<coordinates>-106.54835,45.64269,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="115">
<name>Badoura Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mn/badoura-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/badoura-lookout-tower/">http://nhlr.org/lookouts/us/mn/badoura-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 120, MN 4 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 15, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ken Baumgartner, Area Forest Supervisor</td>
</tr>
<tr>
<td>Location</td>
<td>Badoura State Forest Hubbard County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 51.674' W 094° 43.434' (view using Google Maps) N 46° 51' 40" W 094° 43' 26" N 46.861240° W 094.723905°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,427 ft (435 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Dept. of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Minnesota Division of Forestry and the Paul Bunyan Chapter #93, Civilian Conservation Corps</td>
</tr>
</tbody>
</table>]]></description>
<Point id="114">
<coordinates>-94.723905,46.86124,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="117">
<name>Bagley Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/bagley-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/bagley-lookout/">http://nhlr.org/lookouts/us/wi/bagley-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1209, WI 15 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 19, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Oconto County, Wisconson</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 06.343' W 088° 19.059' (view using Google Maps) N 45° 06' 21" W 088° 19' 04" N 45.105722° W 088.317644°</td>
</tr>
<tr>
<td>Elevation</td>
<td>877 ft (267 m)</td>
</tr>
<tr>
<td>Built</td>
<td>October 1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="116">
<coordinates>-88.317644,45.105722,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="119">
<name>Baker Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/baker-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/baker-butte-lookout/">http://nhlr.org/lookouts/us/az/baker-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 675, AZ 62 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Coconino National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 26.966' W 111° 22.616' (view using Google Maps) N 34° 26' 58" W 111° 22' 37" N 34.449440° W 111.376940°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,074 ft (2,461 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mogollon Rim Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="118">
<coordinates>-111.37694,34.44944,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="121">
<name>Baker Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/baker-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/baker-point-lookout/">http://nhlr.org/lookouts/us/ca/baker-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 376, CA 38 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 10, 2001</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Sequoia National Forest</td>
</tr>
<tr>
<td>Location</td>
<td>Sequoia National Forest Tulare County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 51.140' W 118° 30.167' (view using Google Maps) N 35° 51' 08" W 118° 30' 10" N 35.852336° W 118.502782°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,490 ft (2,283 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Hot Springs Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="120">
<coordinates>-118.502782,35.852336,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="123">
<name>Balancing Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/balancing-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/balancing-rock-lookout/">http://nhlr.org/lookouts/us/id/balancing-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1469, ID 161 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 7, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce - Clearwater National Forests Clearwater County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 42.704' W 115° 35.231' (view using Google Maps) N 46° 42' 42" W 115° 35' 14" N 46.711740° W 115.587190°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,116 ft (1,255 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Nez Perce - Clearwater National Forests</td>
</tr>
</tbody>
</table>]]></description>
<Point id="122">
<coordinates>-115.58719,46.71174,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="125">
<name>Bald Butte Lookout (Fremont NF)</name>
<atom:link>http://nhlr.org/lookouts/us/or/bald-butte-lookout-fremont-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bald-butte-lookout-fremont-nf/">http://nhlr.org/lookouts/us/or/bald-butte-lookout-fremont-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 258, OR 29 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ronald R. Johnson, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Fremont National Forest Lake County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 36.859' W 120° 47.381' (view using Google Maps) N 42° 36' 52" W 120° 47' 23" N 42.614310° W 120.789689°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,536 ft (2,297 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1931</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Paisley Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="124">
<coordinates>-120.789689,42.61431,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="127">
<name>Bald Butte Lookout (Ochoco NF)</name>
<atom:link>http://nhlr.org/lookouts/us/or/bald-butte-lookout-ochoco-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bald-butte-lookout-ochoco-nf/">http://nhlr.org/lookouts/us/or/bald-butte-lookout-ochoco-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 425, OR 50 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 16, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Ochoco National Forest Harney County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 40.992' W 119° 22.014' (view using Google Maps) N 43° 40' 60" W 119° 22' 01" N 43.683200° W 119.366900°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,867 ft (1,788 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1959</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Emigrant Peak Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="126">
<coordinates>-119.3669,43.6832,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="129">
<name>Bald Knob Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/wv/bald-knob-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wv/bald-knob-fire-tower/">http://nhlr.org/lookouts/us/wv/bald-knob-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 149, WV 4 (view other lookouts in United States, West Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ralph P. Glover, Jr., Dep. Admn. Forester</td>
</tr>
<tr>
<td>Location</td>
<td>Cass Scenic Railroad State Park Pocahontas County, West Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 26.871' W 079° 55.861' (view using Google Maps) N 38° 26' 52" W 079° 55' 52" N 38.447855° W 079.931011°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,831 ft (1,472 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>West Virginia Division of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>WV Division of Forestry and WV Division of Parks and Recreation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="128">
<coordinates>-79.931011,38.447855,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="131">
<name>Bald Knob Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bald-knob-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bald-knob-lookout/">http://nhlr.org/lookouts/us/or/bald-knob-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1572, OR 131 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 11, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Siskiyou National Forest Coos County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 41.614' W 124° 02.397' (view using Google Maps) N 42° 41' 37" W 124° 02' 24" N 42.693572° W 124.039954°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,447 ft (1,051 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1963</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Siskiyou National Forest</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="130">
<coordinates>-124.039954,42.693572,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="133">
<name>Bald Knob Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/bald-knob-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/bald-knob-lookout/">http://nhlr.org/lookouts/us/va/bald-knob-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 907, VA 10 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 9, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford and Krissy Scholetzky</td>
</tr>
<tr>
<td>Location</td>
<td>Warm Springs Mountain Preserve Bath County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 55.457' W 079° 51.117' (view using Google Maps) N 37° 55' 27" W 079° 51' 07" N 37.924284° W 079.851944°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,249 ft (1,295 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>The Nature Conservancy</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Warm Springs Ranger District and The Nature Conservancy</td>
</tr>
</tbody>
</table>]]></description>
<Point id="132">
<coordinates>-79.851944,37.924284,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="135">
<name>Bald Knob Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ky/bald-knob-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ky/bald-knob-tower/">http://nhlr.org/lookouts/us/ky/bald-knob-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 831, KY 7 (view other lookouts in United States, Kentucky)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 3, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Trenton C. Girard</td>
</tr>
<tr>
<td>Location</td>
<td>Land Between the Lakes National Recreation Area Trigg County, Kentucky</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 46.800' W 088° 03.500' (view using Google Maps) N 36° 46' 48" W 088° 03' 30" N 36.780000° W 088.058330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>633 ft (193 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1964</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="134">
<coordinates>-88.05833,36.78,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="137">
<name>Bald Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/vt/bald-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/vt/bald-mountain-fire-tower/">http://nhlr.org/lookouts/us/vt/bald-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 998, VT 6 (view other lookouts in United States, Vermont)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 14, 2014</td>
</tr>
<tr>
<td>Location</td>
<td>Orleans County, Vermont</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 45.986' W 071° 59.306' (view using Google Maps) N 44° 45' 59" W 071° 59' 18" N 44.766439° W 071.988430°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,304 ft (1,007 m)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="136">
<coordinates>-71.98843,44.766439,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="139">
<name>Bald Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/bald-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/bald-mountain-lookout/">http://nhlr.org/lookouts/us/id/bald-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 777, ID 63 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater National Forest Latah County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 01.916' W 116° 34.316' (view using Google Maps) N 47° 01' 55" W 116° 34' 19" N 47.031940° W 116.571940°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,334 ft (1,626 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Palouse Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="138">
<coordinates>-116.57194,47.03194,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="141">
<name>Bald Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bald-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bald-mountain-lookout/">http://nhlr.org/lookouts/us/or/bald-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 480, OR 73 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Fremont National Forest Klamath County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 16.468' W 121° 21.322' (view using Google Maps) N 43° 16' 28" W 121° 21' 19" N 43.274470° W 121.355370°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,377 ft (2,249 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Silver Lake Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="140">
<coordinates>-121.35537,43.27447,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="143">
<name>Bald Mountain Lookout (Cal Fire - Butte County)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-cal-fire-butte-county/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-cal-fire-butte-county/">http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-cal-fire-butte-county/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1307, CA 130 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 15, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Butte County, California Butte County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 57.153' W 121° 28.948' (view using Google Maps) N 39° 57' 09" W 121° 28' 57" N 39.952542° W 121.482471°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,778 ft (1,761 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934/1973</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection (Cal Fire)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="142">
<coordinates>-121.482471,39.952542,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="145">
<name>Bald Mountain Lookout (Eldorado NF)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-eldorado-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-eldorado-nf/">http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-eldorado-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 597, CA 68 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 21, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kathy Allison</td>
</tr>
<tr>
<td>Location</td>
<td>Eldorado National Forest El Dorado County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 54.244' W 120° 42.313' (view using Google Maps) N 38° 54' 15" W 120° 42' 19" N 38.904070° W 120.705210°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,592 ft (1,400 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1965</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Georgetown Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="144">
<coordinates>-120.70521,38.90407,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="147">
<name>Bald Mountain Lookout (Inyo NF)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-inyo-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-inyo-nf/">http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-inyo-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 279, CA 13 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 4, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Inyo National Forest Mono County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 47.043' W 118° 54.055' (view using Google Maps) N 37° 47' 03" W 118° 54' 03" N 37.784050° W 118.900920°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,074 ft (2,766 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1963</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mono Lakes Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="146">
<coordinates>-118.90092,37.78405,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="149">
<name>Bald Mountain Lookout (Sawtooth National Forest)</name>
<atom:link>http://nhlr.org/lookouts/us/id/bald-mountain-lookout-sawtooth-national-forest/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/bald-mountain-lookout-sawtooth-national-forest/">http://nhlr.org/lookouts/us/id/bald-mountain-lookout-sawtooth-national-forest/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1432, ID 124 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 28, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Sawtooth National Forest Blaine County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 39.291' W 114° 24.561' (view using Google Maps) N 43° 39' 17" W 114° 24' 34" N 43.654854° W 114.409355°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,160 ft (2,792 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1958</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Sawtooth National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="148">
<coordinates>-114.409355,43.654854,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="151">
<name>Bald Mountain Lookout (Sequoia NF)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-sequoia-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-sequoia-nf/">http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-sequoia-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 383, CA 44 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 10, 2001</td>
</tr>
<tr>
<td>Location</td>
<td>Sequoia National Forest Tulare County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 01.182' W 118° 15.186' (view using Google Maps) N 36° 01' 11" W 118° 15' 11" N 36.019700° W 118.253100°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,339 ft (2,847 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1954</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Cannell Meadow Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="150">
<coordinates>-118.2531,36.0197,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="153">
<name>Bald Mountain Lookout (Sierra NF)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-sierra-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-sierra-nf/">http://nhlr.org/lookouts/us/ca/bald-mountain-lookout-sierra-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 823, CA 88 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 30, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Bula</td>
</tr>
<tr>
<td>Location</td>
<td>Sierra National Forest Fresno County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 06.233' W 119° 12.350' (view using Google Maps) N 37° 06' 14" W 119° 12' 21" N 37.103890° W 119.205830°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,828 ft (2,386 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>High Sierra Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="152">
<coordinates>-119.20583,37.10389,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="155">
<name>Baldy Mountain (Happy Camp Baldy) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/baldy-mountain-happy-camp-baldy-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/baldy-mountain-happy-camp-baldy-lookout/">http://nhlr.org/lookouts/us/ca/baldy-mountain-happy-camp-baldy-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1352, CA 175 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 27, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 48.015' W 123° 29.609' (view using Google Maps) N 41° 48' 01" W 123° 29' 37" N 41.800258° W 123.493477°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,611 ft (1,710 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1938</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Klamath National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="154">
<coordinates>-123.493477,41.800258,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="157">
<name>Baldy Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/baldy-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/baldy-mountain-lookout/">http://nhlr.org/lookouts/us/mt/baldy-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1512, MT 90 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai NF Lincoln County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 50.057' W 115° 55.497' (view using Google Maps) N 48° 50' 03" W 115° 55' 30" N 48.834284° W 115.924949°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,531 ft (1,991 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="156">
<coordinates>-115.924949,48.834284,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="159">
<name>Ball Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/ball-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/ball-mountain-lookout/">http://nhlr.org/lookouts/us/ca/ball-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1383, CA 206 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 24, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 47.723' W 122° 09.353' (view using Google Maps) N 41° 47' 43" W 122° 09' 21" N 41.795390° W 122.155887°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,789 ft (2,374 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1940</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Klamath National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="158">
<coordinates>-122.155887,41.79539,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="161">
<name>Balsam Lake Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/balsam-lake-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/balsam-lake-mountain-fire-tower/">http://nhlr.org/lookouts/us/ny/balsam-lake-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 9, NY 1 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 30, 1990</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bill Rudge, Senior Forester, New York State Dept. of Environmental Conservation, Region 3</td>
</tr>
<tr>
<td>Location</td>
<td>Balsam Lake Mountain Wild Forest Ulster County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 02.724' W 074° 35.676' (view using Google Maps) N 42° 02' 43" W 074° 35' 41" N 42.045395° W 074.594604°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,720 ft (1,134 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Dept. of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New York State Dept. of Environmental Conservation, Region 3</td>
</tr>
</tbody>
</table>]]></description>
<Point id="160">
<coordinates>-74.594604,42.045395,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="163">
<name>Baltic Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/baltic-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/baltic-peak-lookout/">http://nhlr.org/lookouts/us/ca/baltic-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 514, CA 52 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 29, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Eldorado National Forest El Dorado County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 41.662' W 120° 30.929' (view using Google Maps) N 38° 41' 40" W 120° 30' 56" N 38.694370° W 120.515480°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,046 ft (1,538 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1931</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>1868</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Placerville Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="162">
<coordinates>-120.51548,38.69437,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="165">
<name>Bamberg Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/bamberg-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/bamberg-lookout-tower/">http://nhlr.org/lookouts/us/sc/bamberg-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1007, SC 29 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 27, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch, Jr.</td>
</tr>
<tr>
<td>Location</td>
<td>Bamberg County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 19.600' W 081° 04.350' (view using Google Maps) N 33° 19' 36" W 081° 04' 21" N 33.326667° W 081.072500°</td>
</tr>
<tr>
<td>Elevation</td>
<td>248 ft (76 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="164">
<coordinates>-81.0725,33.326667,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="167">
<name>Bandelier Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/bandelier-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/bandelier-lookout/">http://nhlr.org/lookouts/us/nm/bandelier-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1648, NM 47 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 7, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Bandelier National Monument Los Alamos County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 46.771' W 106° 15.955' (view using Google Maps) N 35° 46' 46" W 106° 15' 57" N 35.779516° W 106.265918°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,536 ft (1,992 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1940-41</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service - Bandelier National Monument</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Atomic Energy Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="166">
<coordinates>-106.265918,35.779516,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="169">
<name>Bankhead Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/bankhead-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/bankhead-lookout-tower/">http://nhlr.org/lookouts/us/al/bankhead-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1731, AL 82 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 30, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Talladega National Forest Cleburne County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 40.435' W 085° 37.313' (view using Google Maps) N 33° 40' 26" W 085° 37' 19" N 33.673910° W 085.621880°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,375 ft (419 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>USFS</td>
</tr>
</tbody>
</table>]]></description>
<Point id="168">
<coordinates>-85.62188,33.67391,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="171">
<name>Banner Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/banner-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/banner-mountain-lookout/">http://nhlr.org/lookouts/us/ca/banner-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1334, CA 157 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 24, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Nevada County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 14.743' W 120° 57.933' (view using Google Maps) N 39° 14' 45" W 120° 57' 56" N 39.245720° W 120.965550°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,908 ft (1,191 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1926</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection - Nevada-Yuba-Placer Unit (Cal Fire NEU)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="170">
<coordinates>-120.96555,39.24572,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="173">
<name>Baptiste Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/baptiste-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/baptiste-lookout/">http://nhlr.org/lookouts/us/mt/baptiste-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 995, MT 59 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Flathead County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 07.515' W 113° 39.538' (view using Google Maps) N 48° 07' 31" W 113° 39' 32" N 48.125258° W 113.658967°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,698 ft (2,042 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1964</td>
</tr>
<tr>
<td>Administered by</td>
<td>Flathead National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="172">
<coordinates>-113.658967,48.125258,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="175">
<name>Bare Cone Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/bare-cone-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/bare-cone-lookout/">http://nhlr.org/lookouts/us/mt/bare-cone-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 778, MT 44 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Bitterroot National Forest Ravalli County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 43.150' W 114° 24.733' (view using Google Maps) N 45° 43' 09" W 114° 24' 44" N 45.719170° W 114.412220°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,822 ft (2,384 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1962</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>West Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="174">
<coordinates>-114.41222,45.71917,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="177">
<name>Barfoot Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/barfoot-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/barfoot-lookout/">http://nhlr.org/lookouts/us/az/barfoot-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 218, AZ 12 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, Arizona Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Coronado National Forest Cochise County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 31° 54.965' W 109° 16.407' (view using Google Maps) N 31° 54' 58" W 109° 16' 24" N 31.916080° W 109.273444°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,703 ft (2,653 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Removed</td>
<td>June 2011</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>US 1547, AZ 1</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Douglas Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="176">
<coordinates>-109.273444,31.91608,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="179">
<name>Barge Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/barge-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/barge-lookout-tower/">http://nhlr.org/lookouts/us/ms/barge-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1669, MS 33 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 10, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Winston County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 08.063' W 088° 51.128' (view using Google Maps) N 33° 08' 04" W 088° 51' 08" N 33.134380° W 088.852127°</td>
</tr>
<tr>
<td>Elevation</td>
<td>586 ft (179 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>C.A. Barge Forest Products</td>
</tr>
</tbody>
</table>]]></description>
<Point id="178">
<coordinates>-88.852127,33.13438,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="181">
<name>Barillas Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/barillas-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/barillas-lookout/">http://nhlr.org/lookouts/us/nm/barillas-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 708, NM 27 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 7, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Santa Fe National Forest San Miguel County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 34.252' W 105° 28.401' (view using Google Maps) N 35° 34' 15" W 105° 28' 24" N 35.570870° W 105.473350°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,300 ft (2,835 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1959</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pecos/Las Vegas Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="180">
<coordinates>-105.47335,35.57087,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="183">
<name>Barnett Knob Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nc/barnett-knob-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/barnett-knob-fire-tower/">http://nhlr.org/lookouts/us/nc/barnett-knob-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 685, NC 8 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 31, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Steve Swimmer, Wildland Fire Prevention/Mitigation Officer, Eastern Cherokee Agency</td>
</tr>
<tr>
<td>Location</td>
<td>Cherokee Indian Reservation Swain County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 31.465' W 083° 14.171' (view using Google Maps) N 35° 31' 28" W 083° 14' 10" N 35.524420° W 083.236190°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,771 ft (1,454 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bureau of Indian Affairs</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Eastern Cherokee Agency</td>
</tr>
</tbody>
</table>]]></description>
<Point id="182">
<coordinates>-83.23619,35.52442,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="185">
<name>Barnstable Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/barnstable-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/barnstable-fire-tower/">http://nhlr.org/lookouts/us/ma/barnstable-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 559, MA 9 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 2, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Clay Hill Barnstable County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 41.110' W 070° 21.460' (view using Google Maps) N 41° 41' 07" W 070° 21' 28" N 41.685167° W 070.357667°</td>
</tr>
<tr>
<td>Elevation</td>
<td>66 ft (20 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1947</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 1</td>
</tr>
</tbody>
</table>]]></description>
<Point id="184">
<coordinates>-70.357667,41.685167,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="187">
<name>Barnwell Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/barnwell-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/barnwell-lookout-tower/">http://nhlr.org/lookouts/us/sc/barnwell-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1004, SC 27 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 27, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch, Jr.</td>
</tr>
<tr>
<td>Location</td>
<td>Barnwell County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 13.383' W 081° 20.483' (view using Google Maps) N 33° 13' 23" W 081° 20' 29" N 33.223056° W 081.341389°</td>
</tr>
<tr>
<td>Elevation</td>
<td>228 ft (69 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>South Carolina Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="186">
<coordinates>-81.341389,33.223056,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="189">
<name>Barren Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/barren-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/barren-peak-lookout/">http://nhlr.org/lookouts/us/mt/barren-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 905, MT 53 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 7, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>John M. Richards</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai National Forest Lincoln County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 01.523' W 115° 24.844' (view using Google Maps) N 48° 01' 31" W 115° 24' 51" N 48.025390° W 115.414070°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,365 ft (1,635 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1940</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Canoe Gulch Ranger Station</td>
</tr>
</tbody>
</table>]]></description>
<Point id="188">
<coordinates>-115.41407,48.02539,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="191">
<name>Barton Knob Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/wv/barton-knob-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wv/barton-knob-fire-tower/">http://nhlr.org/lookouts/us/wv/barton-knob-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1100, WV 11 (view other lookouts in United States, West Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Monongahela National Forest Randolph County, West Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 37.009' W 079° 55.775' (view using Google Maps) N 38° 37' 01" W 079° 55' 46" N 38.616811° W 079.929575°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,432 ft (1,351 m)</td>
</tr>
<tr>
<td>Built</td>
<td>circa 1926</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="190">
<coordinates>-79.929575,38.616811,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="193">
<name>Basalt Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/basalt-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/basalt-hill-lookout/">http://nhlr.org/lookouts/us/ca/basalt-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 880, CA 90 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 19, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Los Banos Merced County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 01.145' W 121° 05.179' (view using Google Maps) N 37° 01' 09" W 121° 05' 11" N 37.019080° W 121.086310°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,700 ft (518 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1947</td>
</tr>
<tr>
<td>Administered by</td>
<td>Department of Forestry and Fire Protection (Cal Fire)</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Department of Forestry and Fire Protection (Cal Fire), and Cal Fire Madera-Mariposa-Merced Unit</td>
</tr>
</tbody>
</table>]]></description>
<Point id="192">
<coordinates>-121.08631,37.01908,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="195">
<name>Basin Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/basin-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/basin-butte-lookout/">http://nhlr.org/lookouts/us/id/basin-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 747, ID 49 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 20, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jill Osborn</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon-Challis National Forest Custer County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 20.294' W 114° 58.671' (view using Google Maps) N 44° 20' 18" W 114° 58' 40" N 44.338230° W 114.977850°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,854 ft (2,699 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Challis-Yankee Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="194">
<coordinates>-114.97785,44.33823,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="197">
<name>Bass River Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/bass-river-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/bass-river-fire-tower/">http://nhlr.org/lookouts/us/nj/bass-river-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 243, NJ 5 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1997</td>
</tr>
<tr>
<td>Location</td>
<td>Bass River State Forest Burlington County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 36.694' W 074° 26.197' (view using Google Maps) N 39° 36' 42" W 074° 26' 12" N 39.611572° W 074.436617°</td>
</tr>
<tr>
<td>Elevation</td>
<td>47 ft (14 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Forest Fire Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="196">
<coordinates>-74.436617,39.611572,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="199">
<name>Batsto Manor House Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nj/batsto-manor-house-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/batsto-manor-house-lookout/">http://nhlr.org/lookouts/us/nj/batsto-manor-house-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 79, NJ 3 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 3, 1994</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bob Spear, NJ Forest Fire Service</td>
</tr>
<tr>
<td>Location</td>
<td>Batsto Village State Historic Site Burlington County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 38.604' W 074° 38.893' (view using Google Maps) N 39° 38' 36" W 074° 38' 54" N 39.643407° W 074.648225°</td>
</tr>
<tr>
<td>Elevation</td>
<td>72 ft (22 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Division of Parks and Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Division of Parks and Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="198">
<coordinates>-74.648225,39.643407,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="201">
<name>Batsto Station Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/batsto-station-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/batsto-station-fire-tower/">http://nhlr.org/lookouts/us/nj/batsto-station-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 565, NJ 18 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bob Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Wharton State Forest Burlington County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 38.976' W 074° 38.567' (view using Google Maps) N 39° 38' 59" W 074° 38' 34" N 39.649602° W 074.642786°</td>
</tr>
<tr>
<td>Elevation</td>
<td>70 ft (21 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1924</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Forest Fire Service, Division B</td>
</tr>
</tbody>
</table>]]></description>
<Point id="200">
<coordinates>-74.642786,39.649602,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="203">
<name>Battle Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/sd/battle-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sd/battle-mountain-lookout/">http://nhlr.org/lookouts/us/sd/battle-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1670, SD 9 (view other lookouts in United States, South Dakota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 10, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Battle Mountain – Friendshuh Game Production Area Fall River County, South Dakota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 26.542' W 103° 27.225' (view using Google Maps) N 43° 26' 33" W 103° 27' 13" N 43.442372° W 103.453744°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,363 ft (1,330 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>South Dakota State Forestry Department</td>
</tr>
<tr>
<td>Cooperators</td>
<td>South Dakota State Fish and Game</td>
</tr>
</tbody>
</table>]]></description>
<Point id="202">
<coordinates>-103.453744,43.442372,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="205">
<name>Baughman Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/baughman-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/baughman-mountain-lookout/">http://nhlr.org/lookouts/us/or/baughman-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 331, OR 33 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 2000</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Douglas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 16.085' W 123° 34.804' (view using Google Maps) N 43° 16' 05" W 123° 34' 48" N 43.268075° W 123.580067°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,602 ft (793 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>Douglas Forest Protective Association</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Douglas Forest Protective Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="204">
<coordinates>-123.580067,43.268075,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="207">
<name>Bear Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bear-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bear-butte-lookout/">http://nhlr.org/lookouts/us/or/bear-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1605, OR 133 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 05.989' W 121° 24.908' (view using Google Maps) N 43° 05' 59" W 121° 24' 54" N 43.099822° W 121.415130°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,503 ft (1,677 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1949</td>
</tr>
<tr>
<td>Administered by</td>
<td>Klamath Forest Protective Association</td>
</tr>
<tr>
<td>Cooperators</td>
<td>The Weyerhaeuser Company</td>
</tr>
</tbody>
</table>]]></description>
<Point id="206">
<coordinates>-121.41513,43.099822,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="209">
<name>Bear Creek Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/bear-creek-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/bear-creek-point-lookout/">http://nhlr.org/lookouts/us/id/bear-creek-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 748, ID 50 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 20, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jill Osborn</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon-Challis National Forest Valley County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 53.587' W 114° 48.307' (view using Google Maps) N 44° 53' 35" W 114° 48' 18" N 44.893120° W 114.805110°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,629 ft (2,630 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Middle Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="208">
<coordinates>-114.80511,44.89312,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="211">
<name>Bear Mountain (Shasta Bear) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bear-mountain-shasta-bear-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bear-mountain-shasta-bear-lookout/">http://nhlr.org/lookouts/us/ca/bear-mountain-shasta-bear-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1377, CA 200 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 31, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Shasta County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 43.533' W 122° 15.542' (view using Google Maps) N 40° 43' 32" W 122° 15' 33" N 40.725556° W 122.259028°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,628 ft (801 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1980</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection - Shasta-Trinity Unit (Cal Fire SHU)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="210">
<coordinates>-122.259028,40.725556,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="213">
<name>Bear Mountain (Siskiyou-Bear) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bear-mountain-siskiyou-bear-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bear-mountain-siskiyou-bear-lookout/">http://nhlr.org/lookouts/us/ca/bear-mountain-siskiyou-bear-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1384, CA 207 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 24, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 18.086' W 121° 43.140' (view using Google Maps) N 41° 18' 05" W 121° 43' 08" N 41.301441° W 121.718995°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,835 ft (1,779 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1975</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection</td>
</tr>
<tr>
<td>Cooperators</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="212">
<coordinates>-121.718995,41.301441,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="215">
<name>Bear Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/bear-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/bear-mountain-lookout/">http://nhlr.org/lookouts/us/az/bear-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 417, AZ 24 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 4, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, Director, AZ/NM FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Apache-Sitgreaves National Forest Greenlee County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 32.012' W 109° 08.671' (view using Google Maps) N 33° 32' 01" W 109° 08' 40" N 33.533530° W 109.144520°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,538 ft (2,602 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alpine Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="214">
<coordinates>-109.14452,33.53353,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="217">
<name>Bear Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/bear-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/bear-mountain-lookout/">http://nhlr.org/lookouts/us/id/bear-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 779, ID 64 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 25.867' W 114° 55.483' (view using Google Maps) N 46° 25' 52" W 114° 55' 29" N 46.431110° W 114.924720°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,184 ft (2,190 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1951</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Powell Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="216">
<coordinates>-114.92472,46.43111,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="219">
<name>Bear Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/sd/bear-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sd/bear-mountain-lookout/">http://nhlr.org/lookouts/us/sd/bear-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1203, SD 6 (view other lookouts in United States, South Dakota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 9, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Wheeler</td>
</tr>
<tr>
<td>Location</td>
<td>Black Hills National Forest Pennington County, South Dakota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 52.194' W 103° 44.640' (view using Google Maps) N 43° 52' 12" W 103° 44' 38" N 43.869902° W 103.743997°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,166 ft (2,184 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="218">
<coordinates>-103.743997,43.869902,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="221">
<name>Bear Mountain Lookout (Fresno County)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bear-mountain-lookout-fresno-county/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bear-mountain-lookout-fresno-county/">http://nhlr.org/lookouts/us/ca/bear-mountain-lookout-fresno-county/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1386, CA 209 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Fresno County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 44.749' W 119° 16.960' (view using Google Maps) N 36° 44' 45" W 119° 16' 58" N 36.745824° W 119.282661°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,395 ft (1,035 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Circa 1927</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection - Cal Fire Fresno-Kings Unit (FKU)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="220">
<coordinates>-119.282661,36.745824,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="223">
<name>Bear Valley Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/bear-valley-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/bear-valley-lookout/">http://nhlr.org/lookouts/us/id/bear-valley-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 929, ID 89 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 25, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Luke Channer</td>
</tr>
<tr>
<td>Location</td>
<td>Frank Church River of No Return Wilderness Valley County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 27.472' W 115° 22.947' (view using Google Maps) N 44° 27' 28" W 115° 22' 57" N 44.457860° W 115.382450°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,291 ft (2,527 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="222">
<coordinates>-115.38245,44.45786,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="225">
<name>Beardstown Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/beardstown-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/beardstown-lookout-tower/">http://nhlr.org/lookouts/us/tn/beardstown-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1272, TN 31 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 3, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Andrew T. Lutes</td>
</tr>
<tr>
<td>Location</td>
<td>Perry County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 45.258' W 087° 50.718' (view using Google Maps) N 35° 45' 16" W 087° 50' 43" N 35.754306° W 087.845306°</td>
</tr>
<tr>
<td>Elevation</td>
<td>823 ft (251 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="224">
<coordinates>-87.845306,35.754306,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="227">
<name>Bearfort Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/bearfort-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/bearfort-fire-tower/">http://nhlr.org/lookouts/us/nj/bearfort-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 244, NJ 6 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1997</td>
</tr>
<tr>
<td>Location</td>
<td>Newark Watershed (Pequannock Watershed) Passaic County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 06.254' W 074° 25.044' (view using Google Maps) N 41° 06' 15" W 074° 25' 03" N 41.104233° W 074.417400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,331 ft (406 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Forest Fire Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="226">
<coordinates>-74.4174,41.104233,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="229">
<name>Beartop Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/beartop-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/beartop-lookout/">http://nhlr.org/lookouts/us/mt/beartop-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1542, MT 105 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 12, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Helena-Lewis and Clark National Forest Teton County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 47.451' W 112° 51.398' (view using Google Maps) N 47° 47' 27" W 112° 51' 24" N 47.790850° W 112.856640°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,991 ft (2,436 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="228">
<coordinates>-112.85664,47.79085,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="231">
<name>Beartrap Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/beartrap-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/beartrap-lookout/">http://nhlr.org/lookouts/us/id/beartrap-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 936, ID 95 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 10, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Luke Channer</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon-Challis National Forest Lemhi County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 23.486' W 114° 26.635' (view using Google Maps) N 45° 23' 29" W 114° 26' 38" N 45.391430° W 114.443920°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,078 ft (2,462 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Removed</td>
<td>2012</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>US 1931, ID 23</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>North Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="230">
<coordinates>-114.44392,45.39143,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="233">
<name>Bearwallow Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/bearwallow-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/bearwallow-lookout/">http://nhlr.org/lookouts/us/va/bearwallow-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1171, VA 37 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 23, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Reynolds</td>
</tr>
<tr>
<td>Location</td>
<td>Tazewell County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 13.248' W 081° 45.026' (view using Google Maps) N 37° 13' 15" W 081° 45' 02" N 37.220804° W 081.750427°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,023 ft (921 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>Arthur Stiltner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="232">
<coordinates>-81.750427,37.220804,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="235">
<name>Bearwallow Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/bearwallow-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/bearwallow-mountain-lookout/">http://nhlr.org/lookouts/us/nm/bearwallow-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1585, NM 43 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Gutzman</td>
</tr>
<tr>
<td>Location</td>
<td>Gila National Forest Catron County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 26.969' W 108° 40.119' (view using Google Maps) N 33° 26' 58" W 108° 40' 07" N 33.449488° W 108.668643°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,970 ft (3,039 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1923</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="234">
<coordinates>-108.668643,33.449488,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="237">
<name>Bearwallow Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nc/bearwallow-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/bearwallow-mountain-lookout/">http://nhlr.org/lookouts/us/nc/bearwallow-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 718, NC 12 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 2, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Peter J. Barr</td>
</tr>
<tr>
<td>Location</td>
<td>Henderson County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 27.661' W 082° 21.440' (view using Google Maps) N 35° 27' 40" W 082° 21' 26" N 35.461010° W 082.357340°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,232 ft (1,290 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>NC Division of Forest Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>NC Division of Forest Resources, District 9</td>
</tr>
</tbody>
</table>]]></description>
<Point id="236">
<coordinates>-82.35734,35.46101,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="239">
<name>Beauregard Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/beauregard-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/beauregard-lookout-tower/">http://nhlr.org/lookouts/us/al/beauregard-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 842, AL 21 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 2, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Lee County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 32.283' W 085° 22.283' (view using Google Maps) N 32° 32' 17" W 085° 22' 17" N 32.538050° W 085.371380°</td>
</tr>
<tr>
<td>Elevation</td>
<td>705 ft (215 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1948</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="238">
<coordinates>-85.37138,32.53805,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="241">
<name>Beaver Creek (West Point) Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/oh/beaver-creek-west-point-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/oh/beaver-creek-west-point-fire-tower/">http://nhlr.org/lookouts/us/oh/beaver-creek-west-point-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1022, OH 11 (view other lookouts in United States, Ohio)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark</td>
</tr>
<tr>
<td>Location</td>
<td>Beaver Creek State Forest Columbiana County, Ohio</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 41.053' W 080° 41.400' (view using Google Maps) N 40° 41' 03" W 080° 41' 24" N 40.684214° W 080.690005°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,400 ft (427 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ohio Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="240">
<coordinates>-80.690005,40.684214,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="243">
<name>Beaver Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ok/beaver-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ok/beaver-fire-tower/">http://nhlr.org/lookouts/us/ok/beaver-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 240, OK 3 (view other lookouts in United States, Oklahoma)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 7, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Patrick McDowell, Oklahoma Forestry Services</td>
</tr>
<tr>
<td>Location</td>
<td>Cookson Hills Wildlife Management Area Cherokee County, Oklahoma</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 40.120' W 094° 48.703' (view using Google Maps) N 35° 40' 07" W 094° 48' 42" N 35.668660° W 094.811723°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,629 ft (497 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oklahoma Forestry Services</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Oklahoma Forestry Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="242">
<coordinates>-94.811723,35.66866,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="245">
<name>Beaver Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/beaver-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/beaver-lookout/">http://nhlr.org/lookouts/us/wi/beaver-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1210, WI 16 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 19, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Marinette County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 10.689' W 088° 06.566' (view using Google Maps) N 45° 10' 41" W 088° 06' 34" N 45.178142° W 088.109436°</td>
</tr>
<tr>
<td>Elevation</td>
<td>930 ft (283 m)</td>
</tr>
<tr>
<td>Built</td>
<td>November 1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="244">
<coordinates>-88.109436,45.178142,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="247">
<name>Beaver Mountain Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/beaver-mountain-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/beaver-mountain-lookout-tower/">http://nhlr.org/lookouts/us/al/beaver-mountain-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1047, AL 59 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bryan Price</td>
</tr>
<tr>
<td>Location</td>
<td>St. Clair County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 48.164' W 086° 12.166' (view using Google Maps) N 33° 48' 10" W 086° 12' 10" N 33.802737° W 086.202763°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,087 ft (331 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1948</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="246">
<coordinates>-86.202763,33.802737,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="249">
<name>Beaver Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/beaver-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/beaver-ridge-lookout/">http://nhlr.org/lookouts/us/id/beaver-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 780, ID 65 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 33.784' W 114° 26.533' (view using Google Maps) N 46° 33' 47" W 114° 26' 32" N 46.563060° W 114.442220°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,370 ft (2,246 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1963</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Powell Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="248">
<coordinates>-114.44222,46.56306,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="251">
<name>Bedford Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/va/bedford-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/bedford-fire-tower/">http://nhlr.org/lookouts/us/va/bedford-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1037, VA 17 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Scholetzky</td>
</tr>
<tr>
<td>Location</td>
<td>Bedford County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 19.246' W 079° 31.376' (view using Google Maps) N 37° 19' 15" W 079° 31' 23" N 37.320768° W 079.522936°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,182 ft (360 m)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="250">
<coordinates>-79.522936,37.320768,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="253">
<name>Bee Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ar/bee-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/bee-mountain-lookout/">http://nhlr.org/lookouts/us/ar/bee-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 184, AR 3 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 16, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael A. Pfeiffer, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Ouachita National Forest Polk County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 29.410' W 094° 15.500' (view using Google Maps) N 34° 29' 25" W 094° 15' 30" N 34.490160° W 094.258328°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,853 ft (565 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mena Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="252">
<coordinates>-94.258328,34.49016,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="255">
<name>Beebe Hill Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/beebe-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/beebe-hill-fire-tower/">http://nhlr.org/lookouts/us/ny/beebe-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 242, NY 19 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1997</td>
</tr>
<tr>
<td>Location</td>
<td>Beebe Hill State Forest Columbia County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 20.153' W 073° 29.169' (view using Google Maps) N 42° 20' 09" W 073° 29' 10" N 42.335890° W 073.486148°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,726 ft (526 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NY Dept. of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New York Dept. of Environmental Conservation and the Forest Fire Lookout Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="254">
<coordinates>-73.486148,42.33589,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="257">
<name>Beech Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/me/beech-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/me/beech-mountain-lookout/">http://nhlr.org/lookouts/us/me/beech-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 60, ME 1 (view other lookouts in United States, Maine)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 16, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert W. Reynolds, Supt., Acadia National Park</td>
</tr>
<tr>
<td>Location</td>
<td>Acadia National Park Hancock County, Maine</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 18.663' W 068° 20.728' (view using Google Maps) N 44° 18' 40" W 068° 20' 44" N 44.311050° W 068.345474°</td>
</tr>
<tr>
<td>Elevation</td>
<td>807 ft (246 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1962</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Acadia National Park</td>
</tr>
</tbody>
</table>]]></description>
<Point id="256">
<coordinates>-68.345474,44.31105,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="259">
<name>Belfry Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/belfry-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/belfry-fire-tower/">http://nhlr.org/lookouts/us/ny/belfry-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1173, NY 38 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 23, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Hammond Pond Wild Forest Essex County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 05.871' W 073° 32.874' (view using Google Maps) N 44° 05' 52" W 073° 32' 52" N 44.097853° W 073.547892°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,858 ft (566 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1917</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Department of Environmental Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="258">
<coordinates>-73.547892,44.097853,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="261">
<name>Belknap Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nh/belknap-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nh/belknap-mountain-lookout/">http://nhlr.org/lookouts/us/nh/belknap-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 404, NH 5 (view other lookouts in United States, New Hampshire)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 12, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Chris Haartz, NH Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Belknap County, New Hampshire</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 31.762' W 071° 20.000' (view using Google Maps) N 43° 31' 46" W 071° 19' 60" N 43.529360° W 071.333330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,139 ft (347 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NH Dept. of Resources and Economic Development</td>
</tr>
<tr>
<td>Cooperators</td>
<td>NH Div. of Forests and Lands</td>
</tr>
</tbody>
</table>]]></description>
<Point id="260">
<coordinates>-71.33333,43.52936,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="263">
<name>Bell Knob Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/wv/bell-knob-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wv/bell-knob-fire-tower/">http://nhlr.org/lookouts/us/wv/bell-knob-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1148, WV 16 (view other lookouts in United States, West Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian M. Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Monongahela National Forest Grant County, West Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 00.008' W 079° 19.394' (view using Google Maps) N 39° 00' 01" W 079° 19' 24" N 39.000141° W 079.323228°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,143 ft (1,263 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1943</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="262">
<coordinates>-79.323228,39.000141,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="265">
<name>Belleplain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/belleplain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/belleplain-fire-tower/">http://nhlr.org/lookouts/us/nj/belleplain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 245, NJ 7 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1997</td>
</tr>
<tr>
<td>Location</td>
<td>Belleplain State Forest Cape May County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 17.036' W 074° 50.948' (view using Google Maps) N 39° 17' 02" W 074° 50' 57" N 39.283933° W 074.849133°</td>
</tr>
<tr>
<td>Elevation</td>
<td>56 ft (17 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Forest Fire Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="264">
<coordinates>-74.849133,39.283933,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="267">
<name>Belleville Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/belleville-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/belleville-lookout-tower/">http://nhlr.org/lookouts/us/al/belleville-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 862, AL 40 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Conecuh County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 31° 27.438' W 087° 06.468' (view using Google Maps) N 31° 27' 26" W 087° 06' 28" N 31.457301° W 087.107800°</td>
</tr>
<tr>
<td>Elevation</td>
<td>423 ft (129 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="266">
<coordinates>-87.1078,31.457301,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="269">
<name>Bemidji Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mn/bemidji-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/bemidji-fire-tower/">http://nhlr.org/lookouts/us/mn/bemidji-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 710, MN 9 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 2, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>David Quam, Director, MN Chapter of the FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Hubbard County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 05.696' W 094° 56.725' (view using Google Maps) N 47° 05' 42" W 094° 56' 44" N 47.094930° W 094.945420°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,521 ft (464 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>Northern Lights Council No. 429, Boy Scouts of America</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Steve and Ehren Inkel and Ken Nye of Diversified Builders, Andy Kietzman (Camp Ranger) and MN chapter of the FFLA</td>
</tr>
</tbody>
</table>]]></description>
<Point id="268">
<coordinates>-94.94542,47.09493,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="271">
<name>Ben Draper Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mn/ben-draper-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/ben-draper-lookout/">http://nhlr.org/lookouts/us/mn/ben-draper-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 156, MN 5 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 19, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Anderson, Program Forester, Pequot Lakes Area</td>
</tr>
<tr>
<td>Location</td>
<td>Cass County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 55.521' W 093° 55.452' (view using Google Maps) N 46° 55' 31" W 093° 55' 27" N 46.925350° W 093.924202°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,517 ft (462 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Department of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Minnesota Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="270">
<coordinates>-93.924202,46.92535,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="273">
<name>Benchmark Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/co/benchmark-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/co/benchmark-lookout/">http://nhlr.org/lookouts/us/co/benchmark-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 762, CO 9 (view other lookouts in United States, Colorado)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 17, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Unknown</td>
</tr>
<tr>
<td>Location</td>
<td>San Juan National Forest Dolores County, Colorado</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 46.024' W 108° 34.279' (view using Google Maps) N 37° 46' 01" W 108° 34' 17" N 37.767070° W 108.571310°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,262 ft (2,823 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1970</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Dolores Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="272">
<coordinates>-108.57131,37.76707,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="275">
<name>Bennettsville Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/bennettsville-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/bennettsville-tower/">http://nhlr.org/lookouts/us/sc/bennettsville-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 967, SC 20 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 24, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch, Jr., FFLA Area Rep</td>
</tr>
<tr>
<td>Location</td>
<td>Sumter County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 54.478' W 080° 32.049' (view using Google Maps) N 33° 54' 29" W 080° 32' 03" N 33.907961° W 080.534147°</td>
</tr>
<tr>
<td>Elevation</td>
<td>248 ft (76 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1938</td>
</tr>
<tr>
<td>Administered by</td>
<td>Billy McIntosh, Owner</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Billy McIntosh, Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="274">
<coordinates>-80.534147,33.907961,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="277">
<name>Ben's Knob Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/wv/bens-knob-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wv/bens-knob-fire-tower/">http://nhlr.org/lookouts/us/wv/bens-knob-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1696, WV 27 (view other lookouts in United States, West Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 16, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Rocco Germani</td>
</tr>
<tr>
<td>Location</td>
<td>Privately Owned Land Hampshire County, West Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 15.464' W 078° 31.556' (view using Google Maps) N 39° 15' 28" W 078° 31' 33" N 39.257735° W 078.525926°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,028 ft (618 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1952-53</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private Land Owner</td>
</tr>
<tr>
<td>Cooperators</td>
<td>West Virginia Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="276">
<coordinates>-78.525926,39.257735,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="279">
<name>Bernheim Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ky/bernheim-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ky/bernheim-lookout/">http://nhlr.org/lookouts/us/ky/bernheim-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 262, KY 3 (view other lookouts in United States, Kentucky)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 22, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Roger W. Fauver, Land and Facilities Manager, Bernheim Arboretum and Research Forest</td>
</tr>
<tr>
<td>Location</td>
<td>Bernheim Arboretum and Research Forest Bullitt County, Kentucky</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 54.133' W 085° 37.632' (view using Google Maps) N 37° 54' 08" W 085° 37' 38" N 37.902210° W 085.627206°</td>
</tr>
<tr>
<td>Elevation</td>
<td>887 ft (270 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bernheim Arboretum and Research Forest</td>
</tr>
<tr>
<td>Cooperators</td>
<td>I.W. Bernheim Foundation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="278">
<coordinates>-85.627206,37.90221,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="281">
<name>Berray Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/berray-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/berray-mountain-lookout/">http://nhlr.org/lookouts/us/mt/berray-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 181, MT 20 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 20, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai National Forest Sanders County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 08.323' W 115° 49.689' (view using Google Maps) N 48° 08' 19" W 115° 49' 41" N 48.138720° W 115.828155°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,063 ft (1,848 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Cabinet Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="280">
<coordinates>-115.828155,48.13872,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="283">
<name>Berry Hill Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/berry-hill-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/berry-hill-tower/">http://nhlr.org/lookouts/us/ny/berry-hill-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 54, NY 3 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 4, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Edwin Pierce, Regional Ranger, New York State Dept. of Environmental Conservation</td>
</tr>
<tr>
<td>Location</td>
<td>Chenango County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 32.985' W 075° 41.418' (view using Google Maps) N 42° 32' 59" W 075° 41' 25" N 42.549750° W 075.690300°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,960 ft (597 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Dept. of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New York State Dept. of Environmental Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="282">
<coordinates>-75.6903,42.54975,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="285">
<name>Bertha Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/bertha-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/bertha-hill-lookout/">http://nhlr.org/lookouts/us/id/bertha-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 29, ID 3 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 8, 1991</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Richard Bovey, Chief Fire Warden, Clearwater-Potlatch Timber Protective Association, Inc.</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 45.830' W 115° 47.505' (view using Google Maps) N 46° 45' 50" W 115° 47' 30" N 46.763840° W 115.791751°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,477 ft (1,669 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Potlatch Corporation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Clearwater-Potlatch Timber Protective Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="284">
<coordinates>-115.791751,46.76384,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="287">
<name>Bibb Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/bibb-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/bibb-lookout-tower/">http://nhlr.org/lookouts/us/al/bibb-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 809, AL 10 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Bibb County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 03.997' W 087° 08.445' (view using Google Maps) N 33° 03' 60" W 087° 08' 27" N 33.066620° W 087.140750°</td>
</tr>
<tr>
<td>Elevation</td>
<td>575 ft (175 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1949</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="286">
<coordinates>-87.14075,33.06662,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="289">
<name>Bickle Knob Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/wv/bickle-knob-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wv/bickle-knob-fire-tower/">http://nhlr.org/lookouts/us/wv/bickle-knob-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1101, WV 12 (view other lookouts in United States, West Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Monongahela National Forest Randolph County, West Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 56.067' W 079° 43.886' (view using Google Maps) N 38° 56' 04" W 079° 43' 53" N 38.934454° W 079.731430°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,012 ft (1,223 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="288">
<coordinates>-79.73143,38.934454,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="291">
<name>Big Baldy Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/big-baldy-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/big-baldy-lookout/">http://nhlr.org/lookouts/us/id/big-baldy-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1446, ID 139 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 2, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Boise National Forest Valley County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 46.946' W 115° 13.134' (view using Google Maps) N 44° 46' 57" W 115° 13' 08" N 44.782427° W 115.218901°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,710 ft (2,960 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1959</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Boise National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="290">
<coordinates>-115.218901,44.782427,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="293">
<name>Big Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/big-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/big-butte-lookout/">http://nhlr.org/lookouts/us/wa/big-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 364, WA 45 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 8, 2000</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Umatilla National Forest Asotin County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 06.924' W 117° 14.886' (view using Google Maps) N 46° 06' 55" W 117° 14' 53" N 46.115400° W 117.248100°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,982 ft (1,519 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pomeroy Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="292">
<coordinates>-117.2481,46.1154,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="295">
<name>Big Creek Baldy Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/big-creek-baldy-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/big-creek-baldy-lookout/">http://nhlr.org/lookouts/us/mt/big-creek-baldy-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 341, MT 23 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 12, 2000</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai National Forest Lincoln County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 38.092' W 115° 32.729' (view using Google Maps) N 48° 38' 06" W 115° 32' 44" N 48.634865° W 115.545477°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,732 ft (1,747 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Libby Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="294">
<coordinates>-115.545477,48.634865,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="297">
<name>Big Flat Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/pa/big-flat-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/big-flat-fire-tower/">http://nhlr.org/lookouts/us/pa/big-flat-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1285, PA 69 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 30, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Reynolds</td>
</tr>
<tr>
<td>Location</td>
<td>Michael State Forest Cumberland County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 00.111' W 077° 24.446' (view using Google Maps) N 40° 00' 07" W 077° 24' 27" N 40.001850° W 077.407431°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,064 ft (629 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1921</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="296">
<coordinates>-77.407431,40.00185,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="299">
<name>Big Hill Lookout (Eldorado National Forest)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/big-hill-lookout-eldorado-national-forest/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/big-hill-lookout-eldorado-national-forest/">http://nhlr.org/lookouts/us/ca/big-hill-lookout-eldorado-national-forest/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 598, CA 69 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 21, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kathy Allison</td>
</tr>
<tr>
<td>Location</td>
<td>Eldorado National Forest El Dorado County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 50.543' W 120° 24.455' (view using Google Maps) N 38° 50' 33" W 120° 24' 27" N 38.842380° W 120.407580°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,132 ft (1,869 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1993</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pacific Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="298">
<coordinates>-120.40758,38.84238,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="301">
<name>Big Hill Lookout (Hoopa Indian Reservation)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/big-hill-lookout-hoopa-indian-reservation/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/big-hill-lookout-hoopa-indian-reservation/">http://nhlr.org/lookouts/us/ca/big-hill-lookout-hoopa-indian-reservation/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1316, CA 139 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 19, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Hoopa Indian Reservation Humboldt County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 05.860' W 123° 38.144' (view using Google Maps) N 41° 05' 52" W 123° 38' 09" N 41.097663° W 123.635732°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,587 ft (1,093 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930's</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bureau of Indian Affairs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="300">
<coordinates>-123.635732,41.097663,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="303">
<name>Big Hill Pond Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/big-hill-pond-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/big-hill-pond-lookout-tower/">http://nhlr.org/lookouts/us/tn/big-hill-pond-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1710, TN 43 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Big Hill Pond State Park McNairy County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 03.033' W 088° 44.400' (view using Google Maps) N 35° 03' 02" W 088° 44' 24" N 35.050550° W 088.740000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>601 ft (183 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee State Parks</td>
</tr>
</tbody>
</table>]]></description>
<Point id="302">
<coordinates>-88.74,35.05055,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="305">
<name>Big Hole Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/big-hole-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/big-hole-lookout/">http://nhlr.org/lookouts/us/mt/big-hole-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 781, MT 45 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Lolo National Forest Sanders County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 36.250' W 115° 04.217' (view using Google Maps) N 47° 36' 15" W 115° 04' 13" N 47.604170° W 115.070280°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,922 ft (2,110 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Plains/Thompson Falls Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="304">
<coordinates>-115.07028,47.60417,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="307">
<name>Big Knob Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ky/big-knob-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ky/big-knob-lookout/">http://nhlr.org/lookouts/us/ky/big-knob-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1273, KY 11 (view other lookouts in United States, Kentucky)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 3, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Wittenback</td>
</tr>
<tr>
<td>Location</td>
<td>Pulaski County, Kentucky</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 08.410' W 084° 32.062' (view using Google Maps) N 37° 08' 25" W 084° 32' 04" N 37.140165° W 084.534358°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,414 ft (431 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930s</td>
</tr>
<tr>
<td>Administered by</td>
<td>Unknown</td>
</tr>
</tbody>
</table>]]></description>
<Point id="306">
<coordinates>-84.534358,37.140165,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="309">
<name>Big Knob Tower</name>
<Point id="308">
<coordinates>0.0, 0.0, 0.0</coordinates>
</Point>
</Placemark>
<Placemark id="311">
<name>Big Lake Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/big-lake-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/big-lake-lookout/">http://nhlr.org/lookouts/us/az/big-lake-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 824, AZ 71 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 2, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Apache-Sitgreaves National Forests Apache County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 51.720' W 109° 23.489' (view using Google Maps) N 33° 51' 43" W 109° 23' 29" N 33.862000° W 109.391480°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,415 ft (2,870 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Springerville Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="310">
<coordinates>-109.39148,33.862,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="313">
<name>Big Lookout Mountain</name>
<atom:link>http://nhlr.org/lookouts/us/or/big-lookout-mountain/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/big-lookout-mountain/">http://nhlr.org/lookouts/us/or/big-lookout-mountain/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1606, OR 134 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Vale District - Bureau of Land Management Baker County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 36.532' W 117° 16.693' (view using Google Maps) N 44° 36' 32" W 117° 16' 42" N 44.608873° W 117.278220°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,127 ft (2,172 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1963</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bureau of Land Management</td>
</tr>
</tbody>
</table>]]></description>
<Point id="312">
<coordinates>-117.27822,44.608873,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="315">
<name>Big Pocono Lookout (1921)</name>
<atom:link>http://nhlr.org/lookouts/us/pa/big-pocono-lookout-1921/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/big-pocono-lookout-1921/">http://nhlr.org/lookouts/us/pa/big-pocono-lookout-1921/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 56, PA 1 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 11, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Stephen J. Cummings, Director, Pennsylvania Chapter, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Big Pocono State Park Monroe County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 02.514' W 075° 21.150' (view using Google Maps) N 41° 02' 31" W 075° 21' 09" N 41.041900° W 075.352500°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,083 ft (635 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1921</td>
</tr>
<tr>
<td>Removed</td>
<td>2017</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>District 19, Bureau of Forestry, Pennsylvania DER</td>
</tr>
</tbody>
</table>]]></description>
<Point id="314">
<coordinates>-75.3525,41.0419,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="317">
<name>Big Pocono Lookout (2017)</name>
<atom:link>http://nhlr.org/lookouts/us/pa/big-pocono-lookout-2017/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/big-pocono-lookout-2017/">http://nhlr.org/lookouts/us/pa/big-pocono-lookout-2017/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1264, PA 68 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 15, 2018</td>
</tr>
<tr>
<td>Location</td>
<td>Big Pocono State Park Monroe County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 02.514' W 075° 21.150' (view using Google Maps) N 41° 02' 31" W 075° 21' 09" N 41.041900° W 075.352500°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,083 ft (635 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1921</td>
</tr>
<tr>
<td>Removed</td>
<td>2017</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="316">
<coordinates>-75.3525,41.0419,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="319">
<name>Big Ridge Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/wv/big-ridge-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wv/big-ridge-fire-tower/">http://nhlr.org/lookouts/us/wv/big-ridge-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 893, WV 8 (view other lookouts in United States, West Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 7, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Beanblossom</td>
</tr>
<tr>
<td>Location</td>
<td>Lost River State Park Hardy County, West Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 54.839' W 078° 53.718' (view using Google Maps) N 38° 54' 50" W 078° 53' 43" N 38.913990° W 078.895300°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,211 ft (979 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>West Virginia Division of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>West Virginia Division of Natural Resources, Parks and Recreation Section</td>
</tr>
</tbody>
</table>]]></description>
<Point id="318">
<coordinates>-78.8953,38.91399,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="321">
<name>Big River Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/il/big-river-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/il/big-river-lookout/">http://nhlr.org/lookouts/us/il/big-river-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 80, IL 1 (view other lookouts in United States, Illinois)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 12, 1994</td>
</tr>
<tr>
<td>Nominated by</td>
<td>David A. Gillespie, Illinois Division of Forest Resources</td>
</tr>
<tr>
<td>Location</td>
<td>Big River State Forest Henderson County, Illinois</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 02.802' W 090° 55.836' (view using Google Maps) N 41° 02' 48" W 090° 55' 50" N 41.046700° W 090.930600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>576 ft (176 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Illinois Department of Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Illinois Department of Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="320">
<coordinates>-90.9306,41.0467,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="323">
<name>Big Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/big-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/big-rock-lookout/">http://nhlr.org/lookouts/us/or/big-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1607, OR 134 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Private Land Linn County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 16.083' W 122° 27.051' (view using Google Maps) N 44° 16' 05" W 122° 27' 03" N 44.268051° W 122.450845°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,507 ft (1,374 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>Linn Forest Protective Association</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Santiam Lumber Company</td>
</tr>
</tbody>
</table>]]></description>
<Point id="322">
<coordinates>-122.450845,44.268051,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="325">
<name>Big Soldier Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/big-soldier-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/big-soldier-lookout/">http://nhlr.org/lookouts/us/id/big-soldier-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 749, ID 51 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 20, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jill Osborn</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon-Challis National Forest Custer County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 34.168' W 115° 15.601' (view using Google Maps) N 44° 34' 10" W 115° 15' 36" N 44.569470° W 115.260020°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,993 ft (2,741 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Middle Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="324">
<coordinates>-115.26002,44.56947,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="327">
<name>Big Springs Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/big-springs-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/big-springs-lookout/">http://nhlr.org/lookouts/us/az/big-springs-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 197, AZ 5 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>David Lorenz, Arizona Registrar &amp; John Hanson, Archaeologist, Kaibab NF</td>
</tr>
<tr>
<td>Location</td>
<td>Kaibab National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 35.610' W 112° 20.077' (view using Google Maps) N 36° 35' 37" W 112° 20' 05" N 36.593497° W 112.334620°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,894 ft (2,406 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>North Kaibab Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="326">
<coordinates>-112.33462,36.593497,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="329">
<name>Big Springs Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/big-springs-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/big-springs-lookout/">http://nhlr.org/lookouts/us/id/big-springs-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1061, ID 105 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Byron Nelson</td>
</tr>
<tr>
<td>Location</td>
<td>Targhee National Forest Fremont County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 30.306' W 111° 14.706' (view using Google Maps) N 44° 30' 18" W 111° 14' 42" N 44.505100° W 111.245100°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,856 ft (2,090 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="328">
<coordinates>-111.2451,44.5051,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="331">
<name>Bill Williams Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/bill-williams-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/bill-williams-mountain-lookout/">http://nhlr.org/lookouts/us/az/bill-williams-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 384, AZ 21 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 1, 2001</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, Director, AZ/NM FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Kaibab National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 11.964' W 112° 12.252' (view using Google Maps) N 35° 11' 58" W 112° 12' 15" N 35.199400° W 112.204200°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,166 ft (2,794 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Williams Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="330">
<coordinates>-112.2042,35.1994,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="333">
<name>Birchdale Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mn/birchdale-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/birchdale-lookout/">http://nhlr.org/lookouts/us/mn/birchdale-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1483, MN 18 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jacob Hufnagle</td>
</tr>
<tr>
<td>Location</td>
<td>Koochiching County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 37.615' W 094° 04.844' (view using Google Maps) N 48° 37' 37" W 094° 04' 51" N 48.626922° W 094.080732°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,152 ft (351 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1928</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="332">
<coordinates>-94.080732,48.626922,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="335">
<name>Birdnest Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/birdnest-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/birdnest-lookout/">http://nhlr.org/lookouts/us/va/birdnest-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1092, VA 22 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>J. Nathan McDonald</td>
</tr>
<tr>
<td>Location</td>
<td>Northampton County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 26.344' W 075° 52.840' (view using Google Maps) N 37° 26' 21" W 075° 52' 50" N 37.439064° W 075.880672°</td>
</tr>
<tr>
<td>Elevation</td>
<td>33 ft (10 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Virginia Department of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="334">
<coordinates>-75.880672,37.439064,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="337">
<name>Bishop Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/bishop-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/bishop-mountain-lookout/">http://nhlr.org/lookouts/us/id/bishop-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 27, ID 2 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 15, 1991</td>
</tr>
<tr>
<td>Nominated by</td>
<td>James L. Caswell, Forest Supervisor and Charles G. Willingham, Forest Archaeologist, both of Targhee National Forest</td>
</tr>
<tr>
<td>Location</td>
<td>Targhee National Forest Fremont County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 19.987' W 111° 33.195' (view using Google Maps) N 44° 19' 59" W 111° 33' 12" N 44.333120° W 111.553245°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,784 ft (2,373 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ashton Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="336">
<coordinates>-111.553245,44.33312,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="339">
<name>Black Bay Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mn/black-bay-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/black-bay-lookout-tower/">http://nhlr.org/lookouts/us/mn/black-bay-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1304, MN 14 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 1, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jacob Hufnagle</td>
</tr>
<tr>
<td>Location</td>
<td>Koochiching County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 35.954' W 093° 10.415' (view using Google Maps) N 48° 35' 57" W 093° 10' 25" N 48.599236° W 093.173588°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,180 ft (360 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Department of Transportation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="338">
<coordinates>-93.173588,48.599236,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="341">
<name>Black Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/black-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/black-butte-lookout/">http://nhlr.org/lookouts/us/id/black-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1461, ID 153 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 29, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 29.372' W 115° 52.504' (view using Google Maps) N 45° 29' 22" W 115° 52' 30" N 45.489538° W 115.875070°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,731 ft (2,052 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1970</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Nez Perce National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="340">
<coordinates>-115.87507,45.489538,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="343">
<name>Black Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/black-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/black-butte-lookout/">http://nhlr.org/lookouts/us/mt/black-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1503, MT 81 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai NF Flathead County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 51.872' W 115° 07.517' (view using Google Maps) N 48° 51' 52" W 115° 07' 31" N 48.864540° W 115.125282°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,841 ft (2,085 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="342">
<coordinates>-115.125282,48.86454,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="345">
<name>Black Butte Lookout (Deschutes NF)</name>
<atom:link>http://nhlr.org/lookouts/us/or/black-butte-lookout-deschutes-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/black-butte-lookout-deschutes-nf/">http://nhlr.org/lookouts/us/or/black-butte-lookout-deschutes-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 91, OR 12 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 10, 1994</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Doug Newman (in 1991), Ron Johnson and Gary McAtee (1992)</td>
</tr>
<tr>
<td>Location</td>
<td>Deschutes National Forest Jefferson County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 23.990' W 121° 38.191' (view using Google Maps) N 44° 23' 59" W 121° 38' 11" N 44.399835° W 121.636512°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,360 ft (1,939 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Sisters Ranger District and Friends of Black Butte Lookout</td>
</tr>
</tbody>
</table>]]></description>
<Point id="344">
<coordinates>-121.636512,44.399835,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="347">
<name>Black Butte Lookout (Malheur NF)</name>
<atom:link>http://nhlr.org/lookouts/us/or/black-butte-lookout-malheur-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/black-butte-lookout-malheur-nf/">http://nhlr.org/lookouts/us/or/black-butte-lookout-malheur-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 951, OR 123 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 32.402' W 119° 08.320' (view using Google Maps) N 44° 32' 24" W 119° 08' 19" N 44.540030° W 119.138660°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,235 ft (1,900 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Prairie City Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="346">
<coordinates>-119.13866,44.54003,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="349">
<name>Black Creek (Grassy Knob) Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/black-creek-grassy-knob-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/black-creek-grassy-knob-tower/">http://nhlr.org/lookouts/us/tn/black-creek-grassy-knob-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1003, TN 17 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 27, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford</td>
</tr>
<tr>
<td>Location</td>
<td>Scott County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 23.233' W 084° 36.683' (view using Google Maps) N 36° 23' 14" W 084° 36' 41" N 36.387222° W 084.611389°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,560 ft (475 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1951</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="348">
<coordinates>-84.611389,36.387222,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="351">
<name>Black Elk Peak (Harney Peak) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/sd/black-elk-peak-harney-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sd/black-elk-peak-harney-peak-lookout/">http://nhlr.org/lookouts/us/sd/black-elk-peak-harney-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 18, SD 2 (view other lookouts in United States, South Dakota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 13, 1991</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Frank J. Cross, District Ranger, USFS, Black Hills National Forest, Custer Ranger District</td>
</tr>
<tr>
<td>Location</td>
<td>Black Hills National Forest Pennington County, South Dakota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 51.941' W 103° 31.854' (view using Google Maps) N 43° 51' 56" W 103° 31' 51" N 43.865680° W 103.530893°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,102 ft (2,165 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Custer Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="350">
<coordinates>-103.530893,43.86568,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="353">
<name>Black Fox Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/black-fox-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/black-fox-mountain-lookout/">http://nhlr.org/lookouts/us/ca/black-fox-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1353, CA 176 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 27, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Shasta-Trinity National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 20.795' W 121° 53.464' (view using Google Maps) N 41° 20' 48" W 121° 53' 28" N 41.346587° W 121.891070°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,516 ft (1,986 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Shasta-Trinity National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="352">
<coordinates>-121.89107,41.346587,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="355">
<name>Black Mountain Cooperative Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/black-mountain-cooperative-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/black-mountain-cooperative-lookout/">http://nhlr.org/lookouts/us/wy/black-mountain-cooperative-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 77, WY 3 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 30, 1994</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael H. Gagen, Wyoming State Forester</td>
</tr>
<tr>
<td>Location</td>
<td>Medicine Bow National Forest Albany County, Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 18.679' W 105° 22.544' (view using Google Maps) N 42° 18' 41" W 105° 22' 33" N 42.311310° W 105.375739°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,885 ft (2,403 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U. S. Forest Service, Wyoming State Forestry Division, Bureau of Land Management, Platte, Converse, and Albany Counties</td>
</tr>
<tr>
<td>Cooperators</td>
<td>U. S. Forest Service, Wyoming State Forestry Division, Bureau of Land Management, Platte, Converse, and Albany Counties</td>
</tr>
</tbody>
</table>]]></description>
<Point id="354">
<coordinates>-105.375739,42.31131,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="357">
<name>Black Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/black-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/black-mountain-fire-tower/">http://nhlr.org/lookouts/us/ga/black-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 703, GA 6 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 26, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>John Mayer</td>
</tr>
<tr>
<td>Location</td>
<td>Chattahoochee National Forest Union County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 40.800' W 084° 00.583' (view using Google Maps) N 34° 40' 48" W 084° 00' 35" N 34.680000° W 084.009720°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,114 ft (949 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1949</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Blue Ridge Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="356">
<coordinates>-84.00972,34.68,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="359">
<name>Black Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/black-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/black-mountain-fire-tower/">http://nhlr.org/lookouts/us/ny/black-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1276, NY 44 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 3, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Black Mountain Section of the Lake George Wild Forest Adirondack Park Washington County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 36.413' W 073° 31.860' (view using Google Maps) N 43° 36' 25" W 073° 31' 52" N 43.606891° W 073.531005°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,665 ft (812 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1918</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Department of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New York State Police</td>
</tr>
</tbody>
</table>]]></description>
<Point id="358">
<coordinates>-73.531005,43.606891,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="361">
<name>Black Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/black-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/black-mountain-lookout/">http://nhlr.org/lookouts/us/id/black-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 763, ID 53 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 6, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater National Forest Clearwater County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 52.733' W 115° 33.100' (view using Google Maps) N 46° 52' 44" W 115° 33' 06" N 46.878890° W 115.551670°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,077 ft (2,157 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1972</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>North Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="360">
<coordinates>-115.55167,46.87889,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="363">
<name>Black Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ky/black-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ky/black-mountain-lookout/">http://nhlr.org/lookouts/us/ky/black-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1054, KY 10 (view other lookouts in United States, Kentucky)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 16, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Harlan County, Kentucky</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 54.857' W 082° 53.641' (view using Google Maps) N 36° 54' 51" W 082° 53' 38" N 36.914276° W 082.894016°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,145 ft (1,263 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Penn Virginia Coal Company</td>
</tr>
</tbody>
</table>]]></description>
<Point id="362">
<coordinates>-82.894016,36.914276,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="365">
<name>Black Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/black-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/black-mountain-lookout/">http://nhlr.org/lookouts/us/nm/black-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1583, NM 41 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Gutzman</td>
</tr>
<tr>
<td>Location</td>
<td>Gila National Forest Catron County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 22.682' W 108° 13.633' (view using Google Maps) N 33° 22' 41" W 108° 13' 38" N 33.378030° W 108.227212°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,303 ft (2,836 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="364">
<coordinates>-108.227212,33.37803,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="367">
<name>Black Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/black-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/black-mountain-lookout/">http://nhlr.org/lookouts/us/wy/black-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 353, WY 9 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 2000</td>
</tr>
<tr>
<td>Location</td>
<td>Bighorn National Forest Sheridan County, Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 44.553' W 107° 22.907' (view using Google Maps) N 44° 44' 33" W 107° 22' 54" N 44.742545° W 107.381780°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,383 ft (2,860 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Big Horn National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="366">
<coordinates>-107.38178,44.742545,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="369">
<name>Black Mountain Lookout (Boundary County)</name>
<atom:link>http://nhlr.org/lookouts/us/id/black-mountain-lookout-boundary-county/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/black-mountain-lookout-boundary-county/">http://nhlr.org/lookouts/us/id/black-mountain-lookout-boundary-county/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1464, ID 156 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 2, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Idaho Panhandle National Forests Boundary County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 36.810' W 116° 14.865' (view using Google Maps) N 48° 36' 49" W 116° 14' 52" N 48.613497° W 116.247753°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,096 ft (1,858 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1963, Relocated 1975</td>
</tr>
<tr>
<td>Administered by</td>
<td>Idaho Department of Lands</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Kaniksu National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="368">
<coordinates>-116.247753,48.613497,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="371">
<name>Black Mountain Lookout (Fresno County)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/black-mountain-lookout-fresno-county/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/black-mountain-lookout-fresno-county/">http://nhlr.org/lookouts/us/ca/black-mountain-lookout-fresno-county/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1314, CA 137 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 19, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Fresno County Fresno County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 00.786' W 119° 27.136' (view using Google Maps) N 37° 00' 47" W 119° 27' 08" N 37.013097° W 119.452260°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,599 ft (1,097 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection - Fresno Kings Unit (Cal Fire FKU)</td>
</tr>
<tr>
<td>Cooperators</td>
<td>US Forest Service - Sierra National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="370">
<coordinates>-119.45226,37.013097,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="373">
<name>Black Mountain Lookout (Plumas NF)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/black-mountain-lookout-plumas-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/black-mountain-lookout-plumas-nf/">http://nhlr.org/lookouts/us/ca/black-mountain-lookout-plumas-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 692, CA 79 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 23, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Daniel Elliott, District Archaeologist</td>
</tr>
<tr>
<td>Location</td>
<td>Plumas National Forest Plumas County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 06.716' W 120° 19.217' (view using Google Maps) N 40° 06' 43" W 120° 19' 13" N 40.111940° W 120.320280°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,735 ft (2,053 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Beckwourth Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="372">
<coordinates>-120.32028,40.11194,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="375">
<name>Black Mountain Lookout (San Bernadino NF)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/black-mountain-lookout-san-bernadino-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/black-mountain-lookout-san-bernadino-nf/">http://nhlr.org/lookouts/us/ca/black-mountain-lookout-san-bernadino-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 289, CA 22 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 1, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>San Jacinto Ranger District</td>
</tr>
<tr>
<td>Location</td>
<td>San Bernardino National Forest Riverside County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 49.409' W 116° 45.376' (view using Google Maps) N 33° 49' 25" W 116° 45' 23" N 33.823480° W 116.756267°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,635 ft (2,327 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1962</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Fire Lookout Hosts, Southern California Mountains Foundation, and San Jacinto Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="374">
<coordinates>-116.756267,33.82348,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="377">
<name>Black Pinnacle Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/black-pinnacle-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/black-pinnacle-lookout/">http://nhlr.org/lookouts/us/az/black-pinnacle-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 436, AZ 32 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 20, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, AZ/NM Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Navajo Indian Reservation Apache County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 15.150' W 109° 09.378' (view using Google Maps) N 36° 15' 09" W 109° 09' 23" N 36.252500° W 109.156300°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,744 ft (2,360 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Navajo Indian Reservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bureau of Indian Affairs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="376">
<coordinates>-109.1563,36.2525,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="379">
<name>Black Pond Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/black-pond-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/black-pond-lookout-tower/">http://nhlr.org/lookouts/us/al/black-pond-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1159, AL 71 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Andrew Zerb</td>
</tr>
<tr>
<td>Location</td>
<td>Bankhead National Forest Winston County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 03.936' W 087° 20.130' (view using Google Maps) N 34° 03' 56" W 087° 20' 08" N 34.065600° W 087.335500°</td>
</tr>
<tr>
<td>Elevation</td>
<td>840 ft (256 m)</td>
</tr>
<tr>
<td>Built</td>
<td>circa 1936-1938</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="378">
<coordinates>-87.3355,34.0656,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="381">
<name>Black Rock Forest Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/black-rock-forest-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/black-rock-forest-fire-tower/">http://nhlr.org/lookouts/us/ny/black-rock-forest-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 681, NY 30 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Raymond J. Bombino, NY State Park Forest Ranger</td>
</tr>
<tr>
<td>Location</td>
<td>Black Rock Forest Orange County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 22.191' W 074° 06.053' (view using Google Maps) N 41° 22' 11" W 074° 06' 03" N 41.369850° W 074.100880°</td>
</tr>
<tr>
<td>Elevation</td>
<td>398 ft (121 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>Black Rock Forest Consortium</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Black Rock Forest Consortium</td>
</tr>
</tbody>
</table>]]></description>
<Point id="380">
<coordinates>-74.10088,41.36985,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="383">
<name>Black Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/black-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/black-rock-lookout/">http://nhlr.org/lookouts/us/az/black-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1574, AZ 78 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 15, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Wade Luther</td>
</tr>
<tr>
<td>Location</td>
<td>Arizona Strip District - Bureau of Land Management Mojave County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 47.569' W 113° 45.118' (view using Google Maps) N 36° 47' 34" W 113° 45' 07" N 36.792819° W 113.751968°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,375 ft (2,248 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1981</td>
</tr>
<tr>
<td>Administered by</td>
<td>Department of the Interior - Bureau of Land Management</td>
</tr>
</tbody>
</table>]]></description>
<Point id="382">
<coordinates>-113.751968,36.792819,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="385">
<name>Black Rock Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/black-rock-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/black-rock-mountain-lookout/">http://nhlr.org/lookouts/us/ca/black-rock-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1419, CA 161 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Shasta-Trinity National Forest Trinity County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 12.274' W 123° 00.579' (view using Google Maps) N 40° 12' 16" W 123° 00' 35" N 40.204571° W 123.009648°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,765 ft (2,367 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Shasta-Trinity National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="384">
<coordinates>-123.009648,40.204571,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="387">
<name>Black Spring Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/black-spring-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/black-spring-lookout/">http://nhlr.org/lookouts/us/mt/black-spring-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1531, MT 94 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 12, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Northern Cheyenne Tribe Rosebud County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 38.696' W 106° 47.415' (view using Google Maps) N 45° 38' 42" W 106° 47' 25" N 45.644940° W 106.790250°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,685 ft (1,123 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Northern Cheyenne Agency - Bureau of Indian Affairs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="386">
<coordinates>-106.79025,45.64494,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="389">
<name>Blackhall Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/blackhall-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/blackhall-lookout/">http://nhlr.org/lookouts/us/wy/blackhall-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 229, WY 4 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jerry E. Schmidt, Forest Supervisor, Medicine Bow-Routt N.F.</td>
</tr>
<tr>
<td>Location</td>
<td>Medicine Bow National Forest Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 01.968' W 106° 41.041' (view using Google Maps) N 41° 01' 58" W 106° 41' 02" N 41.032805° W 106.684016°</td>
</tr>
<tr>
<td>Elevation</td>
<td>10,913 ft (3,326 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Medicine Bow-Routt National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="388">
<coordinates>-106.684016,41.032805,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="391">
<name>Blackjack Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/blackjack-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/blackjack-tower/">http://nhlr.org/lookouts/us/al/blackjack-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 867, AL 45 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 18, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Clay County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 10.639' W 085° 41.296' (view using Google Maps) N 33° 10' 38" W 085° 41' 18" N 33.177312° W 085.688259°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,257 ft (383 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1949</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="390">
<coordinates>-85.688259,33.177312,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="393">
<name>Blacks Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/blacks-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/blacks-ridge-lookout/">http://nhlr.org/lookouts/us/ca/blacks-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1388, CA 211 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen National Forest Lassen County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 50.409' W 121° 10.559' (view using Google Maps) N 40° 50' 25" W 121° 10' 34" N 40.840149° W 121.175983°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,045 ft (1,843 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Lassen National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="392">
<coordinates>-121.175983,40.840149,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="395">
<name>Blacksher Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/blacksher-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/blacksher-lookout-tower/">http://nhlr.org/lookouts/us/al/blacksher-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 853, AL 31 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 17, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Uriah Monroe County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 31° 19.489' W 087° 34.042' (view using Google Maps) N 31° 19' 29" W 087° 34' 02" N 31.324814° W 087.567361°</td>
</tr>
<tr>
<td>Elevation</td>
<td>361 ft (110 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="394">
<coordinates>-87.567361,31.324814,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="397">
<name>Blackstone (Nottoway) Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/va/blackstone-nottoway-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/blackstone-nottoway-fire-tower/">http://nhlr.org/lookouts/us/va/blackstone-nottoway-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1036, VA 16 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Scholetzky</td>
</tr>
<tr>
<td>Location</td>
<td>Nottoway County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 05.967' W 077° 58.528' (view using Google Maps) N 37° 05' 58" W 077° 58' 32" N 37.099442° W 077.975473°</td>
</tr>
<tr>
<td>Elevation</td>
<td>451 ft (137 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
</tbody>
</table>]]></description>
<Point id="396">
<coordinates>-77.975473,37.099442,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="399">
<name>Blakey Ridge Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/va/blakey-ridge-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/blakey-ridge-fire-tower/">http://nhlr.org/lookouts/us/va/blakey-ridge-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 746, VA 8 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 17, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Peter Lascell</td>
</tr>
<tr>
<td>Location</td>
<td>Madison County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 25.644' W 078° 20.228' (view using Google Maps) N 38° 25' 39" W 078° 20' 14" N 38.427400° W 078.337130°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,140 ft (652 m)</td>
</tr>
<tr>
<td>Built</td>
<td>late 1930s</td>
</tr>
<tr>
<td>Removed</td>
<td>2018</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>US 1714, VA 16</td>
</tr>
<tr>
<td>Administered by</td>
<td>Rappahannock Electric Cooperative</td>
</tr>
</tbody>
</table>]]></description>
<Point id="398">
<coordinates>-78.33713,38.4274,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="401">
<name>Blalock Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/blalock-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/blalock-lookout-tower/">http://nhlr.org/lookouts/us/al/blalock-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1143, AL 70 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 21, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Andrew Zerbe</td>
</tr>
<tr>
<td>Location</td>
<td>Marion County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 03.828' W 087° 45.108' (view using Google Maps) N 34° 03' 50" W 087° 45' 06" N 34.063800° W 087.751800°</td>
</tr>
<tr>
<td>Elevation</td>
<td>857 ft (261 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1940s</td>
</tr>
<tr>
<td>Administered by</td>
<td>Charles Daniel Mullins</td>
</tr>
</tbody>
</table>]]></description>
<Point id="400">
<coordinates>-87.7518,34.0638,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="403">
<name>Bland Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bland-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bland-mountain-lookout/">http://nhlr.org/lookouts/us/or/bland-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 481, OR 74 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Douglas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 58.139' W 123° 07.080' (view using Google Maps) N 42° 58' 08" W 123° 07' 05" N 42.968980° W 123.118000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,574 ft (785 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1947</td>
</tr>
<tr>
<td>Administered by</td>
<td>Douglas Forest Protective Association</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Douglas Forest Protective Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="402">
<coordinates>-123.118,42.96898,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="405">
<name>Bloomer Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bloomer-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bloomer-hill-lookout/">http://nhlr.org/lookouts/us/ca/bloomer-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1308, CA 131 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 15, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Plumas National Forest Butte County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 39.114' W 121° 27.786' (view using Google Maps) N 39° 39' 07" W 121° 27' 47" N 39.651907° W 121.463107°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,005 ft (916 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1925</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Plumas National Forest, Butte County</td>
</tr>
</tbody>
</table>]]></description>
<Point id="404">
<coordinates>-121.463107,39.651907,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="407">
<name>Blue Anchor Station Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/blue-anchor-station-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/blue-anchor-station-fire-tower/">http://nhlr.org/lookouts/us/nj/blue-anchor-station-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 566, NJ 19 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bob Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Camden County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 40.978' W 074° 53.348' (view using Google Maps) N 39° 40' 59" W 074° 53' 21" N 39.682967° W 074.889133°</td>
</tr>
<tr>
<td>Elevation</td>
<td>152 ft (46 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Forest Fire Service, Division C</td>
</tr>
</tbody>
</table>]]></description>
<Point id="406">
<coordinates>-74.889133,39.682967,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="409">
<name>Blue Buck Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mo/blue-buck-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mo/blue-buck-fire-tower/">http://nhlr.org/lookouts/us/mo/blue-buck-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 878, MO 2 (view other lookouts in United States, Missouri)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 29, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Alex Biehl</td>
</tr>
<tr>
<td>Location</td>
<td>Mark Twain National Forest Douglas County, Missouri</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 57.136' W 092° 06.676' (view using Google Maps) N 36° 57' 08" W 092° 06' 41" N 36.952270° W 092.111270°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,442 ft (440 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ava/Cassville/Willow Springs Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="408">
<coordinates>-92.11127,36.95227,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="411">
<name>Blue Job Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nh/blue-job-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nh/blue-job-mountain-lookout/">http://nhlr.org/lookouts/us/nh/blue-job-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 405, NH 6 (view other lookouts in United States, New Hampshire)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 12, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Chris Haartz, NH Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Strafford County, New Hampshire</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 19.877' W 071° 06.984' (view using Google Maps) N 43° 19' 53" W 071° 06' 59" N 43.331280° W 071.116400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,357 ft (414 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NH Dept. of Resources and Economic Development</td>
</tr>
<tr>
<td>Cooperators</td>
<td>NH Div. of Forests and Lands</td>
</tr>
</tbody>
</table>]]></description>
<Point id="410">
<coordinates>-71.1164,43.33128,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="413">
<name>Blue Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/blue-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/blue-lookout/">http://nhlr.org/lookouts/us/az/blue-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 825, AZ 72 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 2, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Apache-Sitgreaves National Forests Greenlee County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 33.720' W 109° 17.822' (view using Google Maps) N 33° 33' 43" W 109° 17' 49" N 33.562000° W 109.297030°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,346 ft (2,849 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alpine Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="412">
<coordinates>-109.29703,33.562,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="415">
<name>Blue Mountain Fire Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/blue-mountain-fire-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/blue-mountain-fire-lookout/">http://nhlr.org/lookouts/us/ca/blue-mountain-fire-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1185, CA 116 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bill Luedeke</td>
</tr>
<tr>
<td>Location</td>
<td>Stanislaus National Forest Calaveras County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 20.523' W 120° 21.894' (view using Google Maps) N 38° 20' 31" W 120° 21' 54" N 38.342045° W 120.364897°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,071 ft (1,850 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1966</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="414">
<coordinates>-120.364897,38.342045,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="417">
<name>Blue Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/blue-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/blue-mountain-fire-tower/">http://nhlr.org/lookouts/us/ny/blue-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 109, NY 8 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 6, 1995</td>
</tr>
<tr>
<td>Location</td>
<td>Hamilton County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 52.326' W 074° 24.078' (view using Google Maps) N 43° 52' 20" W 074° 24' 05" N 43.872100° W 074.401300°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,759 ft (1,146 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NY Dept. of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>N.Y. Dept. of Environmental Conservation &amp; New York Chapter, Forest Fire Lookout Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="416">
<coordinates>-74.4013,43.8721,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="419">
<name>Blue Mountain Lookout (Kootenai NF)</name>
<atom:link>http://nhlr.org/lookouts/us/mt/blue-mountain-lookout-kootenai-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/blue-mountain-lookout-kootenai-nf/">http://nhlr.org/lookouts/us/mt/blue-mountain-lookout-kootenai-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 342, MT 24 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 12, 2000</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai National Forest Lincoln County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 29.895' W 115° 27.165' (view using Google Maps) N 48° 29' 54" W 115° 27' 10" N 48.498255° W 115.452743°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,978 ft (1,822 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Libby Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="418">
<coordinates>-115.452743,48.498255,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="421">
<name>Blue Mountain Lookout (Lolo NF)</name>
<atom:link>http://nhlr.org/lookouts/us/mt/blue-mountain-lookout-lolo-nf/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/blue-mountain-lookout-lolo-nf/">http://nhlr.org/lookouts/us/mt/blue-mountain-lookout-lolo-nf/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 171, MT 13 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 5, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Lolo National Forest Missoula County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 48.883' W 114° 11.198' (view using Google Maps) N 46° 48' 53" W 114° 11' 12" N 46.814720° W 114.186637°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,366 ft (1,940 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Missoula Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="420">
<coordinates>-114.186637,46.81472,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="423">
<name>Blue Mountain Lookout (Modoc National Forest)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/blue-mountain-lookout-modoc-national-forest/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/blue-mountain-lookout-modoc-national-forest/">http://nhlr.org/lookouts/us/ca/blue-mountain-lookout-modoc-national-forest/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1329, CA 152 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 22, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Modoc National Forest Modoc County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 49.811' W 120° 51.825' (view using Google Maps) N 41° 49' 49" W 120° 51' 49" N 41.830179° W 120.863749°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,744 ft (1,751 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1929/1962</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Modoc National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="422">
<coordinates>-120.863749,41.830179,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="425">
<name>Blue Nose Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/blue-nose-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/blue-nose-lookout/">http://nhlr.org/lookouts/us/id/blue-nose-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 930, ID 90 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 25, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Luke Channer</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon-Challis National Forest Lemhi County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 28.360' W 114° 21.511' (view using Google Maps) N 45° 28' 22" W 114° 21' 31" N 45.472660° W 114.358510°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,677 ft (2,645 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="424">
<coordinates>-114.35851,45.47266,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="427">
<name>Blue Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/blue-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/blue-ridge-lookout/">http://nhlr.org/lookouts/us/ca/blue-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 114, CA 5 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 8, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>James Rock and Candice Cook, both of the U.S. Forest Service</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 16.340' W 123° 11.280' (view using Google Maps) N 41° 16' 20" W 123° 11' 17" N 41.272335° W 123.187998°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,917 ft (1,804 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Salmon River Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="426">
<coordinates>-123.187998,41.272335,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="429">
<name>Blue Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/blue-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/blue-ridge-lookout/">http://nhlr.org/lookouts/us/wy/blue-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 255, WY 6 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 22, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Burns Davison, District Ranger, Washakie RD</td>
</tr>
<tr>
<td>Location</td>
<td>Shoshone National Forest Fremont County, Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 38.803' W 108° 52.434' (view using Google Maps) N 42° 38' 48" W 108° 52' 26" N 42.646710° W 108.873894°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,822 ft (2,994 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Washakie Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="428">
<coordinates>-108.873894,42.64671,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="431">
<name>Blue Rock Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/oh/blue-rock-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/oh/blue-rock-fire-tower/">http://nhlr.org/lookouts/us/oh/blue-rock-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 700, OH 5 (view other lookouts in United States, Ohio)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 20, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Steve W. Klan Sr.</td>
</tr>
<tr>
<td>Location</td>
<td>Blue Rock State Forest Muskingum County, Ohio</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 50.125' W 081° 50.424' (view using Google Maps) N 39° 50' 08" W 081° 50' 25" N 39.835420° W 081.840400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,088 ft (332 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1937</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ohio Department of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ohio Division of Forestry &amp; Ohio Fire Tower Restoration Project</td>
</tr>
</tbody>
</table>]]></description>
<Point id="430">
<coordinates>-81.8404,39.83542,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="433">
<name>Bluewater Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/bluewater-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/bluewater-lookout/">http://nhlr.org/lookouts/us/nm/bluewater-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1106, NM 32 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 30, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Gutzman</td>
</tr>
<tr>
<td>Location</td>
<td>Lincoln National Forest Otero County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 44.499' W 105° 28.140' (view using Google Maps) N 32° 44' 30" W 105° 28' 08" N 32.741656° W 105.469008°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,260 ft (2,213 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1937</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="432">
<coordinates>-105.469008,32.741656,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="435">
<name>Bluff Lake Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/bluff-lake-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/bluff-lake-lookout-tower/">http://nhlr.org/lookouts/us/ms/bluff-lake-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1671, MS 34 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 10, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Noxubee County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 16.755' W 088° 47.597' (view using Google Maps) N 33° 16' 45" W 088° 47' 36" N 33.279245° W 088.793285°</td>
</tr>
<tr>
<td>Elevation</td>
<td>253 ft (77 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Fish &amp; Wildlife</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="434">
<coordinates>-88.793285,33.279245,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="437">
<name>Bly Ranger Station Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bly-ranger-station-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bly-ranger-station-lookout/">http://nhlr.org/lookouts/us/or/bly-ranger-station-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 482, OR 75 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Fremont National Forest Klamath County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 23.908' W 121° 02.602' (view using Google Maps) N 42° 23' 54" W 121° 02' 36" N 42.398470° W 121.043370°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,365 ft (1,330 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bly Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="436">
<coordinates>-121.04337,42.39847,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="439">
<name>Boar Tush Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/al/boar-tush-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/boar-tush-lookout/">http://nhlr.org/lookouts/us/al/boar-tush-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1134, AL 67 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 27, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Andrew Zerbe</td>
</tr>
<tr>
<td>Location</td>
<td>Winston County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 11.523' W 087° 36.935' (view using Google Maps) N 34° 11' 31" W 087° 36' 56" N 34.192044° W 087.615579°</td>
</tr>
<tr>
<td>Elevation</td>
<td>930 ft (283 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="438">
<coordinates>-87.615579,34.192044,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="441">
<name>Boat Mountain Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ar/boat-mountain-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/boat-mountain-lookout-tower/">http://nhlr.org/lookouts/us/ar/boat-mountain-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1694, AR 13 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 14, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Newton County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 06.695' W 093° 01.913' (view using Google Maps) N 36° 06' 42" W 093° 01' 55" N 36.111587° W 093.031877°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,221 ft (677 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>AFC</td>
</tr>
</tbody>
</table>]]></description>
<Point id="440">
<coordinates>-93.031877,36.111587,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="443">
<name>Bois Forte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mn/bois-forte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/bois-forte-lookout/">http://nhlr.org/lookouts/us/mn/bois-forte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1484, MN 19 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jacob Hufnagle</td>
</tr>
<tr>
<td>Location</td>
<td>Nett Lake Indian Reservation Koochiching County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 07.646' W 093° 18.185' (view using Google Maps) N 48° 07' 39" W 093° 18' 11" N 48.127440° W 093.303090°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,322 ft (403 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bois Forte Band of Chippewa</td>
</tr>
</tbody>
</table>]]></description>
<Point id="442">
<coordinates>-93.30309,48.12744,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="445">
<name>Bolan Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bolan-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bolan-mountain-lookout/">http://nhlr.org/lookouts/us/or/bolan-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 483, OR 76 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Siskiyou National Forest Josephine County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 01.048' W 123° 27.257' (view using Google Maps) N 42° 01' 03" W 123° 27' 15" N 42.017470° W 123.454280°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,169 ft (1,880 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Illinois Valley Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="444">
<coordinates>-123.45428,42.01747,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="447">
<name>Bolivar Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bolivar-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bolivar-lookout/">http://nhlr.org/lookouts/us/ca/bolivar-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1354, CA 177 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 27, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 16.342' W 122° 47.740' (view using Google Maps) N 41° 16' 21" W 122° 47' 44" N 41.272368° W 122.795666°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,910 ft (2,106 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Klamath National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="446">
<coordinates>-122.795666,41.272368,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="449">
<name>Bonanza King Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bonanza-king-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bonanza-king-lookout/">http://nhlr.org/lookouts/us/ca/bonanza-king-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1056, CA 101 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Basque</td>
</tr>
<tr>
<td>Location</td>
<td>Shasta-Trinity National Forest Trinity County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 04.806' W 122° 37.468' (view using Google Maps) N 41° 04' 48" W 122° 37' 28" N 41.080095° W 122.624459°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,956 ft (2,120 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Shasta-Trinity National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="448">
<coordinates>-122.624459,41.080095,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="451">
<name>Bone Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bone-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bone-point-lookout/">http://nhlr.org/lookouts/us/or/bone-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1600, OR 132 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 8, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Danielle Sullivan</td>
</tr>
<tr>
<td>Location</td>
<td>Umatilla National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 59.128' W 119° 01.815' (view using Google Maps) N 44° 59' 08" W 119° 01' 49" N 44.985468° W 119.030257°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,517 ft (1,377 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1961</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oregon Department of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="450">
<coordinates>-119.030257,44.985468,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="453">
<name>Bonneau Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/bonneau-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/bonneau-tower/">http://nhlr.org/lookouts/us/sc/bonneau-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 968, SC 21 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 24, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch, Jr., FFLA Area Rep</td>
</tr>
<tr>
<td>Location</td>
<td>Sumter County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 55.972' W 080° 31.403' (view using Google Maps) N 33° 55' 58" W 080° 31' 24" N 33.932861° W 080.523381°</td>
</tr>
<tr>
<td>Elevation</td>
<td>236 ft (72 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1938</td>
</tr>
<tr>
<td>Administered by</td>
<td>Billy McIntosh, Owner</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Billy McIntosh, Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="452">
<coordinates>-80.523381,33.932861,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="455">
<name>Boot Jack Tower</name>
<atom:link>http://nhlr.org/lookouts/us/pa/boot-jack-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/boot-jack-tower/">http://nhlr.org/lookouts/us/pa/boot-jack-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1402, PA 70 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 24, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert McKay</td>
</tr>
<tr>
<td>Location</td>
<td>State Game Lands 44 Elk County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 24.022' W 078° 41.550' (view using Google Maps) N 41° 24' 01" W 078° 41' 33" N 41.400361° W 078.692502°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,204 ft (672 m)</td>
</tr>
<tr>
<td>Built</td>
<td>2018</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="454">
<coordinates>-78.692502,41.400361,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="457">
<name>Boucher Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/boucher-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/boucher-hill-lookout/">http://nhlr.org/lookouts/us/ca/boucher-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 394, CA 58 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 15, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Palomar Mountain State Park San Diego County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 20.070' W 116° 55.134' (view using Google Maps) N 33° 20' 04" W 116° 55' 08" N 33.334500° W 116.918900°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,406 ft (1,648 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1948</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Parks and Recreation - Palomar Mountain State Park</td>
</tr>
<tr>
<td>Cooperators</td>
<td>California Dept. of Forestry and Dept. of State Parks</td>
</tr>
</tbody>
</table>]]></description>
<Point id="456">
<coordinates>-116.9189,33.3345,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="459">
<name>Boulder Hill Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mn/boulder-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/boulder-hill-fire-tower/">http://nhlr.org/lookouts/us/mn/boulder-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 270, MN 7 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 15, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Curt Cogan, Minnesota Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Grand Rapids Itasca County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 13.741' W 093° 33.567' (view using Google Maps) N 47° 13' 44" W 093° 33' 34" N 47.229020° W 093.559450°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,276 ft (389 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Forest History Center</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Minnesota Forest History Center</td>
</tr>
</tbody>
</table>]]></description>
<Point id="458">
<coordinates>-93.55945,47.22902,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="461">
<name>Boulder Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/boulder-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/boulder-point-lookout/">http://nhlr.org/lookouts/us/mt/boulder-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 543, MT 38 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 12, 2004</td>
</tr>
<tr>
<td>Location</td>
<td>Bitterroot National Forest Ravalli County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 50.242' W 114° 17.360' (view using Google Maps) N 45° 50' 15" W 114° 17' 22" N 45.837370° W 114.289330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,688 ft (2,343 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>West Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="460">
<coordinates>-114.28933,45.83737,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="463">
<name>Bourne Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/bourne-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/bourne-fire-tower/">http://nhlr.org/lookouts/us/ma/bourne-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 586, MA 13 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 30, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Bourne Barnstable County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 45.250' W 070° 30.700' (view using Google Maps) N 41° 45' 15" W 070° 30' 42" N 41.754170° W 070.511670°</td>
</tr>
<tr>
<td>Elevation</td>
<td>127 ft (39 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1947</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 1</td>
</tr>
</tbody>
</table>]]></description>
<Point id="462">
<coordinates>-70.51167,41.75417,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="465">
<name>Branch Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/branch-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/branch-mountain-lookout/">http://nhlr.org/lookouts/us/ca/branch-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1392, CA 215 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 30, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Los Padres National Forest San Luis Obispo County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 11.115' W 120° 05.099' (view using Google Maps) N 35° 11' 07" W 120° 05' 06" N 35.185246° W 120.084990°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,768 ft (1,148 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Los Padres National Forest</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Buckhorn Ranch</td>
</tr>
</tbody>
</table>]]></description>
<Point id="464">
<coordinates>-120.08499,35.185246,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="467">
<name>Brawley Mountain Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/brawley-mountain-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/brawley-mountain-lookout-tower/">http://nhlr.org/lookouts/us/ga/brawley-mountain-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1290, GA 25 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 19, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Victoria Oliver</td>
</tr>
<tr>
<td>Location</td>
<td>Chattahoochee National Forest Fannin County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 48.133' W 084° 12.849' (view using Google Maps) N 34° 48' 08" W 084° 12' 51" N 34.802218° W 084.214153°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,060 ft (933 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="466">
<coordinates>-84.214153,34.802218,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="469">
<name>Breckenridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/breckenridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/breckenridge-lookout/">http://nhlr.org/lookouts/us/ca/breckenridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 378, CA 39 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 10, 2001</td>
</tr>
<tr>
<td>Location</td>
<td>Sequoia National Forest Kern County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 27.060' W 118° 34.962' (view using Google Maps) N 35° 27' 04" W 118° 34' 58" N 35.451000° W 118.582700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,386 ft (2,251 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Greenhorn Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="468">
<coordinates>-118.5827,35.451,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="471">
<name>Brewster Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/brewster-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/brewster-fire-tower/">http://nhlr.org/lookouts/us/ma/brewster-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 731, MA 42 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 14, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Deer Park Hill Barnstable County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 45.613' W 070° 02.491' (view using Google Maps) N 41° 45' 37" W 070° 02' 29" N 41.760220° W 070.041520°</td>
</tr>
<tr>
<td>Elevation</td>
<td>102 ft (31 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1949</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 1</td>
</tr>
</tbody>
</table>]]></description>
<Point id="470">
<coordinates>-70.04152,41.76022,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="473">
<name>Bridge Creek Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/bridge-creek-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/bridge-creek-lookout-tower/">http://nhlr.org/lookouts/us/al/bridge-creek-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 847, AL 25 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 7, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Lawrence County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 36.677' W 087° 16.061' (view using Google Maps) N 34° 36' 41" W 087° 16' 04" N 34.611278° W 087.267680°</td>
</tr>
<tr>
<td>Elevation</td>
<td>840 ft (256 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1949</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="472">
<coordinates>-87.26768,34.611278,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="475">
<name>Brimfield Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/brimfield-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/brimfield-fire-tower/">http://nhlr.org/lookouts/us/ma/brimfield-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1018, MA 47 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Steerage Rock Hampden County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 08.522' W 072° 13.455' (view using Google Maps) N 42° 08' 31" W 072° 13' 27" N 42.142033° W 072.224251°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,202 ft (366 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Massachusetts Bureau of Fire Control</td>
</tr>
</tbody>
</table>]]></description>
<Point id="474">
<coordinates>-72.224251,42.142033,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="477">
<name>Brogdon Hill (Gordon) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ga/brogdon-hill-gordon-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/brogdon-hill-gordon-lookout/">http://nhlr.org/lookouts/us/ga/brogdon-hill-gordon-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1238, GA 22 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 28, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Justin Peel</td>
</tr>
<tr>
<td>Location</td>
<td>Gordon County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 32.525' W 084° 55.673' (view using Google Maps) N 34° 32' 32" W 084° 55' 40" N 34.542090° W 084.927890°</td>
</tr>
<tr>
<td>Elevation</td>
<td>897 ft (273 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Georgia Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="476">
<coordinates>-84.92789,34.54209,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="479">
<name>Brooks Run Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/pa/brooks-run-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/brooks-run-fire-tower/">http://nhlr.org/lookouts/us/pa/brooks-run-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1256, PA 25 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 6, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford</td>
</tr>
<tr>
<td>Location</td>
<td>Cameron County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 25.736' W 078° 06.508' (view using Google Maps) N 41° 25' 44" W 078° 06' 31" N 41.428928° W 078.108475°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,367 ft (721 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="478">
<coordinates>-78.108475,41.428928,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="481">
<name>Brooks Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/brooks-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/brooks-tower/">http://nhlr.org/lookouts/us/al/brooks-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 895, AL 53 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Conecuh County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 31° 26.539' W 086° 42.901' (view using Google Maps) N 31° 26' 32" W 086° 42' 54" N 31.442316° W 086.715025°</td>
</tr>
<tr>
<td>Elevation</td>
<td>375 ft (114 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1962</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="480">
<coordinates>-86.715025,31.442316,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="483">
<name>Bruce Mound Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/bruce-mound-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/bruce-mound-lookout/">http://nhlr.org/lookouts/us/wi/bruce-mound-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1223, WI 27 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 16, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Clark County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 26.643' W 090° 47.604' (view using Google Maps) N 44° 26' 39" W 090° 47' 36" N 44.444046° W 090.793396°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,412 ft (430 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="482">
<coordinates>-90.793396,44.444046,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="485">
<name>Brule Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/brule-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/brule-lookout/">http://nhlr.org/lookouts/us/wi/brule-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1222, WI 26 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 16, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Douglas County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 27.964' W 091° 33.946' (view using Google Maps) N 46° 27' 58" W 091° 33' 57" N 46.466062° W 091.565771°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,362 ft (415 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="484">
<coordinates>-91.565771,46.466062,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="487">
<name>Brundage Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/brundage-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/brundage-lookout/">http://nhlr.org/lookouts/us/id/brundage-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1447, ID 140 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 2, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Payette National Forest Valley County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 00.169' W 116° 08.086' (view using Google Maps) N 45° 00' 10" W 116° 08' 05" N 45.002822° W 116.134767°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,569 ft (2,307 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1982</td>
</tr>
<tr>
<td>Administered by</td>
<td>Southern Idaho Timber Protective Association</td>
</tr>
<tr>
<td>Cooperators</td>
<td>US Forest Service, Idaho Department of Lands</td>
</tr>
</tbody>
</table>]]></description>
<Point id="486">
<coordinates>-116.134767,45.002822,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="489">
<name>Brush Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/brush-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/brush-mountain-lookout/">http://nhlr.org/lookouts/us/ca/brush-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1206, CA 122 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 9, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Barnes</td>
</tr>
<tr>
<td>Location</td>
<td>Six Rivers National Forest Humboldt County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 54.894' W 123° 40.135' (view using Google Maps) N 40° 54' 54" W 123° 40' 08" N 40.914905° W 123.668910°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,023 ft (1,226 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1979</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="488">
<coordinates>-123.66891,40.914905,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="491">
<name>Brush Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/oh/brush-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/oh/brush-ridge-lookout/">http://nhlr.org/lookouts/us/oh/brush-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 682, OH 3 (view other lookouts in United States, Ohio)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Andy Penfield</td>
</tr>
<tr>
<td>Location</td>
<td>Tar Hollow State Forest Ross County, Ohio</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 22.500' W 082° 45.784' (view using Google Maps) N 39° 22' 30" W 082° 45' 47" N 39.375000° W 082.763060°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,172 ft (357 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ohio Department of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ohio Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="490">
<coordinates>-82.76306,39.375,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="493">
<name>Brushy (Cibollito) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/brushy-cibollito-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/brushy-cibollito-lookout/">http://nhlr.org/lookouts/us/nm/brushy-cibollito-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1649, NM 48 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 7, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Isleta-Acoma Indian Reservation Cibola County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 43.171' W 107° 50.890' (view using Google Maps) N 34° 43' 10" W 107° 50' 53" N 34.719511° W 107.848159°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,776 ft (2,675 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Isleta-Acoma Indian Agency</td>
</tr>
</tbody>
</table>]]></description>
<Point id="492">
<coordinates>-107.848159,34.719511,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="495">
<name>Bryant Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bryant-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bryant-mountain-lookout/">http://nhlr.org/lookouts/us/or/bryant-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1608, OR 135 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Private Land Klamath County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 02.056' W 121° 16.577' (view using Google Maps) N 42° 02' 03" W 121° 16' 35" N 42.034269° W 121.276285°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,459 ft (1,969 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1981</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bureau of Land Management</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Loveness Timber Company</td>
</tr>
</tbody>
</table>]]></description>
<Point id="494">
<coordinates>-121.276285,42.034269,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="497">
<name>Buck Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/buck-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/buck-fire-tower/">http://nhlr.org/lookouts/us/ny/buck-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1707, NY 55 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 25, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Hamilton County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 03.133' W 074° 31.958' (view using Google Maps) N 44° 03' 08" W 074° 31' 58" N 44.052220° W 074.532640°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,425 ft (739 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private Owner (Cedar Heights Timber LLC)</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Hamilton County Government</td>
</tr>
</tbody>
</table>]]></description>
<Point id="496">
<coordinates>-74.53264,44.05222,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="499">
<name>Buck Hill Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ri/buck-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ri/buck-hill-fire-tower/">http://nhlr.org/lookouts/us/ri/buck-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 808, RI 4 (view other lookouts in United States, Rhode Island)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Burrillville Providence County, Rhode Island</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 58.628' W 071° 46.855' (view using Google Maps) N 41° 58' 38" W 071° 46' 51" N 41.977130° W 071.780910°</td>
</tr>
<tr>
<td>Elevation</td>
<td>730 ft (223 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1938</td>
</tr>
<tr>
<td>Administered by</td>
<td>RI Dept. of Environmental Mgmt.</td>
</tr>
<tr>
<td>Cooperators</td>
<td>RI Dept. of Environmental Mgmt.</td>
</tr>
</tbody>
</table>]]></description>
<Point id="498">
<coordinates>-71.78091,41.97713,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="501">
<name>Buck Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mi/buck-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mi/buck-hill-lookout/">http://nhlr.org/lookouts/us/mi/buck-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 980, MI 4 (view other lookouts in United States, Michigan)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 12, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Andy Evans</td>
</tr>
<tr>
<td>Location</td>
<td>Pictured Rocks National Lakeshore Alger County, Michigan</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 31.214' W 086° 21.793' (view using Google Maps) N 46° 31' 13" W 086° 21' 48" N 46.520235° W 086.363220°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,026 ft (313 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>State of Michigan</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Painted Rocks National Lakeshore</td>
</tr>
</tbody>
</table>]]></description>
<Point id="500">
<coordinates>-86.36322,46.520235,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="503">
<name>Buck Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nc/buck-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/buck-mountain-fire-tower/">http://nhlr.org/lookouts/us/nc/buck-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1407, NC 27 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 24, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gavin Auten</td>
</tr>
<tr>
<td>Location</td>
<td>Uwharrie National Forest Montgomery County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 24.408' W 079° 59.934' (view using Google Maps) N 35° 24' 24" W 079° 59' 56" N 35.406800° W 079.998900°</td>
</tr>
<tr>
<td>Elevation</td>
<td>832 ft (254 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="502">
<coordinates>-79.9989,35.4068,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="505">
<name>Buck Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/buck-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/buck-mountain-lookout/">http://nhlr.org/lookouts/us/az/buck-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 370, AZ 15 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 1, 2001</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, Director, AZ/NM FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Coconino National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 40.018' W 111° 24.910' (view using Google Maps) N 34° 40' 01" W 111° 24' 55" N 34.666970° W 111.415170°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,541 ft (2,298 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mogollon Rim Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="504">
<coordinates>-111.41517,34.66697,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="507">
<name>Buck Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/buck-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/buck-mountain-lookout/">http://nhlr.org/lookouts/us/wa/buck-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 362, WA 43 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 20, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Okanogan County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 26.196' W 119° 49.362' (view using Google Maps) N 48° 26' 12" W 119° 49' 22" N 48.436600° W 119.822700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,007 ft (1,831 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Washington Dept. of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Washington Dept. of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="506">
<coordinates>-119.8227,48.4366,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="509">
<name>Buck Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/buck-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/buck-rock-lookout/">http://nhlr.org/lookouts/us/ca/buck-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 284, CA 18 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 20, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Sequoia National Forest Tulare County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 44.160' W 118° 51.586' (view using Google Maps) N 36° 44' 10" W 118° 51' 35" N 36.736000° W 118.859765°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,408 ft (2,563 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1923</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Hume Lake Ranger District and Buck Rock Foundation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="508">
<coordinates>-118.859765,36.736,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="511">
<name>Buckeye Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/buckeye-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/buckeye-lookout/">http://nhlr.org/lookouts/us/wi/buckeye-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1201, WI 13 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 9, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Florence County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 53.811' W 088° 14.698' (view using Google Maps) N 45° 53' 49" W 088° 14' 42" N 45.896847° W 088.244972°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,505 ft (459 m)</td>
</tr>
<tr>
<td>Built</td>
<td>November 1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="510">
<coordinates>-88.244972,45.896847,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="513">
<name>Buckhorn Bally Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/buckhorn-bally-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/buckhorn-bally-lookout/">http://nhlr.org/lookouts/us/ca/buckhorn-bally-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1355, CA 178 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 27, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 55.177' W 122° 47.865' (view using Google Maps) N 41° 55' 11" W 122° 47' 52" N 41.919609° W 122.797757°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,160 ft (1,573 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Klamath National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="512">
<coordinates>-122.797757,41.919609,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="515">
<name>Buckhorn Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/buckhorn-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/buckhorn-mountain-lookout/">http://nhlr.org/lookouts/us/or/buckhorn-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1609, OR 136 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Wallowa-Whitman National Forest Wallowa County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 45.228' W 116° 49.376' (view using Google Maps) N 45° 45' 14" W 116° 49' 23" N 45.753806° W 116.822933°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,341 ft (1,628 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Relocated 1952</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Wallowa-Whitman National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="514">
<coordinates>-116.822933,45.753806,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="517">
<name>Buckhorn Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/pa/buckhorn-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/buckhorn-ridge-lookout/">http://nhlr.org/lookouts/us/pa/buckhorn-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 296, PA 8 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Anthony J. Cardwell, District Forester</td>
</tr>
<tr>
<td>Location</td>
<td>Delaware State Forest Pike County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 23.531' W 074° 49.980' (view using Google Maps) N 41° 23' 32" W 074° 49' 59" N 41.392175° W 074.833001°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,474 ft (449 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="516">
<coordinates>-74.833001,41.392175,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="519">
<name>Buckskin Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/buckskin-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/buckskin-lookout/">http://nhlr.org/lookouts/us/az/buckskin-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 462, AZ 47 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 31, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, AZ/NM Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>White Mountain/Fort Apache Reservation Navajo County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 16.120' W 110° 36.494' (view using Google Maps) N 34° 16' 07" W 110° 36' 30" N 34.268670° W 110.608230°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,361 ft (2,244 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>White Mountain Apache Agency</td>
</tr>
<tr>
<td>Cooperators</td>
<td>White Mountain Apache Agency</td>
</tr>
</tbody>
</table>]]></description>
<Point id="518">
<coordinates>-110.60823,34.26867,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="521">
<name>Bud Hill Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ar/bud-hill-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/bud-hill-lookout-tower/">http://nhlr.org/lookouts/us/ar/bud-hill-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1726, AR 18 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Calhoun County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 38.360' W 092° 27.602' (view using Google Maps) N 33° 38' 22" W 092° 27' 36" N 33.639330° W 092.460040°</td>
</tr>
<tr>
<td>Elevation</td>
<td>328 ft (100 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Arkansas Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="520">
<coordinates>-92.46004,33.63933,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="523">
<name>Budd Lake Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/budd-lake-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/budd-lake-fire-tower/">http://nhlr.org/lookouts/us/nj/budd-lake-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 246, NJ 8 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Eric Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Morris County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 53.704' W 074° 45.026' (view using Google Maps) N 40° 53' 42" W 074° 45' 02" N 40.895067° W 074.750433°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,182 ft (360 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1924</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="522">
<coordinates>-74.750433,40.895067,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="525">
<name>Buffalo Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ar/buffalo-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/buffalo-lookout-tower/">http://nhlr.org/lookouts/us/ar/buffalo-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1764, AR 26 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 10, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Searcy County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 58.010' W 092° 44.801' (view using Google Maps) N 35° 58' 01" W 092° 44' 48" N 35.966830° W 092.746690°</td>
</tr>
<tr>
<td>Elevation</td>
<td>946 ft (288 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Privately Owned - Tom Astor</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Arkansas Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="524">
<coordinates>-92.74669,35.96683,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="527">
<name>Buffalo Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ar/buffalo-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/buffalo-tower/">http://nhlr.org/lookouts/us/ar/buffalo-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 672, AR 9 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 27, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael A. Pfeiffer</td>
</tr>
<tr>
<td>Location</td>
<td>Ozark-St. Francis National Forest Newton County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 51.837' W 093° 29.579' (view using Google Maps) N 35° 51' 50" W 093° 29' 35" N 35.863950° W 093.492980°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,543 ft (775 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bayou Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="526">
<coordinates>-93.49298,35.86395,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="529">
<name>Bull Creek Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/bull-creek-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/bull-creek-lookout/">http://nhlr.org/lookouts/us/mt/bull-creek-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1532, MT 95 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 12, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Northern Cheyenne Tribe Big Horn County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 24.835' W 106° 51.468' (view using Google Maps) N 45° 24' 50" W 106° 51' 28" N 45.413920° W 106.857800°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,702 ft (1,433 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
<tr>
<td>Administered by</td>
<td>Northern Cheyenne Agency - Bureau of Indian Affairs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="528">
<coordinates>-106.8578,45.41392,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="531">
<name>Bull Island Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/sc/bull-island-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/bull-island-lookout/">http://nhlr.org/lookouts/us/sc/bull-island-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 834, SC 5 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 17, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford</td>
</tr>
<tr>
<td>Location</td>
<td>Cape Romain National Wildlife Refuge Charleston County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 54.416' W 079° 36.800' (view using Google Maps) N 32° 54' 25" W 079° 36' 48" N 32.906940° W 079.613330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>17 ft (5 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Fish &amp; Wildlife Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Cape Romain National Wildlife Refuge</td>
</tr>
</tbody>
</table>]]></description>
<Point id="530">
<coordinates>-79.61333,32.90694,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="533">
<name>Bull Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/bull-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/bull-mountain-lookout/">http://nhlr.org/lookouts/us/va/bull-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 100, VA 4 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1994</td>
</tr>
<tr>
<td>Location</td>
<td>Patrick County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 41.571' W 080° 13.484' (view using Google Maps) N 36° 41' 34" W 080° 13' 29" N 36.692850° W 080.224729°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,193 ft (973 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Virginia Department of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Virginia Department of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="532">
<coordinates>-80.224729,36.69285,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="535">
<name>Bull of the Woods Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bull-of-the-woods-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bull-of-the-woods-lookout/">http://nhlr.org/lookouts/us/or/bull-of-the-woods-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 200, OR 26 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ronald R. Johnson, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Mt. Hood National Forest Clackamas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 53.071' W 122° 05.734' (view using Google Maps) N 44° 53' 04" W 122° 05' 44" N 44.884525° W 122.095563°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,438 ft (1,658 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Clackamas Ranger District, Oregon FFLA &amp; the Sand Mountain Society</td>
</tr>
</tbody>
</table>]]></description>
<Point id="534">
<coordinates>-122.095563,44.884525,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="537">
<name>Bullock Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/bullock-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/bullock-fire-tower/">http://nhlr.org/lookouts/us/fl/bullock-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1086, FL 16 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Hamilton County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 30° 21.250' W 082° 46.760' (view using Google Maps) N 30° 21' 15" W 082° 46' 46" N 30.354159° W 082.779340°</td>
</tr>
<tr>
<td>Elevation</td>
<td>129 ft (39 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Department of Agriculture &amp; Consumer Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="536">
<coordinates>-82.77934,30.354159,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="539">
<name>Bully Choop Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bully-choop-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bully-choop-lookout/">http://nhlr.org/lookouts/us/ca/bully-choop-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 300, CA 29 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 21, 1999</td>
</tr>
<tr>
<td>Location</td>
<td>Shasta County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 33.297' W 122° 46.033' (view using Google Maps) N 40° 33' 18" W 122° 46' 02" N 40.554955° W 122.767221°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,907 ft (2,105 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1978</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Dept. of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>California Dept. of Forestry &amp; Fire Protection</td>
</tr>
</tbody>
</table>]]></description>
<Point id="538">
<coordinates>-122.767221,40.554955,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="541">
<name>Bunker Fire Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/bunker-fire-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/bunker-fire-lookout-tower/">http://nhlr.org/lookouts/us/al/bunker-fire-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 758, AL 5 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 15, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Cheaha State Park Cleburne County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 29.133' W 085° 48.550' (view using Google Maps) N 33° 29' 08" W 085° 48' 33" N 33.485556° W 085.809167°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,379 ft (725 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Department of Conservation and Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Department of Conservation and Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="540">
<coordinates>-85.809167,33.485556,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="543">
<name>Bunker Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/bunker-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/bunker-hill-lookout/">http://nhlr.org/lookouts/us/ca/bunker-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 593, CA 64 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 21, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kathy Allison</td>
</tr>
<tr>
<td>Location</td>
<td>Eldorado National Forest Placer County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 02.962' W 120° 22.824' (view using Google Maps) N 39° 02' 58" W 120° 22' 49" N 39.049370° W 120.380400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,502 ft (2,287 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pacific Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="542">
<coordinates>-120.3804,39.04937,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="545">
<name>Bunker Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/bunker-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/bunker-hill-lookout/">http://nhlr.org/lookouts/us/or/bunker-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 473, OR 70 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Coos County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 21.144' W 124° 12.287' (view using Google Maps) N 43° 21' 09" W 124° 12' 17" N 43.352400° W 124.204780°</td>
</tr>
<tr>
<td>Elevation</td>
<td>253 ft (77 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1996</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oregon Department of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Coos Forest Protective Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="544">
<coordinates>-124.20478,43.3524,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="547">
<name>Burke Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/vt/burke-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/vt/burke-mountain-fire-tower/">http://nhlr.org/lookouts/us/vt/burke-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 274, VT 5 (view other lookouts in United States, Vermont)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark W. Haughwout, Vermont Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Burke Caledonia County, Vermont</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 34.225' W 071° 53.569' (view using Google Maps) N 44° 34' 13" W 071° 53' 34" N 44.570415° W 071.892815°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,220 ft (981 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Vermont Dept. of Forests, Parks, and Recreation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Vermont Department of Forests, Parks and Recreation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="546">
<coordinates>-71.892815,44.570415,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="549">
<name>Burley Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/burley-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/burley-mountain-lookout/">http://nhlr.org/lookouts/us/wa/burley-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 356, WA 37 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 4, 2000</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Gifford Pinchot National Forest Lewis County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 24.450' W 121° 51.846' (view using Google Maps) N 46° 24' 27" W 121° 51' 51" N 46.407500° W 121.864100°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,154 ft (1,571 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Cowlitz Valley Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="548">
<coordinates>-121.8641,46.4075,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="551">
<name>Burney Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/burney-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/burney-mountain-lookout/">http://nhlr.org/lookouts/us/ca/burney-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1344, CA 167 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 26, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen National Forest Shasta County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 48.393' W 121° 37.685' (view using Google Maps) N 40° 48' 24" W 121° 37' 41" N 40.806548° W 121.628085°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,870 ft (2,399 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1966</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Lassen National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="550">
<coordinates>-121.628085,40.806548,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="553">
<name>Burns (Bell) Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/burns-bell-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/burns-bell-lookout-tower/">http://nhlr.org/lookouts/us/tn/burns-bell-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1778, TN 74 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 31, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jerry Lutes</td>
</tr>
<tr>
<td>Location</td>
<td>Montgomery Bell State Park Dickson County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 03.866' W 087° 16.966' (view using Google Maps) N 36° 03' 52" W 087° 16' 58" N 36.064440° W 087.282765°</td>
</tr>
<tr>
<td>Elevation</td>
<td>868 ft (265 m)</td>
</tr>
<tr>
<td>Built</td>
<td>early 1950s</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="552">
<coordinates>-87.282765,36.06444,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="555">
<name>Burnt Knob Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/burnt-knob-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/burnt-knob-lookout/">http://nhlr.org/lookouts/us/id/burnt-knob-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 234, ID 20 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 25, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, Idaho Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 42.097' W 114° 59.415' (view using Google Maps) N 45° 42' 06" W 114° 59' 25" N 45.701620° W 114.990258°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,011 ft (2,442 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Red River Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="554">
<coordinates>-114.990258,45.70162,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="557">
<name>Burton Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/burton-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/burton-peak-lookout/">http://nhlr.org/lookouts/us/id/burton-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 764, ID 54 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 6, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Idaho Panhandle (Kaniksu) National Forests Boundary County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 45.250' W 116° 29.917' (view using Google Maps) N 48° 45' 15" W 116° 29' 55" N 48.754170° W 116.498610°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,844 ft (2,086 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bonners Ferry Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="556">
<coordinates>-116.49861,48.75417,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="559">
<name>Butler Mountain Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/butler-mountain-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/butler-mountain-tower/">http://nhlr.org/lookouts/us/al/butler-mountain-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 864, AL 42 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 10, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Choctaw County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 01.860' W 088° 16.243' (view using Google Maps) N 32° 01' 52" W 088° 16' 15" N 32.031000° W 088.270720°</td>
</tr>
<tr>
<td>Elevation</td>
<td>428 ft (130 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1948</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="558">
<coordinates>-88.27072,32.031,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="561">
<name>Butler Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/butler-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/butler-peak-lookout/">http://nhlr.org/lookouts/us/ca/butler-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 292, CA 25 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 6, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>George &amp; Pam Morey</td>
</tr>
<tr>
<td>Location</td>
<td>San Bernardino National Forest San Bernardino County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 15.393' W 117° 00.459' (view using Google Maps) N 34° 15' 24" W 117° 00' 28" N 34.256545° W 117.007658°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,419 ft (2,566 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mountain Top Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="560">
<coordinates>-117.007658,34.256545,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="563">
<name>Butt Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/butt-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/butt-mountain-lookout/">http://nhlr.org/lookouts/us/va/butt-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 997, VA 11 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 14, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Wes Alvin</td>
</tr>
<tr>
<td>Location</td>
<td>Giles County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 22.146' W 080° 37.391' (view using Google Maps) N 37° 22' 09" W 080° 37' 23" N 37.369108° W 080.623179°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,225 ft (1,288 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Jefferson National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="562">
<coordinates>-80.623179,37.369108,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="565">
<name>Butts Creek Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/butts-creek-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/butts-creek-point-lookout/">http://nhlr.org/lookouts/us/id/butts-creek-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1011, ID 104 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 2, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Luke Channer</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon-Challis National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 21.699' W 114° 44.244' (view using Google Maps) N 45° 21' 42" W 114° 44' 15" N 45.361650° W 114.737400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,840 ft (2,390 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>North Fork Ranger District, Salmon-Challis National Forest</td>
</tr>
<tr>
<td>Lookout Steward</td>
<td>Dr. Phillip Krueger</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes</td>
</tr>
</tbody>
</table>]]></description>
<Point id="564">
<coordinates>-114.7374,45.36165,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="567">
<name>Cabin Creek Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/cabin-creek-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/cabin-creek-peak-lookout/">http://nhlr.org/lookouts/us/wy/cabin-creek-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1568, WY 20 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 3, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Bridger-Teton National Forest Lincoln County, Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 51.896' W 110° 46.931' (view using Google Maps) N 42° 51' 54" W 110° 46' 56" N 42.864930° W 110.782191°</td>
</tr>
<tr>
<td>Elevation</td>
<td>10,260 ft (3,127 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Bridger-Teton National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="566">
<coordinates>-110.782191,42.86493,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="569">
<name>Caddell Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wv/caddell-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wv/caddell-mountain-lookout/">http://nhlr.org/lookouts/us/wv/caddell-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 979, WV 9 (view other lookouts in United States, West Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 12, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford</td>
</tr>
<tr>
<td>Location</td>
<td>Preston County, West Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 26.650' W 079° 36.417' (view using Google Maps) N 39° 26' 39" W 079° 36' 25" N 39.444167° W 079.606944°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,999 ft (914 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1946</td>
</tr>
<tr>
<td>Administered by</td>
<td>West Virginia Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="568">
<coordinates>-79.606944,39.444167,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="571">
<name>Cahaba Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/cahaba-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/cahaba-lookout-tower/">http://nhlr.org/lookouts/us/al/cahaba-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 810, AL 11 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Talladega National Forest Perry County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 48.124' W 087° 10.383' (view using Google Maps) N 32° 48' 07" W 087° 10' 23" N 32.802070° W 087.173050°</td>
</tr>
<tr>
<td>Elevation</td>
<td>563 ft (172 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Oakmulgee Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="570">
<coordinates>-87.17305,32.80207,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="573">
<name>Cahto Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/cahto-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/cahto-peak-lookout/">http://nhlr.org/lookouts/us/ca/cahto-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1125, CA 110 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 20, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bill Ulmer</td>
</tr>
<tr>
<td>Location</td>
<td>Mendocino National Forest Mendocino County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 41.156' W 123° 34.923' (view using Google Maps) N 39° 41' 09" W 123° 34' 55" N 39.685927° W 123.582044°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,198 ft (1,280 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection</td>
</tr>
</tbody>
</table>]]></description>
<Point id="572">
<coordinates>-123.582044,39.685927,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="575">
<name>Cain's Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/al/cains-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/cains-ridge-lookout/">http://nhlr.org/lookouts/us/al/cains-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1131, AL 64 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 27, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Andrew Zerbe</td>
</tr>
<tr>
<td>Location</td>
<td>Fayette County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 37.390' W 087° 51.334' (view using Google Maps) N 33° 37' 23" W 087° 51' 20" N 33.623167° W 087.855574°</td>
</tr>
<tr>
<td>Elevation</td>
<td>617 ft (188 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="574">
<coordinates>-87.855574,33.623167,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="577">
<name>Calamity Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/calamity-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/calamity-butte-lookout/">http://nhlr.org/lookouts/us/or/calamity-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 73, OR 10 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 30, 1994</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary McAtee and Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Harney County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 55.706' W 118° 49.502' (view using Google Maps) N 43° 55' 42" W 118° 49' 30" N 43.928435° W 118.825038°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,666 ft (2,032 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Emigrant Peak Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="576">
<coordinates>-118.825038,43.928435,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="579">
<name>Calandra Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/calandra-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/calandra-lookout/">http://nhlr.org/lookouts/us/ca/calandra-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 395, CA 46 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 12, 2002</td>
</tr>
<tr>
<td>Location</td>
<td>Monterey County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 57.097' W 121° 00.095' (view using Google Maps) N 35° 57' 06" W 121° 00' 06" N 35.951620° W 121.001580°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,774 ft (846 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1944</td>
</tr>
<tr>
<td>Administered by</td>
<td>Cal Fire</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Cal Fire</td>
</tr>
</tbody>
</table>]]></description>
<Point id="578">
<coordinates>-121.00158,35.95162,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="581">
<name>Calimus Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/calimus-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/calimus-butte-lookout/">http://nhlr.org/lookouts/us/or/calimus-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 259, OR 30 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ronald R. Johnson, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Winema National Forest Klamath County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 37.892' W 121° 33.556' (view using Google Maps) N 42° 37' 54" W 121° 33' 33" N 42.631540° W 121.559273°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,584 ft (2,007 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1920</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Chiloquin Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="580">
<coordinates>-121.559273,42.63154,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="583">
<name>Call Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/call-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/call-mountain-lookout/">http://nhlr.org/lookouts/us/ca/call-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1341, CA 164 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 26, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>San Benito County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 37.149' W 121° 04.124' (view using Google Maps) N 36° 37' 09" W 121° 04' 07" N 36.619147° W 121.068734°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,888 ft (1,185 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection San Benito-Monterey Unit (Cal Fire BEU)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="582">
<coordinates>-121.068734,36.619147,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="585">
<name>Calpine Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/calpine-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/calpine-hill-lookout/">http://nhlr.org/lookouts/us/ca/calpine-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 595, CA 66 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 21, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kathy Allison</td>
</tr>
<tr>
<td>Location</td>
<td>Tahoe National Forest Sierra County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 40.730' W 120° 27.799' (view using Google Maps) N 39° 40' 44" W 120° 27' 48" N 39.678840° W 120.463310°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,836 ft (1,779 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Sierraville Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="584">
<coordinates>-120.46331,39.67884,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="587">
<name>Calx Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/calx-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/calx-mountain-lookout/">http://nhlr.org/lookouts/us/mt/calx-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1507, MT 85 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai NF Lincoln County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 12.542' W 115° 08.059' (view using Google Maps) N 48° 12' 33" W 115° 08' 04" N 48.209028° W 115.134315°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,489 ft (1,978 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="586">
<coordinates>-115.134315,48.209028,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="589">
<name>Camden Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/camden-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/camden-fire-tower/">http://nhlr.org/lookouts/us/tn/camden-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1718, TN 51 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 1, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Benton County, TN</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 03.952' W 088° 10.088' (view using Google Maps) N 36° 03' 57" W 088° 10' 05" N 36.065870° W 088.168130°</td>
</tr>
<tr>
<td>Elevation</td>
<td>579 ft (176 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="588">
<coordinates>-88.16813,36.06587,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="591">
<name>Camdenton Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mo/camdenton-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mo/camdenton-lookout/">http://nhlr.org/lookouts/us/mo/camdenton-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1261, MO 8 (view other lookouts in United States, Missouri)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 15, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Josh Shroyer</td>
</tr>
<tr>
<td>Location</td>
<td>Camdenton Conservation Service Center Camden County, Missouri</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 01.381' W 092° 47.005' (view using Google Maps) N 38° 01' 23" W 092° 47' 00" N 38.023020° W 092.783409°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,053 ft (321 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
<tr>
<td>Administered by</td>
<td>Missouri Department of Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="590">
<coordinates>-92.783409,38.02302,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="593">
<name>Camel's Hump Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/camels-hump-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/camels-hump-lookout/">http://nhlr.org/lookouts/us/mt/camels-hump-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1546, MT 109 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 12, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Lolo National Forest Mineral County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 22.029' W 115° 09.762' (view using Google Maps) N 47° 22' 02" W 115° 09' 46" N 47.367150° W 115.162700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,888 ft (1,795 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="592">
<coordinates>-115.1627,47.36715,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="595">
<name>Camp Creek Bald Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nc/camp-creek-bald-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/camp-creek-bald-lookout/">http://nhlr.org/lookouts/us/nc/camp-creek-bald-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 719, NC 13 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 2, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Peter J. Barr</td>
</tr>
<tr>
<td>Location</td>
<td>Pisgah National Forest Madison County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 01.403' W 082° 42.920' (view using Google Maps) N 36° 01' 24" W 082° 42' 55" N 36.023380° W 082.715330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,844 ft (1,476 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1928</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Appalachian Ranger District and Andrew Johnson Amateur Radio Club</td>
</tr>
</tbody>
</table>]]></description>
<Point id="594">
<coordinates>-82.71533,36.02338,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="597">
<name>Camp Douglas Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/camp-douglas-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/camp-douglas-lookout/">http://nhlr.org/lookouts/us/wi/camp-douglas-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1296, WI 56 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 14, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brecken Young</td>
</tr>
<tr>
<td>Location</td>
<td>Volk Field Air National Guard Base Juneau County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 55.428' W 090° 15.492' (view using Google Maps) N 43° 55' 26" W 090° 15' 29" N 43.923806° W 090.258194°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,175 ft (358 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
</tbody>
</table>]]></description>
<Point id="596">
<coordinates>-90.258194,43.923806,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="599">
<name>Camp Six Lookout at Bear Basin Butte</name>
<atom:link>http://nhlr.org/lookouts/us/ca/camp-six-lookout-at-bear-basin-butte/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/camp-six-lookout-at-bear-basin-butte/">http://nhlr.org/lookouts/us/ca/camp-six-lookout-at-bear-basin-butte/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 288, CA 21 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 6, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ken Wilson, Heritage Resources Program Manager</td>
</tr>
<tr>
<td>Location</td>
<td>Six Rivers National Forest Del Norte County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 48.551' W 123° 44.463' (view using Google Maps) N 41° 48' 33" W 123° 44' 28" N 41.809180° W 123.741051°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,145 ft (1,568 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Gasquet Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="598">
<coordinates>-123.741051,41.80918,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="601">
<name>Capilla Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/capilla-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/capilla-peak-lookout/">http://nhlr.org/lookouts/us/nm/capilla-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 695, NM 26 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 17, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Cibola National Forest Torrance County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 42.084' W 106° 24.060' (view using Google Maps) N 34° 42' 05" W 106° 24' 04" N 34.701400° W 106.401000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,368 ft (2,855 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mountainair Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="600">
<coordinates>-106.401,34.7014,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="603">
<name>Cardigan Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nh/cardigan-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nh/cardigan-mountain-lookout/">http://nhlr.org/lookouts/us/nh/cardigan-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 406, NH 7 (view other lookouts in United States, New Hampshire)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 12, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Chris Haartz, NH Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Grafton County, New Hampshire</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 39.255' W 071° 54.240' (view using Google Maps) N 43° 39' 15" W 071° 54' 14" N 43.654250° W 071.904000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,783 ft (848 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NH Dept. of Resources and Economic Development</td>
</tr>
<tr>
<td>Cooperators</td>
<td>NH Div. of Forests and Lands</td>
</tr>
</tbody>
</table>]]></description>
<Point id="602">
<coordinates>-71.904,43.65425,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="605">
<name>Carey Dome Fire Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/carey-dome-fire-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/carey-dome-fire-lookout/">http://nhlr.org/lookouts/us/id/carey-dome-fire-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 268, ID 26 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 1, 1998</td>
</tr>
<tr>
<td>Location</td>
<td>Payette National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 24.078' W 115° 54.235' (view using Google Maps) N 45° 24' 05" W 115° 54' 14" N 45.401300° W 115.903913°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,667 ft (2,337 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Krassel Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="604">
<coordinates>-115.903913,45.4013,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="607">
<name>Carnasaw Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ok/carnasaw-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ok/carnasaw-lookout/">http://nhlr.org/lookouts/us/ok/carnasaw-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 238, OK 1 (view other lookouts in United States, Oklahoma)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 16, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Patrick McDowell, Oklahoma Forestry Services</td>
</tr>
<tr>
<td>Location</td>
<td>McCurtain County, Oklahoma</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 08.659' W 094° 38.284' (view using Google Maps) N 34° 08' 40" W 094° 38' 17" N 34.144320° W 094.638069°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,005 ft (306 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oklahoma Forestry Services</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Oklahoma Forestry Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="606">
<coordinates>-94.638069,34.14432,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="609">
<name>Carpenter Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/carpenter-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/carpenter-lookout-tower/">http://nhlr.org/lookouts/us/al/carpenter-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 811, AL 12 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Baldwin County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 30° 49.577' W 087° 51.722' (view using Google Maps) N 30° 49' 35" W 087° 51' 43" N 30.826284° W 087.862041°</td>
</tr>
<tr>
<td>Elevation</td>
<td>214 ft (65 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
<tr>
<td>Removed</td>
<td>by 2018</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>US 1955, AL 30</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="608">
<coordinates>-87.862041,30.826284,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="611">
<name>Carpenter Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/carpenter-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/carpenter-mountain-lookout/">http://nhlr.org/lookouts/us/or/carpenter-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 484, OR 77 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Willamette National Forest Linn County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 16.906' W 122° 08.610' (view using Google Maps) N 44° 16' 54" W 122° 08' 37" N 44.281770° W 122.143500°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,190 ft (1,582 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>McKenzie River Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="610">
<coordinates>-122.1435,44.28177,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="613">
<name>Carrisa Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/carrisa-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/carrisa-lookout/">http://nhlr.org/lookouts/us/nm/carrisa-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 940, NM 29 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 12, 2012</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark H. Gutzman</td>
</tr>
<tr>
<td>Location</td>
<td>Lincoln National Forest Otero County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 40.574' W 105° 37.168' (view using Google Maps) N 32° 40' 34" W 105° 37' 10" N 32.676236° W 105.619464°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,452 ft (2,576 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Sacramento Ranger District and Boy Scouts of America, Yucca Council, Troop 127</td>
</tr>
</tbody>
</table>]]></description>
<Point id="612">
<coordinates>-105.619464,32.676236,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="615">
<name>Carrollton Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/carrollton-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/carrollton-fire-tower/">http://nhlr.org/lookouts/us/al/carrollton-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 896, AL 54 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Pickens County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 16.349' W 088° 07.108' (view using Google Maps) N 33° 16' 21" W 088° 07' 06" N 33.272483° W 088.118460°</td>
</tr>
<tr>
<td>Elevation</td>
<td>402 ft (123 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1948</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="614">
<coordinates>-88.11846,33.272483,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="617">
<name>Carter Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ok/carter-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ok/carter-mountain-lookout/">http://nhlr.org/lookouts/us/ok/carter-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 239, OK 2 (view other lookouts in United States, Oklahoma)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 16, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Patrick McDowell, Oklahoma Forestry Services</td>
</tr>
<tr>
<td>Location</td>
<td>McCurtain County, Oklahoma</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 15.000' W 094° 46.587' (view using Google Maps) N 34° 15' 00" W 094° 46' 35" N 34.250000° W 094.776448°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,279 ft (390 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oklahoma Forestry Services</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Oklahoma Forestry Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="616">
<coordinates>-94.776448,34.25,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="619">
<name>Carters Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/va/carters-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/carters-mountain-fire-tower/">http://nhlr.org/lookouts/us/va/carters-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1410, VA 42 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 24, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>John McDonald</td>
</tr>
<tr>
<td>Location</td>
<td>Albemarle County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 58.809' W 078° 29.343' (view using Google Maps) N 37° 58' 49" W 078° 29' 21" N 37.980146° W 078.489055°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,592 ft (485 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Removed</td>
<td>2023</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>US 2098, VA 46</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="618">
<coordinates>-78.489055,37.980146,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="621">
<name>Carver Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/carver-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/carver-fire-tower/">http://nhlr.org/lookouts/us/ma/carver-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 733, MA 44 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 19, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Bare Hill Plymouth County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 51.467' W 070° 41.484' (view using Google Maps) N 41° 51' 28" W 070° 41' 29" N 41.857783° W 070.691400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>136 ft (41 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1988</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 2</td>
</tr>
</tbody>
</table>]]></description>
<Point id="620">
<coordinates>-70.6914,41.857783,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="623">
<name>Cassatt Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/cassatt-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/cassatt-tower/">http://nhlr.org/lookouts/us/sc/cassatt-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 969, SC 22 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 24, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch, Jr., FFLA Area Rep</td>
</tr>
<tr>
<td>Location</td>
<td>Sumter County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 54.470' W 080° 32.819' (view using Google Maps) N 33° 54' 28" W 080° 32' 49" N 33.907828° W 080.546983°</td>
</tr>
<tr>
<td>Elevation</td>
<td>121 ft (37 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>Billy McIntosh, Owner</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Billy McIntosh, Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="622">
<coordinates>-80.546983,33.907828,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="625">
<name>Castle Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/castle-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/castle-butte-lookout/">http://nhlr.org/lookouts/us/id/castle-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 573, ID 43 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 22, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Virginia Tillotson</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 26.054' W 115° 13.215' (view using Google Maps) N 46° 26' 03" W 115° 13' 13" N 46.434230° W 115.220250°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,632 ft (2,021 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Lochsa Ranger District, Kooskia Office</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="624">
<coordinates>-115.22025,46.43423,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="627">
<name>Castro Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/castro-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/castro-peak-lookout/">http://nhlr.org/lookouts/us/ca/castro-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1289, CA 127 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 8, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Scott McClintock</td>
</tr>
<tr>
<td>Location</td>
<td>Henninger Flats Forestry Unit Los Angeles County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 11.557' W 118° 05.351' (view using Google Maps) N 34° 11' 33" W 118° 05' 21" N 34.192611° W 118.089184°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,554 ft (778 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1925</td>
</tr>
<tr>
<td>Administered by</td>
<td>County of Los Angeles Fire Department, Forestry Division</td>
</tr>
</tbody>
</table>]]></description>
<Point id="626">
<coordinates>-118.089184,34.192611,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="629">
<name>Catfish Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/catfish-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/catfish-fire-tower/">http://nhlr.org/lookouts/us/nj/catfish-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 247, NJ 9 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Forest Fire Lookout Association</td>
</tr>
<tr>
<td>Location</td>
<td>Delaware Water Gap National Recreation Area Warren County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 02.855' W 074° 58.347' (view using Google Maps) N 41° 02' 51" W 074° 58' 21" N 41.047583° W 074.972450°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,555 ft (474 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1922</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="628">
<coordinates>-74.97245,41.047583,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="631">
<name>Cathedral Rock Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/cathedral-rock-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/cathedral-rock-fire-tower/">http://nhlr.org/lookouts/us/ny/cathedral-rock-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1698, NY 50 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Ranger School Forest at Wanakena St. Lawrence County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 09.196' W 074° 54.920' (view using Google Maps) N 44° 09' 12" W 074° 54' 55" N 44.153270° W 074.915340°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,697 ft (517 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Late 1990s</td>
</tr>
<tr>
<td>Administered by</td>
<td>SUNY-ESF NYS Ranger School</td>
</tr>
</tbody>
</table>]]></description>
<Point id="630">
<coordinates>-74.91534,44.15327,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="633">
<name>Catoosa Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/catoosa-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/catoosa-fire-tower/">http://nhlr.org/lookouts/us/tn/catoosa-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1124, TN 28 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 20, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Christopher Covert</td>
</tr>
<tr>
<td>Location</td>
<td>Catoosa Wildlife Area Morgan County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 03.216' W 084° 45.162' (view using Google Maps) N 36° 03' 13" W 084° 45' 10" N 36.053600° W 084.752700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,070 ft (631 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="632">
<coordinates>-84.7527,36.0536,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="635">
<name>Cedar Bridge Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/cedar-bridge-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/cedar-bridge-fire-tower/">http://nhlr.org/lookouts/us/nj/cedar-bridge-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 248, NJ 10 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 1997</td>
</tr>
<tr>
<td>Location</td>
<td>Ocean County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 50.380' W 074° 22.836' (view using Google Maps) N 39° 50' 23" W 074° 22' 50" N 39.839667° W 074.380600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>177 ft (54 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Forest Fire Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="634">
<coordinates>-74.3806,39.839667,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="637">
<name>Cedar Key (Suwannee) Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/cedar-key-suwannee-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/cedar-key-suwannee-fire-tower/">http://nhlr.org/lookouts/us/fl/cedar-key-suwannee-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1090, FL 18 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Levy County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 29° 14.276' W 082° 56.153' (view using Google Maps) N 29° 14' 17" W 082° 56' 09" N 29.237940° W 082.935888°</td>
</tr>
<tr>
<td>Elevation</td>
<td>20 ft (6 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Department of Agriculture &amp; Consumer Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="636">
<coordinates>-82.935888,29.23794,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="639">
<name>Cedar Springs Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/cedar-springs-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/cedar-springs-lookout/">http://nhlr.org/lookouts/us/nm/cedar-springs-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 317, NM 5 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Jicarilla Reservation Rio Arriba County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 39.702' W 106° 56.016' (view using Google Maps) N 36° 39' 42" W 106° 56' 01" N 36.661700° W 106.933600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,291 ft (2,527 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1955</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bureau of Indian Affairs</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bureau of Indian Affairs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="638">
<coordinates>-106.9336,36.6617,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="641">
<name>Cedarville Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/cedarville-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/cedarville-lookout/">http://nhlr.org/lookouts/us/wi/cedarville-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1200, WI 12 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 9, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Marinette County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 27.334' W 088° 00.565' (view using Google Maps) N 45° 27' 20" W 088° 00' 34" N 45.455564° W 088.009411°</td>
</tr>
<tr>
<td>Elevation</td>
<td>995 ft (303 m)</td>
</tr>
<tr>
<td>Built</td>
<td>November 1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="640">
<coordinates>-88.009411,45.455564,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="643">
<name>Cedro Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/cedro-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/cedro-peak-lookout/">http://nhlr.org/lookouts/us/nm/cedro-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 684, NM 24 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Cibola National Forest Bernalillo County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 03.186' W 106° 21.101' (view using Google Maps) N 35° 03' 11" W 106° 21' 06" N 35.053100° W 106.351680°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,750 ft (2,362 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1969</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Sandia Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="642">
<coordinates>-106.35168,35.0531,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="645">
<name>Cement Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/cement-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/cement-ridge-lookout/">http://nhlr.org/lookouts/us/wy/cement-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 74, WY 2 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>J. Thomas Millard</td>
</tr>
<tr>
<td>Location</td>
<td>Black Hills National Forest Crook County, Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 21.270' W 104° 04.526' (view using Google Maps) N 44° 21' 16" W 104° 04' 32" N 44.354500° W 104.075429°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,611 ft (2,015 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Spearfish Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="644">
<coordinates>-104.075429,44.3545,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="647">
<name>Central Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/central-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/central-fire-tower/">http://nhlr.org/lookouts/us/fl/central-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1136, FL 19 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Ocala National Forest Marion County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 29° 10.606' W 081° 46.187' (view using Google Maps) N 29° 10' 36" W 081° 46' 11" N 29.176769° W 081.769782°</td>
</tr>
<tr>
<td>Elevation</td>
<td>150 ft (46 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Lake George Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="646">
<coordinates>-81.769782,29.176769,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="649">
<name>Central Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/central-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/central-lookout-tower/">http://nhlr.org/lookouts/us/al/central-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1746, AL 84 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 1, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Bankhead National Forest Lawrence County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 20.722' W 087° 20.309' (view using Google Maps) N 34° 20' 43" W 087° 20' 19" N 34.345360° W 087.338480°</td>
</tr>
<tr>
<td>Elevation</td>
<td>996 ft (304 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930 or earlier</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="648">
<coordinates>-87.33848,34.34536,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="651">
<name>Central Plains Lookout</name>
<Point id="650">
<coordinates>0.0, 0.0, 0.0</coordinates>
</Point>
</Placemark>
<Placemark id="653">
<name>Cerro Pelado Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/cerro-pelado-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/cerro-pelado-lookout/">http://nhlr.org/lookouts/us/nm/cerro-pelado-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1582, NM 40 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Gutzman</td>
</tr>
<tr>
<td>Location</td>
<td>Santa Fe National Forest Sandoval County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 47.056' W 106° 32.954' (view using Google Maps) N 35° 47' 03" W 106° 32' 57" N 35.784269° W 106.549232°</td>
</tr>
<tr>
<td>Elevation</td>
<td>10,012 ft (3,052 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1965</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="652">
<coordinates>-106.549232,35.784269,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="655">
<name>Chair Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/chair-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/chair-point-lookout/">http://nhlr.org/lookouts/us/id/chair-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 782, ID 66 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 28.250' W 116° 13.750' (view using Google Maps) N 45° 28' 15" W 116° 13' 45" N 45.470830° W 116.229170°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,951 ft (2,119 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1980</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Salmon River Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="654">
<coordinates>-116.22917,45.47083,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="657">
<name>Chalone Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/chalone-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/chalone-peak-lookout/">http://nhlr.org/lookouts/us/ca/chalone-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 396, CA 47 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 12, 2002</td>
</tr>
<tr>
<td>Location</td>
<td>Pinnacles National Park Monterey County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 26.856' W 121° 11.676' (view using Google Maps) N 36° 26' 51" W 121° 11' 41" N 36.447600° W 121.194600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,116 ft (950 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1952</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>California Department of Forestry and Fire Protection</td>
</tr>
</tbody>
</table>]]></description>
<Point id="656">
<coordinates>-121.1946,36.4476,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="659">
<name>Chambers Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nc/chambers-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/chambers-mountain-lookout/">http://nhlr.org/lookouts/us/nc/chambers-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 720, NC 14 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 2, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Peter J. Barr</td>
</tr>
<tr>
<td>Location</td>
<td>Haywood County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 34.103' W 082° 54.413' (view using Google Maps) N 35° 34' 06" W 082° 54' 25" N 35.568390° W 082.906880°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,466 ft (752 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>NC Division of Forest Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>NC Division of Forest Resources, District 9</td>
</tr>
</tbody>
</table>]]></description>
<Point id="658">
<coordinates>-82.90688,35.56839,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="661">
<name>Chancellor Lookout II</name>
<atom:link>http://nhlr.org/lookouts/us/va/chancellor-lookout-ii/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/chancellor-lookout-ii/">http://nhlr.org/lookouts/us/va/chancellor-lookout-ii/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1191, VA 38 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 27, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Reynolds</td>
</tr>
<tr>
<td>Location</td>
<td>Spotsylvania County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 12.767' W 077° 43.467' (view using Google Maps) N 38° 12' 46" W 077° 43' 28" N 38.212778° W 077.724444°</td>
</tr>
<tr>
<td>Elevation</td>
<td>423 ft (129 m)</td>
</tr>
<tr>
<td>Built</td>
<td>February 1928</td>
</tr>
<tr>
<td>Removed</td>
<td>circa 2019</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>US 1932, VA 35</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private (formerly Virginia Department of Forestry)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="660">
<coordinates>-77.724444,38.212778,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="663">
<name>Chandler Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/tx/chandler-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tx/chandler-lookout/">http://nhlr.org/lookouts/us/tx/chandler-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1301, TX 4 (view other lookouts in United States, Texas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 17, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jody Thomas</td>
</tr>
<tr>
<td>Location</td>
<td>Henderson County, Texas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 20.421' W 095° 31.727' (view using Google Maps) N 32° 20' 25" W 095° 31' 44" N 32.340344° W 095.528777°</td>
</tr>
<tr>
<td>Elevation</td>
<td>581 ft (177 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1970</td>
</tr>
</tbody>
</table>]]></description>
<Point id="662">
<coordinates>-95.528777,32.340344,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="665">
<name>Chapin Mesa (Cedar Tree) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/co/chapin-mesa-cedar-tree-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/co/chapin-mesa-cedar-tree-lookout/">http://nhlr.org/lookouts/us/co/chapin-mesa-cedar-tree-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 875, CO 13 (view other lookouts in United States, Colorado)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 16, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Allen Farnsworth, Fire Management Officer</td>
</tr>
<tr>
<td>Location</td>
<td>Mesa Verde National Park Montezuma County, Colorado</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 11.797' W 108° 29.089' (view using Google Maps) N 37° 11' 48" W 108° 29' 05" N 37.196610° W 108.484810°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,125 ft (2,172 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1945</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="664">
<coordinates>-108.48481,37.19661,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="667">
<name>Charlton Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/charlton-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/charlton-fire-tower/">http://nhlr.org/lookouts/us/ma/charlton-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 587, MA 14 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 30, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Charlton Worcester County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 10.100' W 071° 50.317' (view using Google Maps) N 42° 10' 06" W 071° 50' 19" N 42.168330° W 071.838610°</td>
</tr>
<tr>
<td>Elevation</td>
<td>574 ft (175 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 7</td>
</tr>
</tbody>
</table>]]></description>
<Point id="666">
<coordinates>-71.83861,42.16833,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="669">
<name>Chase Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/chase-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/chase-mountain-lookout/">http://nhlr.org/lookouts/us/or/chase-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 485, OR 78 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 05.678' W 121° 59.607' (view using Google Maps) N 42° 05' 41" W 121° 59' 36" N 42.094630° W 121.993450°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,286 ft (1,916 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1951</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oregon Department of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Oregon Dept. of Forestry, Klamath-Lake District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="668">
<coordinates>-121.99345,42.09463,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="671">
<name>Chediski Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/chediski-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/chediski-lookout/">http://nhlr.org/lookouts/us/az/chediski-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 202, AZ 9 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 17, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>David Lorenz, Arizona Registrar &amp; Dave Reinhold, Forest Mgr., White Mtn. Apache Agency</td>
</tr>
<tr>
<td>Location</td>
<td>Fort Apache-White Mountain Indian Reservation Navajo County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 08.166' W 110° 43.383' (view using Google Maps) N 34° 08' 10" W 110° 43' 23" N 34.136100° W 110.723044°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,573 ft (2,003 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>White Mountain Apache Agency</td>
</tr>
<tr>
<td>Cooperators</td>
<td>White Mountain Apache Agency</td>
</tr>
</tbody>
</table>]]></description>
<Point id="670">
<coordinates>-110.723044,34.1361,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="673">
<name>Chelmsford Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/chelmsford-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/chelmsford-fire-tower/">http://nhlr.org/lookouts/us/ma/chelmsford-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 732, MA 43 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 14, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Robbins Hill Middlesex County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 35.100' W 071° 21.950' (view using Google Maps) N 42° 35' 06" W 071° 21' 57" N 42.585000° W 071.365830°</td>
</tr>
<tr>
<td>Elevation</td>
<td>350 ft (107 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 6</td>
</tr>
</tbody>
</table>]]></description>
<Point id="672">
<coordinates>-71.36583,42.585,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="675">
<name>Chenocetah Mountain Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/chenocetah-mountain-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/chenocetah-mountain-tower/">http://nhlr.org/lookouts/us/ga/chenocetah-mountain-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 299, GA 2 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 1, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jack T. Wynn, Heritage Program Manager</td>
</tr>
<tr>
<td>Location</td>
<td>Chattahoochee National Forest Habersham County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 30.119' W 083° 30.385' (view using Google Maps) N 34° 30' 07" W 083° 30' 23" N 34.501980° W 083.506411°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,793 ft (547 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Chattooga Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="674">
<coordinates>-83.506411,34.50198,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="677">
<name>Cherry Springs Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/pa/cherry-springs-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/cherry-springs-fire-tower/">http://nhlr.org/lookouts/us/pa/cherry-springs-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1193, PA 20 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 28, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian M. Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Susquehannock State Forest Potter County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 38.733' W 077° 47.795' (view using Google Maps) N 41° 38' 44" W 077° 47' 48" N 41.645556° W 077.796583°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,472 ft (753 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="676">
<coordinates>-77.796583,41.645556,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="679">
<name>Chester Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/chester-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/chester-fire-tower/">http://nhlr.org/lookouts/us/ma/chester-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 445, MA 3 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 7, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>John Matroni, Site Manager</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Chester Hampden County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 19.472' W 072° 57.440' (view using Google Maps) N 42° 19' 28" W 072° 57' 26" N 42.324530° W 072.957330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,719 ft (524 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 11</td>
</tr>
</tbody>
</table>]]></description>
<Point id="678">
<coordinates>-72.95733,42.32453,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="681">
<name>Chetek Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/chetek-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/chetek-lookout/">http://nhlr.org/lookouts/us/wi/chetek-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1246, WI 41 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 28, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Barron County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 22.310' W 091° 37.565' (view using Google Maps) N 45° 22' 19" W 091° 37' 34" N 45.371825° W 091.626089°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,329 ft (405 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1951</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="680">
<coordinates>-91.626089,45.371825,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="683">
<name>Chews Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/chews-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/chews-ridge-lookout/">http://nhlr.org/lookouts/us/ca/chews-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 751, CA 82 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 11, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Patrick J. Barthelow</td>
</tr>
<tr>
<td>Location</td>
<td>Los Padres National Forest Monterey County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 18.650' W 121° 34.100' (view using Google Maps) N 36° 18' 39" W 121° 34' 06" N 36.310830° W 121.568330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,043 ft (1,537 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1924</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Monterey Ranger District and Chews Ridge Gang Field Day Group</td>
</tr>
</tbody>
</table>]]></description>
<Point id="682">
<coordinates>-121.56833,36.31083,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="685">
<name>Chickasaw Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/chickasaw-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/chickasaw-lookout-tower/">http://nhlr.org/lookouts/us/tn/chickasaw-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1756, TN 60 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 7, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Chickasaw State Forest Chester County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 22.485' W 088° 49.844' (view using Google Maps) N 35° 22' 29" W 088° 49' 51" N 35.374750° W 088.830740°</td>
</tr>
<tr>
<td>Elevation</td>
<td>639 ft (195 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="684">
<coordinates>-88.83074,35.37475,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="687">
<name>Chicken Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/chicken-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/chicken-peak-lookout/">http://nhlr.org/lookouts/us/id/chicken-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 327, ID 30 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 1, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Steve Stoddard, Idaho Chapter, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Payette National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 17.559' W 115° 23.820' (view using Google Maps) N 45° 17' 34" W 115° 23' 49" N 45.292650° W 115.396995°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,608 ft (2,624 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Krassel Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="686">
<coordinates>-115.396995,45.29265,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="689">
<name>Chimney Peak Fire Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/chimney-peak-fire-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/chimney-peak-fire-lookout-tower/">http://nhlr.org/lookouts/us/al/chimney-peak-fire-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 759, AL 6 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 15, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Choccolocco Mountain Calhoun County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 50.219' W 085° 43.984' (view using Google Maps) N 33° 50' 13" W 085° 43' 59" N 33.836984° W 085.733069°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,689 ft (515 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="688">
<coordinates>-85.733069,33.836984,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="691">
<name>Chimney Top Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/chimney-top-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/chimney-top-fire-tower/">http://nhlr.org/lookouts/us/tn/chimney-top-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 994, TN 15 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 14, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford</td>
</tr>
<tr>
<td>Location</td>
<td>Hawkins County, Tenneessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 24.483' W 082° 42.417' (view using Google Maps) N 36° 24' 29" W 082° 42' 25" N 36.408056° W 082.706944°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,960 ft (902 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tenneessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="690">
<coordinates>-82.706944,36.408056,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="693">
<name>Chopmist Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ri/chopmist-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ri/chopmist-fire-tower/">http://nhlr.org/lookouts/us/ri/chopmist-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1016, RI 5 (view other lookouts in United States, Rhode Island)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 2, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Providence County, Rhode Island</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 50.474' W 071° 40.190' (view using Google Maps) N 41° 50' 28" W 071° 40' 11" N 41.841236° W 071.669836°</td>
</tr>
<tr>
<td>Elevation</td>
<td>730 ft (223 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1946</td>
</tr>
<tr>
<td>Administered by</td>
<td>Rhode Island Department of Environmental Management</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Rhode Island Department of Environmental Management</td>
</tr>
</tbody>
</table>]]></description>
<Point id="692">
<coordinates>-71.669836,41.841236,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="695">
<name>Chunklick Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ky/chunklick-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ky/chunklick-lookout/">http://nhlr.org/lookouts/us/ky/chunklick-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1015, KY 9 (view other lookouts in United States, Kentucky)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 2, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Wittenback</td>
</tr>
<tr>
<td>Location</td>
<td>Harlan County, Kentucky</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 44.067' W 083° 23.005' (view using Google Maps) N 36° 44' 04" W 083° 23' 00" N 36.734449° W 083.383420°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,419 ft (1,042 m)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="694">
<coordinates>-83.38342,36.734449,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="697">
<name>Church Creek Forestry Tower</name>
<atom:link>http://nhlr.org/lookouts/us/md/church-creek-forestry-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/md/church-creek-forestry-tower/">http://nhlr.org/lookouts/us/md/church-creek-forestry-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 696, MD 3 (view other lookouts in United States, Maryland)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 17, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Steven W. Koehn, State Forester, Maryland DNR Forest Service</td>
</tr>
<tr>
<td>Location</td>
<td>Dorchester County, Maryland</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 37.397' W 076° 08.081' (view using Google Maps) N 38° 37' 24" W 076° 08' 05" N 38.623280° W 076.134680°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4 ft (1 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Maryland DNR Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Maryland DNR Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="696">
<coordinates>-76.13468,38.62328,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="699">
<name>Cinnamon Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/cinnamon-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/cinnamon-butte-lookout/">http://nhlr.org/lookouts/us/or/cinnamon-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 486, OR 79 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Umpqua National Forest Douglas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 14.454' W 122° 06.573' (view using Google Maps) N 43° 14' 27" W 122° 06' 34" N 43.240900° W 122.109550°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,410 ft (1,954 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1955</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Diamond Lake Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="698">
<coordinates>-122.10955,43.2409,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="701">
<name>Cinnamon Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/cinnamon-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/cinnamon-mountain-lookout/">http://nhlr.org/lookouts/us/mt/cinnamon-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 460, MT 36 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 31, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary A. Weber, Montana Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Gallatin National Forest Gallatin County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 07.800' W 111° 16.000' (view using Google Maps) N 45° 07' 48" W 111° 16' 00" N 45.130000° W 111.266670°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,097 ft (2,773 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Hebgen Lake Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="700">
<coordinates>-111.26667,45.13,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="703">
<name>Clarke Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/clarke-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/clarke-mountain-lookout/">http://nhlr.org/lookouts/us/id/clarke-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 580, ID 45 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 1, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Virginia Tillotson</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater National Forest Clearwater County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 37.795' W 115° 32.729' (view using Google Maps) N 46° 37' 48" W 115° 32' 44" N 46.629920° W 115.545480°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,208 ft (1,587 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1952</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="702">
<coordinates>-115.54548,46.62992,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="705">
<name>Clarks Knob (Gobblers Knob) Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/pa/clarks-knob-gobblers-knob-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/clarks-knob-gobblers-knob-fire-tower/">http://nhlr.org/lookouts/us/pa/clarks-knob-gobblers-knob-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1042, PA 17 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford</td>
</tr>
<tr>
<td>Location</td>
<td>Franklin County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 03.010' W 077° 44.839' (view using Google Maps) N 40° 03' 01" W 077° 44' 50" N 40.050170° W 077.747323°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,325 ft (709 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1945</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Department of Conservation and Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pennsylvania Department of Conservation and Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="704">
<coordinates>-77.747323,40.05017,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="707">
<name>Clay Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/clay-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/clay-butte-lookout/">http://nhlr.org/lookouts/us/wy/clay-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 267, WY 7 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 1, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brent Larson, District Ranger</td>
</tr>
<tr>
<td>Location</td>
<td>Shoshone National Forest Park County, Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 56.655' W 109° 37.587' (view using Google Maps) N 44° 56' 39" W 109° 37' 35" N 44.944250° W 109.626455°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,755 ft (2,973 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Clarks Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="706">
<coordinates>-109.626455,44.94425,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="709">
<name>Clay Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/clay-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/clay-lookout-tower/">http://nhlr.org/lookouts/us/ms/clay-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1674, MS 37 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 10, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Clay County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 45.165' W 088° 52.677' (view using Google Maps) N 33° 45' 10" W 088° 52' 41" N 33.752753° W 088.877947°</td>
</tr>
<tr>
<td>Elevation</td>
<td>529 ft (161 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="708">
<coordinates>-88.877947,33.752753,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="711">
<name>Clear Lake Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/clear-lake-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/clear-lake-butte-lookout/">http://nhlr.org/lookouts/us/or/clear-lake-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 11, OR 3 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 1, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas D. Hussey, District Ranger, U.S. Forest Service, Region 6, Mt. Hood National Forest, Bear Springs Ranger District</td>
</tr>
<tr>
<td>Location</td>
<td>Mount Hood National Forest Wasco County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 09.379' W 121° 43.105' (view using Google Maps) N 45° 09' 23" W 121° 43' 06" N 45.156315° W 121.718419°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,427 ft (1,349 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mount Hood National Forest</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="710">
<coordinates>-121.718419,45.156315,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="713">
<name>Clear Springs Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/clear-springs-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/clear-springs-lookout-tower/">http://nhlr.org/lookouts/us/ms/clear-springs-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1739, MS 56 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 9, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Bienville National Forest Smith County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 08.600' W 089° 20.700' (view using Google Maps) N 32° 08' 36" W 089° 20' 42" N 32.143330° W 089.345000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>498 ft (152 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Sometime Between 1937-1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>USFS</td>
</tr>
</tbody>
</table>]]></description>
<Point id="712">
<coordinates>-89.345,32.14333,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="715">
<name>Clearwater Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/clearwater-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/clearwater-lookout/">http://nhlr.org/lookouts/us/wa/clearwater-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1522, WA 71 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Christine Estrada</td>
</tr>
<tr>
<td>Location</td>
<td>Umatilla National Forest Garfield County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 12.178' W 117° 34.511' (view using Google Maps) N 46° 12' 11" W 117° 34' 31" N 46.202971° W 117.575182°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,668 ft (1,728 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1938</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Umatilla National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="714">
<coordinates>-117.575182,46.202971,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="717">
<name>Cleman Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/cleman-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/cleman-mountain-lookout/">http://nhlr.org/lookouts/us/wa/cleman-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 365, WA 46 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 8, 2000</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Wenatchee National Forest Yakima County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 49.416' W 120° 51.390' (view using Google Maps) N 46° 49' 25" W 120° 51' 23" N 46.823600° W 120.856500°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,088 ft (1,551 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service/Washington DNR</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Washington Dept. of Natural Resources and Naches Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="716">
<coordinates>-120.8565,46.8236,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="719">
<name>Clevedon Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/clevedon-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/clevedon-lookout/">http://nhlr.org/lookouts/us/wi/clevedon-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1227, WI 31 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 16, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Douglas County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 37.236' W 091° 36.522' (view using Google Maps) N 46° 37' 14" W 091° 36' 31" N 46.620608° W 091.608708°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,254 ft (382 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="718">
<coordinates>-91.608708,46.620608,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="721">
<name>Coal Ridge (Moran) Lookout Cabin</name>
<atom:link>http://nhlr.org/lookouts/us/mt/coal-ridge-moran-lookout-cabin/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/coal-ridge-moran-lookout-cabin/">http://nhlr.org/lookouts/us/mt/coal-ridge-moran-lookout-cabin/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1498, MT 76 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Flathead National Forest - Glacier View RD Flathead County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 43.470' W 114° 25.529' (view using Google Maps) N 48° 43' 28" W 114° 25' 32" N 48.724500° W 114.425479°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,268 ft (2,215 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="720">
<coordinates>-114.425479,48.7245,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="723">
<name>Cody Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/cody-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/cody-butte-lookout/">http://nhlr.org/lookouts/us/wa/cody-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1523, WA 72 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Christine Estrada</td>
</tr>
<tr>
<td>Location</td>
<td>Colville Indian Reservation Ferry County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 20.478' W 118° 39.746' (view using Google Maps) N 48° 20' 29" W 118° 39' 45" N 48.341292° W 118.662438°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,766 ft (1,453 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1931</td>
</tr>
<tr>
<td>Administered by</td>
<td>Colville Indian Reservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Colville National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="722">
<coordinates>-118.662438,48.341292,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="725">
<name>Coffin Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/coffin-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/coffin-mountain-lookout/">http://nhlr.org/lookouts/us/or/coffin-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 888, OR 114 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 29, 2010</td>
</tr>
<tr>
<td>Location</td>
<td>Willamette National Forest Linn County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 37.307' W 122° 02.654' (view using Google Maps) N 44° 37' 18" W 122° 02' 39" N 44.621790° W 122.044240°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,595 ft (1,705 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1984</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Detroit Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="724">
<coordinates>-122.04424,44.62179,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="727">
<name>Coffin Rock Fire Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/pa/coffin-rock-fire-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/coffin-rock-fire-lookout/">http://nhlr.org/lookouts/us/pa/coffin-rock-fire-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 972, PA 15 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 2013</td>
</tr>
<tr>
<td>Location</td>
<td>Clinton County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 14.237' W 077° 45.033' (view using Google Maps) N 41° 14' 14" W 077° 45' 02" N 41.237289° W 077.750543°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,329 ft (710 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1987</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="726">
<coordinates>-77.750543,41.237289,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="729">
<name>Colby Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/colby-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/colby-mountain-lookout/">http://nhlr.org/lookouts/us/ca/colby-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 391, CA 45 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 6, 2001</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ken Jordan, Primary Lookout</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen National Forest Tehama County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 08.802' W 121° 31.266' (view using Google Maps) N 40° 08' 48" W 121° 31' 16" N 40.146700° W 121.521100°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,973 ft (1,821 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Almanor Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="728">
<coordinates>-121.5211,40.1467,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="731">
<name>Colcord Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/colcord-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/colcord-lookout/">http://nhlr.org/lookouts/us/az/colcord-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 193, AZ 3 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>James R. Soeth, District Ranger</td>
</tr>
<tr>
<td>Location</td>
<td>Tonto National Forest Gila County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 14.807' W 110° 51.656' (view using Google Maps) N 34° 14' 48" W 110° 51' 39" N 34.246780° W 110.860931°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,449 ft (2,270 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pleasant Valley Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="730">
<coordinates>-110.860931,34.24678,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="733">
<name>Cold Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/cold-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/cold-mountain-lookout/">http://nhlr.org/lookouts/us/id/cold-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 714, ID 47 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 2, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Richard Holm, Jr. and Lawrence Kingsbury</td>
</tr>
<tr>
<td>Location</td>
<td>Payette National Forest Valley County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 57.150' W 116° 02.750' (view using Google Maps) N 44° 57' 09" W 116° 02' 45" N 44.952500° W 116.045830°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,106 ft (1,556 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>Richard Holm, Jr.</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Richard Holm, Jr., Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="732">
<coordinates>-116.04583,44.9525,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="735">
<name>Cold Spring Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/cold-spring-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/cold-spring-mountain-lookout/">http://nhlr.org/lookouts/us/ca/cold-spring-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 397, CA 48 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 12, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Cal Fire</td>
</tr>
<tr>
<td>Location</td>
<td>Mendocino County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 01.350' W 123° 31.302' (view using Google Maps) N 39° 01' 21" W 123° 31' 18" N 39.022500° W 123.521700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,645 ft (806 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1965</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Dept. of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>California Dept. of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="734">
<coordinates>-123.5217,39.0225,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="737">
<name>Cole Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/pa/cole-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/cole-hill-lookout/">http://nhlr.org/lookouts/us/pa/cole-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 835, PA 12 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 17, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford</td>
</tr>
<tr>
<td>Location</td>
<td>Warren County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 46.433' W 079° 26.117' (view using Google Maps) N 41° 46' 26" W 079° 26' 07" N 41.773890° W 079.435280°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,906 ft (581 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="736">
<coordinates>-79.43528,41.77389,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="739">
<name>Colfax Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/colfax-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/colfax-fire-tower/">http://nhlr.org/lookouts/us/ny/colfax-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1700, NY 52 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Washington County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 05.004' W 073° 23.400' (view using Google Maps) N 43° 05' 00" W 073° 23' 24" N 43.083400° W 073.390000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,266 ft (386 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Department of Environmental Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="738">
<coordinates>-73.39,43.0834,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="741">
<name>Collins Creek Baldy Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/collins-creek-baldy-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/collins-creek-baldy-lookout/">http://nhlr.org/lookouts/us/ca/collins-creek-baldy-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1417, CA 223 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 15, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 46.513' W 122° 57.095' (view using Google Maps) N 41° 46' 31" W 122° 57' 06" N 41.775216° W 122.951576°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,494 ft (1,675 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Klamath National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="740">
<coordinates>-122.951576,41.775216,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="743">
<name>Columbia Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/columbia-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/columbia-mountain-lookout/">http://nhlr.org/lookouts/us/wa/columbia-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 103, WA 9 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 18, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Director, Historic Lookout Project, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Colville National Forest Ferry County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 37.226' W 118° 28.926' (view using Google Maps) N 48° 37' 14" W 118° 28' 56" N 48.620440° W 118.482093°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,726 ft (2,050 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Republic Ranger District and the Washington Chapter of the Forest Fire Lookout Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="742">
<coordinates>-118.482093,48.62044,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="745">
<name>Cominto Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ar/cominto-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/cominto-lookout-tower/">http://nhlr.org/lookouts/us/ar/cominto-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1750, AR 25 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 3, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Drew County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 32.443' W 091° 35.782' (view using Google Maps) N 33° 32' 27" W 091° 35' 47" N 33.540710° W 091.596360°</td>
</tr>
<tr>
<td>Elevation</td>
<td>189 ft (58 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Privately Owned</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Arkansas Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="744">
<coordinates>-91.59636,33.54071,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="747">
<name>Compton Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ar/compton-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/compton-lookout/">http://nhlr.org/lookouts/us/ar/compton-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 839, AR 10 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ed Porter</td>
</tr>
<tr>
<td>Location</td>
<td>Newton County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 03.197' W 093° 22.348' (view using Google Maps) N 36° 03' 12" W 093° 22' 21" N 36.053280° W 093.372470°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,410 ft (735 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1945</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ed Porter</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ed Porter, Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="746">
<coordinates>-93.37247,36.05328,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="749">
<name>Cone Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/cone-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/cone-peak-lookout/">http://nhlr.org/lookouts/us/ca/cone-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1288, CA 126 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 8, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Scott McClintock</td>
</tr>
<tr>
<td>Location</td>
<td>Los Padres National Forest Monterey County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 03.122' W 121° 29.758' (view using Google Maps) N 36° 03' 07" W 121° 29' 45" N 36.052038° W 121.495959°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,155 ft (1,571 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1923</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="748">
<coordinates>-121.495959,36.052038,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="751">
<name>Conehatta Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/conehatta-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/conehatta-lookout-tower/">http://nhlr.org/lookouts/us/ms/conehatta-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1738, MS 55 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 9, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Newton County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 27.527' W 089° 15.613' (view using Google Maps) N 32° 27' 32" W 089° 15' 37" N 32.458790° W 089.260220°</td>
</tr>
<tr>
<td>Elevation</td>
<td>582 ft (177 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="750">
<coordinates>-89.26022,32.45879,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="753">
<name>Connors Lake Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/connors-lake-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/connors-lake-lookout/">http://nhlr.org/lookouts/us/wi/connors-lake-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1216, WI 22 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 28, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Sawyer County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 45.496' W 090° 42.838' (view using Google Maps) N 45° 45' 30" W 090° 42' 50" N 45.758275° W 090.713972°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,493 ft (455 m)</td>
</tr>
<tr>
<td>Built</td>
<td>May 1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="752">
<coordinates>-90.713972,45.758275,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="755">
<name>Conrad Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/conrad-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/conrad-peak-lookout/">http://nhlr.org/lookouts/us/id/conrad-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 152, ID 11 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 2, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>C. Rod Bacon, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Idaho Panhandle National Forest Shoshone County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 09.110' W 115° 27.938' (view using Google Maps) N 47° 09' 07" W 115° 27' 56" N 47.151840° W 115.465629°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,338 ft (1,932 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>St. Joe Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="754">
<coordinates>-115.465629,47.15184,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="757">
<name>Cookeville Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/cookeville-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/cookeville-fire-tower/">http://nhlr.org/lookouts/us/tn/cookeville-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1591, TN 40 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Nicholas Kesterson</td>
</tr>
<tr>
<td>Location</td>
<td>Putnam County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 08.568' W 085° 28.034' (view using Google Maps) N 36° 08' 34" W 085° 28' 02" N 36.142800° W 085.467240°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,429 ft (436 m)</td>
</tr>
<tr>
<td>Built</td>
<td>circa 1944-1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="756">
<coordinates>-85.46724,36.1428,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="759">
<name>Cooks Hammock Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/cooks-hammock-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/cooks-hammock-fire-tower/">http://nhlr.org/lookouts/us/fl/cooks-hammock-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1084, FL 11 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Lafayette County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 29° 55.667' W 083° 16.733' (view using Google Maps) N 29° 55' 40" W 083° 16' 44" N 29.927778° W 083.278889°</td>
</tr>
<tr>
<td>Elevation</td>
<td>56 ft (17 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Department of Agriculture &amp; Consumer Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="758">
<coordinates>-83.278889,29.927778,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="761">
<name>Coolwater Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/coolwater-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/coolwater-lookout/">http://nhlr.org/lookouts/us/id/coolwater-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 765, ID 55 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 6, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 09.266' W 115° 27.416' (view using Google Maps) N 46° 09' 16" W 115° 27' 25" N 46.154440° W 115.456940°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,929 ft (2,112 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Moose Creek Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="760">
<coordinates>-115.45694,46.15444,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="763">
<name>Cooney Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/cooney-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/cooney-lookout/">http://nhlr.org/lookouts/us/mt/cooney-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1492, MT 70 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Flathead National Forest - Swan Lake Ranger District Missoula County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 31.393' W 113° 38.704' (view using Google Maps) N 47° 31' 24" W 113° 38' 42" N 47.523209° W 113.645067°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,547 ft (1,386 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="762">
<coordinates>-113.645067,47.523209,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="765">
<name>Copernicus Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/copernicus-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/copernicus-peak-lookout/">http://nhlr.org/lookouts/us/ca/copernicus-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1342, CA 165 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 26, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Santa Clara County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 20.807' W 121° 37.801' (view using Google Maps) N 37° 20' 48" W 121° 37' 48" N 37.346777° W 121.630023°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,385 ft (1,337 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1931/1938</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection - Santa Clara Unit (Cal Fire SCU)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="764">
<coordinates>-121.630023,37.346777,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="767">
<name>Copper Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/copper-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/copper-mountain-lookout/">http://nhlr.org/lookouts/us/wa/copper-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 271, WA 29 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 20, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>North Cascades National Park Whatcom County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 54.500' W 121° 27.700' (view using Google Maps) N 48° 54' 30" W 121° 27' 42" N 48.908330° W 121.461670°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,260 ft (1,908 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Dept. of the Interior</td>
</tr>
<tr>
<td>Cooperators</td>
<td>North Cascades National Park</td>
</tr>
</tbody>
</table>]]></description>
<Point id="766">
<coordinates>-121.46167,48.90833,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="769">
<name>Copperhead Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/oh/copperhead-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/oh/copperhead-fire-tower/">http://nhlr.org/lookouts/us/oh/copperhead-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 15, OH 2 (view other lookouts in United States, Ohio)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 16, 1991</td>
</tr>
<tr>
<td>Nominated by</td>
<td>David M. Bergman, Environmental Review Coordinator, Office of Outdoor Recreation Services, Ohio Department of Natural Resources</td>
</tr>
<tr>
<td>Location</td>
<td>Shawnee State Forest Scioto County, Ohio</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 46.351' W 083° 10.270' (view using Google Maps) N 38° 46' 21" W 083° 10' 16" N 38.772515° W 083.171173°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,246 ft (380 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ohio Dept. of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ohio Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="768">
<coordinates>-83.171173,38.772515,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="771">
<name>Cornell Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/cornell-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/cornell-butte-lookout/">http://nhlr.org/lookouts/us/wa/cornell-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1524, WA 73 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Christine Estrada</td>
</tr>
<tr>
<td>Location</td>
<td>Okanogan National Forest Okanogan County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 35.662' W 118° 53.423' (view using Google Maps) N 48° 35' 40" W 118° 53' 25" N 48.594366° W 118.890378°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,062 ft (1,543 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1958</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Okanogan National Forest</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Private Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="770">
<coordinates>-118.890378,48.594366,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="773">
<name>Cornell Hill Fire Tower at Wilton</name>
<atom:link>http://nhlr.org/lookouts/us/ny/cornell-hill-fire-tower-at-wilton/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/cornell-hill-fire-tower-at-wilton/">http://nhlr.org/lookouts/us/ny/cornell-hill-fire-tower-at-wilton/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 734, NY 31 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 21, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bill Starr</td>
</tr>
<tr>
<td>Location</td>
<td>Camp Saratoga Saratoga County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 09.165' W 073° 42.103' (view using Google Maps) N 43° 09' 10" W 073° 42' 06" N 43.152757° W 073.701710°</td>
</tr>
<tr>
<td>Elevation</td>
<td>335 ft (102 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1924</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wilton Wildlife Preserve &amp; Park</td>
</tr>
</tbody>
</table>]]></description>
<Point id="772">
<coordinates>-73.70171,43.152757,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="775">
<name>Corral Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/corral-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/corral-hill-lookout/">http://nhlr.org/lookouts/us/id/corral-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 783, ID 67 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 57.850' W 115° 49.367' (view using Google Maps) N 45° 57' 51" W 115° 49' 22" N 45.964170° W 115.822780°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,968 ft (1,819 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Clearwater Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="774">
<coordinates>-115.82278,45.96417,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="777">
<name>Cottonwood Pass Fire Station and Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/cottonwood-pass-fire-station-and-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/cottonwood-pass-fire-station-and-lookout/">http://nhlr.org/lookouts/us/ca/cottonwood-pass-fire-station-and-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1280, CA 124 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 5, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael Guerin</td>
</tr>
<tr>
<td>Location</td>
<td>Kings County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 51.192' W 120° 04.576' (view using Google Maps) N 35° 51' 12" W 120° 04' 35" N 35.853201° W 120.076264°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,060 ft (323 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection</td>
</tr>
</tbody>
</table>]]></description>
<Point id="776">
<coordinates>-120.076264,35.853201,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="779">
<name>Cougar Pass Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/cougar-pass-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/cougar-pass-lookout/">http://nhlr.org/lookouts/us/or/cougar-pass-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 952, OR 124 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor</td>
</tr>
<tr>
<td>Location</td>
<td>South Central Oregon Douglas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 35.823' W 123° 52.261' (view using Google Maps) N 43° 35' 49" W 123° 52' 16" N 43.597050° W 123.871020°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,750 ft (533 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oregon Department of Forestry/Coos FPA</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Coos Forest Protective Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="778">
<coordinates>-123.87102,43.59705,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="781">
<name>Cougar Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/cougar-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/cougar-peak-lookout/">http://nhlr.org/lookouts/us/mt/cougar-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 784, MT 46 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Lolo National Forest Sanders County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 44.683' W 115° 23.017' (view using Google Maps) N 47° 44' 41" W 115° 23' 01" N 47.744720° W 115.383610°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,694 ft (2,040 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1952</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Plains/Thompson Falls Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="780">
<coordinates>-115.38361,47.74472,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="783">
<name>Courtney Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/courtney-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/courtney-butte-lookout/">http://nhlr.org/lookouts/us/or/courtney-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1184, OR 128 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 26, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Avolio</td>
</tr>
<tr>
<td>Location</td>
<td>Wallowa County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 52.816' W 117° 22.426' (view using Google Maps) N 45° 52' 49" W 117° 22' 26" N 45.880275° W 117.373762°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,387 ft (1,337 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private owner</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes</td>
</tr>
</tbody>
</table>]]></description>
<Point id="782">
<coordinates>-117.373762,45.880275,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="785">
<name>Cove Creek Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/cove-creek-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/cove-creek-tower/">http://nhlr.org/lookouts/us/tn/cove-creek-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1079, TN 20 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael Spanjer</td>
</tr>
<tr>
<td>Location</td>
<td>Campbell County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 15.582' W 084° 06.066' (view using Google Maps) N 36° 15' 35" W 084° 06' 04" N 36.259700° W 084.101100°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,432 ft (436 m)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="784">
<coordinates>-84.1011,36.2597,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="787">
<name>Cove Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/cove-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/cove-mountain-lookout/">http://nhlr.org/lookouts/us/va/cove-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1028, VA 19 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Scholetzky</td>
</tr>
<tr>
<td>Location</td>
<td>Cove Mountain Wythe County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 02.008' W 080° 57.302' (view using Google Maps) N 37° 02' 00" W 080° 57' 18" N 37.033460° W 080.955030°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,338 ft (1,017 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
</tbody>
</table>]]></description>
<Point id="786">
<coordinates>-80.95503,37.03346,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="789">
<name>Cove Mountain Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/cove-mountain-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/cove-mountain-tower/">http://nhlr.org/lookouts/us/tn/cove-mountain-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 688, TN 7 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 19, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Peter Barr</td>
</tr>
<tr>
<td>Location</td>
<td>Great Smoky Mountains National Park Sevier County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 41.798' W 083° 36.588' (view using Google Maps) N 35° 41' 48" W 083° 36' 35" N 35.696640° W 083.609800°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,077 ft (1,243 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Smoky Mountain Hiking Club &amp; Friends of the Great Smoky Mountains</td>
</tr>
</tbody>
</table>]]></description>
<Point id="788">
<coordinates>-83.6098,35.69664,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="791">
<name>Cowee Bald Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nc/cowee-bald-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/cowee-bald-lookout/">http://nhlr.org/lookouts/us/nc/cowee-bald-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 71, NC 3 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Joe Nicholson, Wayah R.D.</td>
</tr>
<tr>
<td>Location</td>
<td>Nantahala National Forest Jackson County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 19.584' W 083° 20.093' (view using Google Maps) N 35° 19' 35" W 083° 20' 06" N 35.326405° W 083.334877°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,892 ft (1,491 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Wayah Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="790">
<coordinates>-83.334877,35.326405,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="793">
<name>Craft Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/craft-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/craft-point-lookout/">http://nhlr.org/lookouts/us/or/craft-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1705, OR 167 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 25, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Danielle Sullivan</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Harney County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 46.444' W 118° 44.263' (view using Google Maps) N 43° 46' 27" W 118° 44' 16" N 43.774069° W 118.737716°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,948 ft (1,813 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="792">
<coordinates>-118.737716,43.774069,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="795">
<name>Crafton Gate Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/va/crafton-gate-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/crafton-gate-lookout-tower/">http://nhlr.org/lookouts/us/va/crafton-gate-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1035, VA 15 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 3, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Scholetzky</td>
</tr>
<tr>
<td>Location</td>
<td>Charlotte County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 54.577' W 078° 31.697' (view using Google Maps) N 36° 54' 35" W 078° 31' 42" N 36.909617° W 078.528281°</td>
</tr>
<tr>
<td>Elevation</td>
<td>596 ft (182 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Virginia Department of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="794">
<coordinates>-78.528281,36.909617,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="797">
<name>Cranberry Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/cranberry-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/cranberry-rock-lookout/">http://nhlr.org/lookouts/us/wi/cranberry-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1229, WI 33 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 16, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Juneau County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 14.406' W 089° 59.700' (view using Google Maps) N 44° 14' 24" W 089° 59' 42" N 44.240100° W 089.995000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,037 ft (316 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="796">
<coordinates>-89.995,44.2401,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="799">
<name>Crane Flat Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/crane-flat-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/crane-flat-lookout/">http://nhlr.org/lookouts/us/ca/crane-flat-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 280, CA 14 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 4, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Yosemite National Park Mariposa and Toulumne Counties, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 45.613' W 119° 49.261' (view using Google Maps) N 37° 45' 37" W 119° 49' 16" N 37.760220° W 119.821020°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,610 ft (2,015 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1931</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>National Park Service, Western Region</td>
</tr>
</tbody>
</table>]]></description>
<Point id="798">
<coordinates>-119.82102,37.76022,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="801">
<name>Craney Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nh/craney-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nh/craney-hill-lookout/">http://nhlr.org/lookouts/us/nh/craney-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 210, NH 4 (view other lookouts in United States, New Hampshire)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 17, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dale P. Clement</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Henniker Merrimack County, New Hampshire</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 09.000' W 071° 48.000' (view using Google Maps) N 43° 08' 60" W 071° 47' 60" N 43.150000° W 071.800000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,296 ft (395 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Town of Henniker, NH</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Town of Henniker, NH &amp; The Henniker Historical Society</td>
</tr>
</tbody>
</table>]]></description>
<Point id="800">
<coordinates>-71.8,43.15,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="803">
<name>Crenshaw Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/crenshaw-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/crenshaw-lookout-tower/">http://nhlr.org/lookouts/us/ms/crenshaw-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1604, MS 9 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 19, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Private Property Panola County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 31.816' W 090° 11.216' (view using Google Maps) N 34° 31' 49" W 090° 11' 13" N 34.530270° W 090.186940°</td>
</tr>
<tr>
<td>Elevation</td>
<td>362 ft (110 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Sanders Family</td>
</tr>
</tbody>
</table>]]></description>
<Point id="802">
<coordinates>-90.18694,34.53027,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="805">
<name>Crooked Oak Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/crooked-oak-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/crooked-oak-lookout-tower/">http://nhlr.org/lookouts/us/al/crooked-oak-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 849, AL 27 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 10, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Colbert County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 35.358' W 087° 47.878' (view using Google Maps) N 34° 35' 21" W 087° 47' 53" N 34.589296° W 087.797963°</td>
</tr>
<tr>
<td>Elevation</td>
<td>965 ft (294 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1971</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="804">
<coordinates>-87.797963,34.589296,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="807">
<name>Crossroads Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ar/crossroads-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/crossroads-fire-tower/">http://nhlr.org/lookouts/us/ar/crossroads-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 641, AR 8 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 29, 2005</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mayor Gordon Hennington and Judith Myers</td>
</tr>
<tr>
<td>Location</td>
<td>City of Hamburg Ashley County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 13.834' W 091° 55.500' (view using Google Maps) N 33° 13' 50" W 091° 55' 30" N 33.230560° W 091.925000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>164 ft (50 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>City of Hamburg, Arkansas</td>
</tr>
<tr>
<td>Cooperators</td>
<td>City of Hamburg, Arkansas</td>
</tr>
</tbody>
</table>]]></description>
<Point id="806">
<coordinates>-91.925,33.23056,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="809">
<name>Crown Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/crown-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/crown-mountain-fire-tower/">http://nhlr.org/lookouts/us/ga/crown-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1297, GA 26 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 14, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Victoria Oliver</td>
</tr>
<tr>
<td>Location</td>
<td>Lumpkin County forestry office Lumpkin County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 31.329' W 083° 59.180' (view using Google Maps) N 34° 31' 20" W 083° 59' 11" N 34.522150° W 083.986340°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,721 ft (525 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Georgia Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="808">
<coordinates>-83.98634,34.52215,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="811">
<name>Culpeper Lookout</name>
<Point id="810">
<coordinates>0.0, 0.0, 0.0</coordinates>
</Point>
</Placemark>
<Placemark id="813">
<name>Culvers Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nj/culvers-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/culvers-lookout/">http://nhlr.org/lookouts/us/nj/culvers-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 44, NJ 1 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 1, 1992</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bob Spear, NJ Rep., FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Stokes State Forest Sussex County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 11.270' W 074° 45.988' (view using Google Maps) N 41° 11' 16" W 074° 45' 59" N 41.187833° W 074.766467°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,509 ft (460 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NJ Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>NJ Forest Fire Service; NJ Chapter, FFLA</td>
</tr>
</tbody>
</table>]]></description>
<Point id="812">
<coordinates>-74.766467,41.187833,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="815">
<name>Cumberland Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/va/cumberland-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/cumberland-fire-tower/">http://nhlr.org/lookouts/us/va/cumberland-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1082, VA 25 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 9, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Krissy Reynolds</td>
</tr>
<tr>
<td>Location</td>
<td>Cumberland County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 29.782' W 078° 14.626' (view using Google Maps) N 37° 29' 47" W 078° 14' 38" N 37.496372° W 078.243764°</td>
</tr>
<tr>
<td>Elevation</td>
<td>466 ft (142 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>Virginia Department of Conservation and Recreation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="814">
<coordinates>-78.243764,37.496372,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="817">
<name>Currituck Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nc/currituck-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/currituck-fire-tower/">http://nhlr.org/lookouts/us/nc/currituck-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1703, NC 29 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 25, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Rocco Germani</td>
</tr>
<tr>
<td>Location</td>
<td>Currituck County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 26.142' W 076° 00.101' (view using Google Maps) N 36° 26' 09" W 076° 00' 06" N 36.435705° W 076.001683°</td>
</tr>
<tr>
<td>Elevation</td>
<td>12 ft (4 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private Owner (Jeremy Domozick)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="816">
<coordinates>-76.001683,36.435705,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="819">
<name>Custer Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/custer-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/custer-lookout/">http://nhlr.org/lookouts/us/id/custer-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 750, ID 52 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 20, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jill Osborn</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon-Challis National Forest Custer County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 20.957' W 114° 37.445' (view using Google Maps) N 44° 20' 57" W 114° 37' 27" N 44.349290° W 114.624090°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,742 ft (2,969 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Challis-Yankee Fork Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="818">
<coordinates>-114.62409,44.34929,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="821">
<name>Custer Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/sd/custer-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sd/custer-peak-lookout/">http://nhlr.org/lookouts/us/sd/custer-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 6, SD 1 (view other lookouts in United States, South Dakota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 13, 1990</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Paul Mock, District Ranger, USFS, Nemo District, Black Hills National Forest</td>
</tr>
<tr>
<td>Location</td>
<td>Black Hills National Forest Lawrence County, South Dakota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 14.638' W 103° 44.091' (view using Google Maps) N 44° 14' 38" W 103° 44' 05" N 44.243960° W 103.734846°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,713 ft (2,046 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Nemo Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="820">
<coordinates>-103.734846,44.24396,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="823">
<name>Cuyama Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/cuyama-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/cuyama-peak-lookout/">http://nhlr.org/lookouts/us/ca/cuyama-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 286, CA 20 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 10, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Los Padres National Forest Ventura County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 45.236' W 119° 28.557' (view using Google Maps) N 34° 45' 14" W 119° 28' 33" N 34.753940° W 119.475955°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,783 ft (1,763 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mount Pinos Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="822">
<coordinates>-119.475955,34.75394,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="825">
<name>Cyclone Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/cyclone-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/cyclone-peak-lookout/">http://nhlr.org/lookouts/us/mt/cyclone-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1499, MT 77 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Flathead NF - Glacier View RD Flathead County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 43.454' W 114° 18.874' (view using Google Maps) N 48° 43' 27" W 114° 18' 52" N 48.724237° W 114.314567°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,028 ft (1,837 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="824">
<coordinates>-114.314567,48.724237,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="827">
<name>Dairyland Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/dairyland-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/dairyland-lookout/">http://nhlr.org/lookouts/us/wi/dairyland-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1240, WI 35 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 28, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Douglas County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 14.647' W 092° 14.622' (view using Google Maps) N 46° 14' 39" W 092° 14' 37" N 46.244114° W 092.243708°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,214 ft (370 m)</td>
</tr>
<tr>
<td>Built</td>
<td>August 1937</td>
</tr>
<tr>
<td>Administered by</td>
<td>Private Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="826">
<coordinates>-92.243708,46.244114,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="829">
<name>Danbury Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/danbury-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/danbury-lookout/">http://nhlr.org/lookouts/us/wi/danbury-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1249, WI 44 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 28, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Burnett County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 57.857' W 092° 19.096' (view using Google Maps) N 45° 57' 51" W 092° 19' 06" N 45.964275° W 092.318269°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,104 ft (336 m)</td>
</tr>
<tr>
<td>Built</td>
<td>November 1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="828">
<coordinates>-92.318269,45.964275,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="831">
<name>Daniel's Gap Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/daniels-gap-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/daniels-gap-tower/">http://nhlr.org/lookouts/us/al/daniels-gap-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 897, AL 55 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Cherokee County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 16.916' W 085° 41.372' (view using Google Maps) N 34° 16' 55" W 085° 41' 22" N 34.281940° W 085.689530°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,127 ft (344 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="830">
<coordinates>-85.68953,34.28194,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="833">
<name>Dan's Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/md/dans-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/md/dans-rock-lookout/">http://nhlr.org/lookouts/us/md/dans-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1406, MD 10 (view other lookouts in United States, Maryland)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 24, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ben Funderburg</td>
</tr>
<tr>
<td>Location</td>
<td>Dan's Rock Overlook Park Allegany County, Maryland</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 34.890' W 078° 53.868' (view using Google Maps) N 39° 34' 53" W 078° 53' 52" N 39.581500° W 078.897800°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,895 ft (882 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Allegany County, Maryland</td>
</tr>
</tbody>
</table>]]></description>
<Point id="832">
<coordinates>-78.8978,39.5815,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="835">
<name>Danskin Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/danskin-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/danskin-peak-lookout/">http://nhlr.org/lookouts/us/id/danskin-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1426, ID 118 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 27, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Boise National Forest Elmore County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 24.793' W 115° 39.531' (view using Google Maps) N 43° 24' 48" W 115° 39' 32" N 43.413221° W 115.658852°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,706 ft (2,044 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1940</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Boise National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="834">
<coordinates>-115.658852,43.413221,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="837">
<name>Dark Canyon Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/dark-canyon-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/dark-canyon-lookout/">http://nhlr.org/lookouts/us/nm/dark-canyon-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1108, NM 34 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 30, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Gutzman</td>
</tr>
<tr>
<td>Location</td>
<td>Lincoln National Forest Eddy County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 04.902' W 104° 44.375' (view using Google Maps) N 32° 04' 54" W 104° 44' 23" N 32.081692° W 104.739590°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,968 ft (2,124 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1949</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Guadalupe Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes</td>
</tr>
</tbody>
</table>]]></description>
<Point id="836">
<coordinates>-104.73959,32.081692,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="839">
<name>Davenport Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/davenport-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/davenport-lookout/">http://nhlr.org/lookouts/us/nm/davenport-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 666, NM 20 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 30, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Cibola National Forest Catron County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 17.017' W 107° 54.830' (view using Google Maps) N 34° 17' 01" W 107° 54' 50" N 34.283620° W 107.913830°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,251 ft (2,820 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1954</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Magdalena Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="838">
<coordinates>-107.91383,34.28362,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="841">
<name>Davis Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/davis-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/davis-mountain-lookout/">http://nhlr.org/lookouts/us/mt/davis-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1505, MT 83 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai NF Lincoln County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 30.323' W 115° 00.892' (view using Google Maps) N 48° 30' 19" W 115° 00' 54" N 48.505375° W 115.014862°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,058 ft (1,846 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="840">
<coordinates>-115.014862,48.505375,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="843">
<name>Dead Man's Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/dead-mans-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/dead-mans-peak-lookout/">http://nhlr.org/lookouts/us/nm/dead-mans-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1010, NM 30 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Scott Waltemeyer</td>
</tr>
<tr>
<td>Location</td>
<td>Santa Fe National Forest Rio Arriba County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 25.603' W 106° 46.569' (view using Google Maps) N 36° 25' 36" W 106° 46' 34" N 36.426717° W 106.776150°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,786 ft (2,678 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="842">
<coordinates>-106.77615,36.426717,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="845">
<name>Deadline Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/deadline-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/deadline-ridge-lookout/">http://nhlr.org/lookouts/us/wy/deadline-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1520, WY 19 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 13, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Bridger-Teton National Forest Sublette County, Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 26.279' W 110° 30.273' (view using Google Maps) N 42° 26' 17" W 110° 30' 16" N 42.437985° W 110.504552°</td>
</tr>
<tr>
<td>Elevation</td>
<td>10,118 ft (3,084 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Circa 1940</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Bridger-Teton National Forest</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Sublette County Historic Preservation Board</td>
</tr>
</tbody>
</table>]]></description>
<Point id="844">
<coordinates>-110.504552,42.437985,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="847">
<name>Deadman Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/co/deadman-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/co/deadman-lookout/">http://nhlr.org/lookouts/us/co/deadman-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 10, CO 2 (view other lookouts in United States, Colorado)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 17, 1990</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Donna L. Hepp, District Ranger, U.S. Forest Service, Redfeather RD; Robert D. Sullivan, USFS Ret., LO Volunteer Coordinator</td>
</tr>
<tr>
<td>Location</td>
<td>Roosevelt-Arapaho National Forest Larimer County, Colorado</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 49.794' W 105° 45.090' (view using Google Maps) N 40° 49' 48" W 105° 45' 05" N 40.829900° W 105.751499°</td>
</tr>
<tr>
<td>Elevation</td>
<td>10,673 ft (3,253 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Canyon Lakes Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="846">
<coordinates>-105.751499,40.8299,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="849">
<name>Deadman Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wy/deadman-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wy/deadman-mountain-lookout/">http://nhlr.org/lookouts/us/wy/deadman-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1569, WY 21 (view other lookouts in United States, Wyoming)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 3, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Bridger National Forest Lincoln County, Wyoming</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 00.309' W 110° 39.931' (view using Google Maps) N 43° 00' 19" W 110° 39' 56" N 43.005149° W 110.665523°</td>
</tr>
<tr>
<td>Elevation</td>
<td>10,361 ft (3,158 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Bridger National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="848">
<coordinates>-110.665523,43.005149,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="851">
<name>Deadwood Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/deadwood-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/deadwood-lookout/">http://nhlr.org/lookouts/us/id/deadwood-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 512, ID 34 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 12, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Susie Osgood, Boise NF Historian</td>
</tr>
<tr>
<td>Location</td>
<td>Boise National Forest Boise County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 07.524' W 115° 42.245' (view using Google Maps) N 44° 07' 31" W 115° 42' 15" N 44.125400° W 115.704090°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,575 ft (2,309 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Emmett Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="850">
<coordinates>-115.70409,44.1254,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="853">
<name>Deadwood Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/deadwood-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/deadwood-peak-lookout/">http://nhlr.org/lookouts/us/ca/deadwood-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1396, CA 219 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 23, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Sierra National Forest Madera County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 18.813' W 119° 41.156' (view using Google Maps) N 37° 18' 49" W 119° 41' 09" N 37.313553° W 119.685935°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,547 ft (1,386 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934 - Addition 1952</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection</td>
</tr>
<tr>
<td>Cooperators</td>
<td>US Forest Service - Sierra National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="852">
<coordinates>-119.685935,37.313553,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="855">
<name>Deasey Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/me/deasey-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/me/deasey-mountain-lookout/">http://nhlr.org/lookouts/us/me/deasey-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 662, ME 10 (view other lookouts in United States, Maine)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bill Cobb</td>
</tr>
<tr>
<td>Location</td>
<td>Penobscot County, Maine</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 56.483' W 068° 41.200' (view using Google Maps) N 45° 56' 29" W 068° 41' 12" N 45.941380° W 068.686670°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,876 ft (572 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1929</td>
</tr>
<tr>
<td>Administered by</td>
<td>Elliotsville Plantation, Inc.</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Elliotsville Plantation, Inc.</td>
</tr>
</tbody>
</table>]]></description>
<Point id="854">
<coordinates>-68.68667,45.94138,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="857">
<name>Deboullie Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/me/deboullie-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/me/deboullie-mountain-lookout/">http://nhlr.org/lookouts/us/me/deboullie-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 138, ME 6 (view other lookouts in United States, Maine)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 24, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Spear, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Maine Public Reserve Lands Aroostook County, Maine</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 58.293' W 068° 52.399' (view using Google Maps) N 46° 58' 18" W 068° 52' 24" N 46.971550° W 068.873317°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,744 ft (532 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
<tr>
<td>Administered by</td>
<td>Maine Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Maine Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="856">
<coordinates>-68.873317,46.97155,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="859">
<name>Decatur County Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/decatur-county-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/decatur-county-fire-tower/">http://nhlr.org/lookouts/us/ga/decatur-county-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 716, GA 11 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 2, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brenda Jones</td>
</tr>
<tr>
<td>Location</td>
<td>Decatur County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 30° 55.049' W 084° 35.762' (view using Google Maps) N 30° 55' 03" W 084° 35' 46" N 30.917480° W 084.596030°</td>
</tr>
<tr>
<td>Elevation</td>
<td>100 ft (30 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>Georgia Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Georgia Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="858">
<coordinates>-84.59603,30.91748,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="861">
<name>Deer Head Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/deer-head-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/deer-head-lookout/">http://nhlr.org/lookouts/us/va/deer-head-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1519, VA 44 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 27, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Virginia Department of Forestry Shenandoah County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 48.586' W 078° 43.019' (view using Google Maps) N 38° 48' 35" W 078° 43' 01" N 38.809762° W 078.716990°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,727 ft (526 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930</td>
</tr>
</tbody>
</table>]]></description>
<Point id="860">
<coordinates>-78.71699,38.809762,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="863">
<name>Deer Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/deer-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/deer-mountain-lookout/">http://nhlr.org/lookouts/us/mt/deer-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 931, MT 57 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 25, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Luke Channer</td>
</tr>
<tr>
<td>Location</td>
<td>Bitterroot National Forest Ravalli County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 01.564' W 114° 03.305' (view using Google Maps) N 46° 01' 34" W 114° 03' 18" N 46.026070° W 114.055090°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,284 ft (2,220 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Darby Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="862">
<coordinates>-114.05509,46.02607,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="865">
<name>Deer Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nh/deer-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nh/deer-mountain-lookout/">http://nhlr.org/lookouts/us/nh/deer-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1575, NH 22 (view other lookouts in United States, New Hampshire)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>John W. Higgins</td>
</tr>
<tr>
<td>Location</td>
<td>Connecticut Lakes Headwaters Working Forest Coos County, New Hampshire</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 12.372' W 071° 13.704' (view using Google Maps) N 45° 12' 22" W 071° 13' 42" N 45.206200° W 071.228400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,005 ft (916 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Hampshire Department of Natural and Cultural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="864">
<coordinates>-71.2284,45.2062,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="867">
<name>Deer Park Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/deer-park-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/deer-park-fire-tower/">http://nhlr.org/lookouts/us/fl/deer-park-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1137, FL 20 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 24, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Robert Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Osceola County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 28° 05.969' W 080° 53.899' (view using Google Maps) N 28° 05' 58" W 080° 53' 54" N 28.099484° W 080.898322°</td>
</tr>
<tr>
<td>Elevation</td>
<td>47 ft (14 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Department of Agriculture &amp; Consumer Services</td>
</tr>
</tbody>
</table>]]></description>
<Point id="866">
<coordinates>-80.898322,28.099484,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="869">
<name>Deer Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/deer-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/deer-ridge-lookout/">http://nhlr.org/lookouts/us/id/deer-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 766, ID 56 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 6, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Idaho Panhandle (Kaniksu) National Forests Boundary County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 50.717' W 116° 06.184' (view using Google Maps) N 48° 50' 43" W 116° 06' 11" N 48.845280° W 116.103060°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,755 ft (1,449 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1965</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bonners Ferry Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="868">
<coordinates>-116.10306,48.84528,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="871">
<name>Deer Run Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mo/deer-run-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mo/deer-run-lookout/">http://nhlr.org/lookouts/us/mo/deer-run-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 981, MO 5 (view other lookouts in United States, Missouri)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 12, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jim Lyon</td>
</tr>
<tr>
<td>Location</td>
<td>Current River Conservation Area Reynolds County, Missouri</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 12.086' W 090° 59.874' (view using Google Maps) N 37° 12' 05" W 090° 59' 52" N 37.201437° W 090.997903°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,110 ft (338 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1926</td>
</tr>
<tr>
<td>Administered by</td>
<td>Missouri Department of Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="870">
<coordinates>-90.997903,37.201437,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="873">
<name>Deer Springs Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/deer-springs-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/deer-springs-lookout/">http://nhlr.org/lookouts/us/az/deer-springs-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 418, AZ 25 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 4, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, Director, AZ/NM FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Apache-Sitgreaves National Forest Navajo County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 18.366' W 110° 25.218' (view using Google Maps) N 34° 18' 22" W 110° 25' 13" N 34.306100° W 110.420300°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,235 ft (2,205 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Black Mesa Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="872">
<coordinates>-110.4203,34.3061,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="875">
<name>Delilah Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/delilah-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/delilah-lookout/">http://nhlr.org/lookouts/us/ca/delilah-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 379, CA 40 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 10, 2001</td>
</tr>
<tr>
<td>Location</td>
<td>Sequoia National Forest Fresno County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 48.242' W 119° 07.125' (view using Google Maps) N 36° 48' 15" W 119° 07' 08" N 36.804030° W 119.118750°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,063 ft (1,543 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Hume Lake Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="874">
<coordinates>-119.11875,36.80403,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="877">
<name>Demond Hill Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mi/demond-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mi/demond-hill-fire-tower/">http://nhlr.org/lookouts/us/mi/demond-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1576, MI 7 (view other lookouts in United States, Michigan)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kari Thompson</td>
</tr>
<tr>
<td>Location</td>
<td>Hiawatha National Forest Chippewa County, Michigan</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 21.600' W 084° 46.938' (view using Google Maps) N 46° 21' 36" W 084° 46' 56" N 46.360000° W 084.782300°</td>
</tr>
<tr>
<td>Elevation</td>
<td>915 ft (279 m)</td>
</tr>
<tr>
<td>Built</td>
<td>circa 1925</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="876">
<coordinates>-84.7823,46.36,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="879">
<name>Dennis Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/dennis-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/dennis-fire-tower/">http://nhlr.org/lookouts/us/ma/dennis-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 607, MA 18 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Dennis Barnstable County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 44.033' W 070° 11.050' (view using Google Maps) N 41° 44' 02" W 070° 11' 03" N 41.733890° W 070.184170°</td>
</tr>
<tr>
<td>Elevation</td>
<td>148 ft (45 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1947</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 1</td>
</tr>
</tbody>
</table>]]></description>
<Point id="878">
<coordinates>-70.18417,41.73389,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="881">
<name>Desolation Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/desolation-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/desolation-butte-lookout/">http://nhlr.org/lookouts/us/or/desolation-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1610, OR 137 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Umatilla National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 51.034' W 118° 39.872' (view using Google Maps) N 44° 51' 02" W 118° 39' 52" N 44.850565° W 118.664541°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,034 ft (2,144 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1961</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Umatilla National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="880">
<coordinates>-118.664541,44.850565,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="883">
<name>Desolation Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/desolation-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/desolation-peak-lookout/">http://nhlr.org/lookouts/us/wa/desolation-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 272, WA 30 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 20, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>North Cascades National Park Whatcom County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 54.670' W 121° 00.967' (view using Google Maps) N 48° 54' 40" W 121° 00' 58" N 48.911160° W 121.016121°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,982 ft (1,823 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Dept. of the Interior</td>
</tr>
<tr>
<td>Cooperators</td>
<td>North Cascades National Park</td>
</tr>
</tbody>
</table>]]></description>
<Point id="882">
<coordinates>-121.016121,48.91116,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="885">
<name>DeSoto Falls Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/desoto-falls-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/desoto-falls-tower/">http://nhlr.org/lookouts/us/al/desoto-falls-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 858, AL 36 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 7, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>DeSoto State Park DeKalb County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 32.350' W 085° 36.725' (view using Google Maps) N 34° 32' 21" W 085° 36' 43" N 34.539160° W 085.612080°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,850 ft (564 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1952</td>
</tr>
<tr>
<td>Removed</td>
<td>circa 2010</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>US 1703, AL 14</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="884">
<coordinates>-85.61208,34.53916,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="887">
<name>Devil's Head Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/co/devils-head-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/co/devils-head-lookout/">http://nhlr.org/lookouts/us/co/devils-head-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 8, CO 1 (view other lookouts in United States, Colorado)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 13, 1990</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ed Ryberg, District Ranger, U.S. Forest Service, South Platte Ranger District</td>
</tr>
<tr>
<td>Location</td>
<td>Pike National Forest Douglas County, Colorado</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 15.594' W 105° 06.036' (view using Google Maps) N 39° 15' 36" W 105° 06' 02" N 39.259900° W 105.100603°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,702 ft (2,957 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1912</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>South Platte Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="886">
<coordinates>-105.100603,39.2599,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="889">
<name>Devils Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/devils-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/devils-peak-lookout/">http://nhlr.org/lookouts/us/or/devils-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 521, OR 102 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 13, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Mt. Hood National Forest Clackamas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 15.857' W 121° 52.537' (view using Google Maps) N 45° 15' 51" W 121° 52' 32" N 45.264280° W 121.875620°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,953 ft (1,510 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1952</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Zigzag Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="888">
<coordinates>-121.87562,45.26428,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="891">
<name>DeWitt (Dinwiddie) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/dewitt-dinwiddie-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/dewitt-dinwiddie-lookout/">http://nhlr.org/lookouts/us/va/dewitt-dinwiddie-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1164, VA 30 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 23, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Reynolds</td>
</tr>
<tr>
<td>Location</td>
<td>Dinwiddie County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 02.522' W 077° 38.389' (view using Google Maps) N 37° 02' 31" W 077° 38' 23" N 37.042031° W 077.639812°</td>
</tr>
<tr>
<td>Elevation</td>
<td>302 ft (92 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930s</td>
</tr>
<tr>
<td>Administered by</td>
<td>Virginia Department of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="890">
<coordinates>-77.639812,37.042031,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="893">
<name>Diablo Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/diablo-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/diablo-lookout/">http://nhlr.org/lookouts/us/id/diablo-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 785, ID 68 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 17.767' W 114° 37.050' (view using Google Maps) N 46° 17' 46" W 114° 37' 03" N 46.296110° W 114.617500°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,461 ft (2,274 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1965</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Powell Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="892">
<coordinates>-114.6175,46.29611,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="895">
<name>Diamond Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/diamond-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/diamond-butte-lookout/">http://nhlr.org/lookouts/us/mt/diamond-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1529, MT 92 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 12, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Custer-Gallatin NF and Montana BLM Powder River County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 14.949' W 105° 55.966' (view using Google Maps) N 45° 14' 57" W 105° 55' 58" N 45.249150° W 105.932760°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,291 ft (1,308 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1970</td>
</tr>
<tr>
<td>Administered by</td>
<td>Forest Service and BLM</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="894">
<coordinates>-105.93276,45.24915,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="897">
<name>Diamond Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/diamond-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/diamond-point-lookout/">http://nhlr.org/lookouts/us/az/diamond-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 441, AZ 37 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 20, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, AZ/NM Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Tonto National Forest Gila County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 17.449' W 111° 11.565' (view using Google Maps) N 34° 17' 27" W 111° 11' 34" N 34.290820° W 111.192750°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,157 ft (1,877 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Payson Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="896">
<coordinates>-111.19275,34.29082,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="899">
<name>Dias Creek Station Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/nj/dias-creek-station-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nj/dias-creek-station-fire-tower/">http://nhlr.org/lookouts/us/nj/dias-creek-station-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 567, NJ 20 (view other lookouts in United States, New Jersey)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bob Spear</td>
</tr>
<tr>
<td>Location</td>
<td>Cape May County, New Jersey</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 06.271' W 074° 52.699' (view using Google Maps) N 39° 06' 16" W 074° 52' 42" N 39.104517° W 074.878317°</td>
</tr>
<tr>
<td>Elevation</td>
<td>13 ft (4 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1944</td>
</tr>
<tr>
<td>Administered by</td>
<td>New Jersey Forest Fire Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>New Jersey Forest Fire Service, Division C</td>
</tr>
</tbody>
</table>]]></description>
<Point id="898">
<coordinates>-74.878317,39.104517,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="901">
<name>Dickinson Hill Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/dickinson-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/dickinson-hill-fire-tower/">http://nhlr.org/lookouts/us/ny/dickinson-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 377, NY 22 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 7, 2001</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Friends of Grafton Lakes State Park, Inc.</td>
</tr>
<tr>
<td>Location</td>
<td>Rensselaer County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 47.598' W 073° 24.864' (view using Google Maps) N 42° 47' 36" W 073° 24' 52" N 42.793300° W 073.414400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,760 ft (536 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Police</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Friends of Grafton Lakes State Park</td>
</tr>
</tbody>
</table>]]></description>
<Point id="900">
<coordinates>-73.4144,42.7933,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="903">
<name>Dickson Lookout (Barnabe Mountain)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/dickson-lookout-barnabe-mountain/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/dickson-lookout-barnabe-mountain/">http://nhlr.org/lookouts/us/ca/dickson-lookout-barnabe-mountain/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 643, CA 76 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 31, 2005</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Marin County Fire</td>
</tr>
<tr>
<td>Location</td>
<td>Samuel P. Taylor State Park Marin County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 01.608' W 122° 42.980' (view using Google Maps) N 38° 01' 36" W 122° 42' 59" N 38.026800° W 122.716340°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,460 ft (445 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>Marin County Fire Department</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Marin County, California</td>
</tr>
</tbody>
</table>]]></description>
<Point id="902">
<coordinates>-122.71634,38.0268,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="905">
<name>Digger Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/digger-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/digger-butte-lookout/">http://nhlr.org/lookouts/us/ca/digger-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 398, CA 49 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 12, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen National Forest Tehama County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 25.890' W 121° 47.076' (view using Google Maps) N 40° 25' 53" W 121° 47' 05" N 40.431500° W 121.784600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,861 ft (1,177 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Removed</td>
<td>2009</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>US 1713, CA 19</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Almanor Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="904">
<coordinates>-121.7846,40.4315,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="907">
<name>Dividing Ridge Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ky/dividing-ridge-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ky/dividing-ridge-lookout/">http://nhlr.org/lookouts/us/ky/dividing-ridge-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1592, KY 13 (view other lookouts in United States, Kentucky)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>M Davis</td>
</tr>
<tr>
<td>Location</td>
<td>Metcalfe County, Kentucky</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 56.283' W 085° 27.133' (view using Google Maps) N 36° 56' 17" W 085° 27' 08" N 36.938056° W 085.452222°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,114 ft (340 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Kentucky Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="906">
<coordinates>-85.452222,36.938056,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="909">
<name>Dixie Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/dixie-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/dixie-butte-lookout/">http://nhlr.org/lookouts/us/or/dixie-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 657, OR 108 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 34.977' W 118° 37.549' (view using Google Maps) N 44° 34' 59" W 118° 37' 33" N 44.582950° W 118.625820°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,511 ft (2,289 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1968</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Prairie City Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="908">
<coordinates>-118.62582,44.58295,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="911">
<name>Dixie Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/dixie-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/dixie-mountain-lookout/">http://nhlr.org/lookouts/us/ca/dixie-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1337, CA 160 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 24, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Plumas National Forest Plumas County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 56.333' W 120° 17.121' (view using Google Maps) N 39° 56' 20" W 120° 17' 07" N 39.938886° W 120.285355°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,070 ft (2,460 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1928</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Plumas National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="910">
<coordinates>-120.285355,39.938886,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="913">
<name>Dodger Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/dodger-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/dodger-point-lookout/">http://nhlr.org/lookouts/us/wa/dodger-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1112, WA 65 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 30, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Hes Tallman</td>
</tr>
<tr>
<td>Location</td>
<td>Olympic National Park Challam County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 52.447' W 123° 30.595' (view using Google Maps) N 47° 52' 27" W 123° 30' 36" N 47.874110° W 123.509920°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,728 ft (1,746 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="912">
<coordinates>-123.50992,47.87411,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="915">
<name>Dog Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/dog-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/dog-mountain-lookout/">http://nhlr.org/lookouts/us/or/dog-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 475, OR 71 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Fremont National Forest Lake County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 07.104' W 120° 43.084' (view using Google Maps) N 42° 07' 06" W 120° 43' 05" N 42.118400° W 120.718070°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,890 ft (2,100 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1997</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Lakeview Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="914">
<coordinates>-120.71807,42.1184,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="917">
<name>Don Landon Lookout (Green's Peak)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/don-landon-lookout-greens-peak/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/don-landon-lookout-greens-peak/">http://nhlr.org/lookouts/us/ca/don-landon-lookout-greens-peak/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1389, CA 212 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 30.411' W 120° 42.322' (view using Google Maps) N 40° 30' 25" W 120° 42' 19" N 40.506842° W 120.705365°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,145 ft (2,178 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1974</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection - Lassen-Modoc Unit (Cal Fire LMU)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="916">
<coordinates>-120.705365,40.506842,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="919">
<name>Doniphan Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mo/doniphan-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mo/doniphan-lookout/">http://nhlr.org/lookouts/us/mo/doniphan-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1776, MO 10 (view other lookouts in United States, Missouri)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 31, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jerry Lutes</td>
</tr>
<tr>
<td>Location</td>
<td>Ripley County, Missouri</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 39.061' W 090° 47.727' (view using Google Maps) N 36° 39' 04" W 090° 47' 44" N 36.651022° W 090.795442°</td>
</tr>
<tr>
<td>Elevation</td>
<td>653 ft (199 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1958-1959</td>
</tr>
<tr>
<td>Administered by</td>
<td>Missouri Department of Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="918">
<coordinates>-90.795442,36.651022,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="921">
<name>Double Arrow Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/double-arrow-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/double-arrow-lookout/">http://nhlr.org/lookouts/us/mt/double-arrow-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 165, MT 12 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 26, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tim Love, Seeley Lake District Ranger</td>
</tr>
<tr>
<td>Location</td>
<td>Lolo National Forest Missoula County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 09.863' W 113° 31.844' (view using Google Maps) N 47° 09' 52" W 113° 31' 51" N 47.164380° W 113.530741°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,888 ft (1,490 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Seeley Lake Ranger District &amp; Friends of Double Arrow Lookout</td>
</tr>
</tbody>
</table>]]></description>
<Point id="920">
<coordinates>-113.530741,47.16438,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="923">
<name>Dow Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/dow-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/dow-butte-lookout/">http://nhlr.org/lookouts/us/ca/dow-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 241, CA 8 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 15, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ronald Johnson and Diane Minutilli, Public Affairs Tech., Eagle Lake RD</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen National Forest Lassen County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 44.431' W 120° 49.614' (view using Google Maps) N 40° 44' 26" W 120° 49' 37" N 40.740525° W 120.826906°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,705 ft (2,044 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Eagle Lake Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="922">
<coordinates>-120.826906,40.740525,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="925">
<name>Drake Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/drake-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/drake-peak-lookout/">http://nhlr.org/lookouts/us/or/drake-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 487, OR 80 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Fremont National Forest Lake County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 18.001' W 120° 07.400' (view using Google Maps) N 42° 18' 00" W 120° 07' 24" N 42.300020° W 120.123330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,352 ft (2,546 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1948</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Lakeview Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="924">
<coordinates>-120.12333,42.30002,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="927">
<name>Dry Diggins Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/dry-diggins-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/dry-diggins-lookout/">http://nhlr.org/lookouts/us/id/dry-diggins-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 964, ID 102 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 23, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Rod Parks</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 22.292' W 116° 35.377' (view using Google Maps) N 45° 22' 18" W 116° 35' 23" N 45.371528° W 116.589611°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,828 ft (2,386 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1968</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Hells Canyon National Recreation Area, Twin Rivers Back Country Horsemen and Back Country Horsemen of North Central Idaho</td>
</tr>
</tbody>
</table>]]></description>
<Point id="926">
<coordinates>-116.589611,45.371528,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="929">
<name>Dry Lake Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/dry-lake-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/dry-lake-lookout/">http://nhlr.org/lookouts/us/az/dry-lake-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 633, AZ 57 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 1, 2005</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>San Carlos Apache Reservation Graham County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 21.572' W 109° 50.040' (view using Google Maps) N 33° 21' 34" W 109° 50' 02" N 33.359530° W 109.834000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,410 ft (2,259 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1984</td>
</tr>
<tr>
<td>Administered by</td>
<td>San Carlos Agency</td>
</tr>
<tr>
<td>Cooperators</td>
<td>San Carlos Agency</td>
</tr>
</tbody>
</table>]]></description>
<Point id="928">
<coordinates>-109.834,33.35953,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="931">
<name>Dry Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/dry-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/dry-mountain-lookout/">http://nhlr.org/lookouts/us/or/dry-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 426, OR 51 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 16, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Ochoco National Forest Crook County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 40.320' W 119° 33.756' (view using Google Maps) N 43° 40' 19" W 119° 33' 45" N 43.672000° W 119.562600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,241 ft (1,902 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Paulina Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="930">
<coordinates>-119.5626,43.672,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="933">
<name>Dry Park Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/dry-park-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/dry-park-lookout/">http://nhlr.org/lookouts/us/az/dry-park-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 198, AZ 6 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>David Lorenz, Arizona Registrar &amp; John Hanson, Archaeologist, Kaibab NF</td>
</tr>
<tr>
<td>Location</td>
<td>Kaibab National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 27.140' W 112° 14.272' (view using Google Maps) N 36° 27' 08" W 112° 14' 16" N 36.452340° W 112.237872°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,710 ft (2,655 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>North Kaibab Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="932">
<coordinates>-112.237872,36.45234,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="935">
<name>Dry Soda Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/dry-soda-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/dry-soda-lookout/">http://nhlr.org/lookouts/us/or/dry-soda-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 116, OR 16 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 8, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Johnson, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 12.490' W 118° 54.650' (view using Google Maps) N 44° 12' 29" W 118° 54' 39" N 44.208165° W 118.910830°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,580 ft (1,701 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Blue Mountain Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="934">
<coordinates>-118.91083,44.208165,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="937">
<name>Duck Creek Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/duck-creek-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/duck-creek-point-lookout/">http://nhlr.org/lookouts/us/id/duck-creek-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 886, ID 80 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 22, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Luke Channer</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon-Challis National Forest Lemhi County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 54.621' W 114° 29.844' (view using Google Maps) N 44° 54' 37" W 114° 29' 51" N 44.910350° W 114.497400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,130 ft (2,783 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Salmon/Cobalt Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="936">
<coordinates>-114.4974,44.91035,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="939">
<name>Duckett Top Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nc/duckett-top-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/duckett-top-lookout/">http://nhlr.org/lookouts/us/nc/duckett-top-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 256, NC 6 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>R. Fred Foster, North Carolina Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Madison County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 45.965' W 082° 50.420' (view using Google Maps) N 35° 45' 58" W 082° 50' 25" N 35.766090° W 082.840340°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,271 ft (1,302 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>North Carolina Division of Forest Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="938">
<coordinates>-82.84034,35.76609,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="941">
<name>Duckwall Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/duckwall-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/duckwall-mountain-lookout/">http://nhlr.org/lookouts/us/ca/duckwall-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1190, CA 121 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bill Luedeke</td>
</tr>
<tr>
<td>Location</td>
<td>Stanislaus National Forest Tuolumne County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 58.121' W 120° 07.189' (view using Google Maps) N 37° 58' 07" W 120° 07' 11" N 37.968690° W 120.119821°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,835 ft (1,779 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="940">
<coordinates>-120.119821,37.96869,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="943">
<name>Dumas Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/dumas-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/dumas-lookout-tower/">http://nhlr.org/lookouts/us/ms/dumas-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1684, MS 45 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 18, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Tippah County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 40.029' W 088° 51.542' (view using Google Maps) N 34° 40' 02" W 088° 51' 32" N 34.667142° W 088.859026°</td>
</tr>
<tr>
<td>Elevation</td>
<td>675 ft (206 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="942">
<coordinates>-88.859026,34.667142,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="945">
<name>Dunbar Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/dunbar-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/dunbar-lookout/">http://nhlr.org/lookouts/us/wi/dunbar-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1199, WI 11 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 9, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Marinette County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 39.907' W 088° 06.598' (view using Google Maps) N 45° 39' 54" W 088° 06' 36" N 45.665122° W 088.109967°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,305 ft (398 m)</td>
</tr>
<tr>
<td>Built</td>
<td>October 1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="944">
<coordinates>-88.109967,45.665122,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="947">
<name>Duncan Knob Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/duncan-knob-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/duncan-knob-lookout/">http://nhlr.org/lookouts/us/va/duncan-knob-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1165, VA 31 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 23, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kristin Reynolds</td>
</tr>
<tr>
<td>Location</td>
<td>Bath County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 09.869' W 079° 42.317' (view using Google Maps) N 38° 09' 52" W 079° 42' 19" N 38.164478° W 079.705283°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,844 ft (1,172 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1930s</td>
</tr>
<tr>
<td>Administered by</td>
<td>American Tower Corporation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="946">
<coordinates>-79.705283,38.164478,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="949">
<name>Duncan Peak Lookout (Little Bald Mountain)</name>
<atom:link>http://nhlr.org/lookouts/us/ca/duncan-peak-lookout-little-bald-mountain/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/duncan-peak-lookout-little-bald-mountain/">http://nhlr.org/lookouts/us/ca/duncan-peak-lookout-little-bald-mountain/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 590, CA 61 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 21, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kathy Allison</td>
</tr>
<tr>
<td>Location</td>
<td>Tahoe National Forest Placer County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 09.270' W 120° 30.730' (view using Google Maps) N 39° 09' 16" W 120° 30' 44" N 39.154500° W 120.512170°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,182 ft (2,189 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1943</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Foresthill Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="948">
<coordinates>-120.51217,39.1545,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="951">
<name>Dunlap Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/dunlap-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/dunlap-lookout-tower/">http://nhlr.org/lookouts/us/tn/dunlap-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1291, TN 32 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 19, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Victoria Oliver</td>
</tr>
<tr>
<td>Location</td>
<td>Sequatchie County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 14.202' W 085° 24.522' (view using Google Maps) N 35° 14' 12" W 085° 24' 31" N 35.236700° W 085.408700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,372 ft (723 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="950">
<coordinates>-85.4087,35.2367,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="953">
<name>Dunn Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/dunn-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/dunn-peak-lookout/">http://nhlr.org/lookouts/us/id/dunn-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1405, ID 112 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 24, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tom Taylor</td>
</tr>
<tr>
<td>Location</td>
<td>St. Joe National Forest Shoshone County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 17.681' W 115° 53.979' (view using Google Maps) N 47° 17' 41" W 115° 53' 59" N 47.294690° W 115.899647°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,607 ft (1,709 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1958</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="952">
<coordinates>-115.899647,47.29469,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="955">
<name>Dutchman Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/dutchman-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/dutchman-butte-lookout/">http://nhlr.org/lookouts/us/or/dutchman-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 333, OR 35 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 2000</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Douglas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 51.980' W 123° 39.600' (view using Google Maps) N 42° 51' 59" W 123° 39' 36" N 42.866340° W 123.660005°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,810 ft (1,161 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1970</td>
</tr>
<tr>
<td>Administered by</td>
<td>Douglas Forest Protective Association</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Douglas Forest Protective Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="954">
<coordinates>-123.660005,42.86634,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="957">
<name>Dutchman Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/dutchman-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/dutchman-peak-lookout/">http://nhlr.org/lookouts/us/or/dutchman-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 19, OR 5 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 2, 1991</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Barbara Mumblo, Cultural Resource Coordinator, USFS, Rogue River National Forest, Applegate Ranger District</td>
</tr>
<tr>
<td>Location</td>
<td>Rogue River National Forest Jackson County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 02.607' W 122° 53.487' (view using Google Maps) N 42° 02' 36" W 122° 53' 29" N 42.043450° W 122.891448°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,364 ft (2,245 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Applegate Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="956">
<coordinates>-122.891448,42.04345,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="959">
<name>Duzel Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/duzel-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/duzel-rock-lookout/">http://nhlr.org/lookouts/us/ca/duzel-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1152, CA 113 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Scott Michael Gosselin</td>
</tr>
<tr>
<td>Location</td>
<td>Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 31.616' W 122° 43.366' (view using Google Maps) N 41° 31' 37" W 122° 43' 22" N 41.526936° W 122.722775°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,041 ft (1,841 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry &amp; Fire Protection</td>
</tr>
</tbody>
</table>]]></description>
<Point id="958">
<coordinates>-122.722775,41.526936,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="961">
<name>Dyer Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/dyer-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/dyer-mountain-lookout/">http://nhlr.org/lookouts/us/ca/dyer-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1376, CA 199 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 31, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen National Forest Lassen County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 14.344' W 121° 01.964' (view using Google Maps) N 40° 14' 21" W 121° 01' 58" N 40.239063° W 121.032736°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,474 ft (2,278 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Lassen National Forest</td>
</tr>
<tr>
<td>Cooperators</td>
<td>California Department of Forestry and Fire Protection - Lassen-Modoc Unit (Cal Fire LMU)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="960">
<coordinates>-121.032736,40.239063,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="963">
<name>Dyersburg Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/dyersburg-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/dyersburg-lookout-tower/">http://nhlr.org/lookouts/us/tn/dyersburg-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1713, TN 46 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 1, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Dyer County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 03.895' W 089° 29.806' (view using Google Maps) N 36° 03' 54" W 089° 29' 48" N 36.064910° W 089.496770°</td>
</tr>
<tr>
<td>Elevation</td>
<td>497 ft (151 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="962">
<coordinates>-89.49677,36.06491,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="965">
<name>Dyracuse (Dorro Couche) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/dyracuse-dorro-couche-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/dyracuse-dorro-couche-lookout/">http://nhlr.org/lookouts/us/wi/dyracuse-dorro-couche-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1230, WI 34 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 16, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Dyracuse Off-Road Park Adams County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 10.383' W 089° 47.041' (view using Google Maps) N 44° 10' 23" W 089° 47' 02" N 44.173053° W 089.784022°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,242 ft (379 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="964">
<coordinates>-89.784022,44.173053,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="967">
<name>Eagle Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/eagle-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/eagle-butte-lookout/">http://nhlr.org/lookouts/us/or/eagle-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 488, OR 81 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Warm Springs Indian Reservation Wasco County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 50.416' W 121° 14.025' (view using Google Maps) N 44° 50' 25" W 121° 14' 02" N 44.840270° W 121.233750°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,168 ft (966 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>Confederated Tribes of Warm Springs</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Confederated Tribes of Warm Springs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="966">
<coordinates>-121.23375,44.84027,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="969">
<name>Eagle Field Tower</name>
<atom:link>http://nhlr.org/lookouts/us/pa/eagle-field-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/eagle-field-tower/">http://nhlr.org/lookouts/us/pa/eagle-field-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 72, PA 2 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 30, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Karl H. Striedieck, Owner</td>
</tr>
<tr>
<td>Location</td>
<td>Centre County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 49.630' W 077° 59.260' (view using Google Maps) N 40° 49' 38" W 077° 59' 16" N 40.827170° W 077.987670°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,773 ft (540 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Karl H. Striedieck, Owner</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Karl H. Striedieck</td>
</tr>
</tbody>
</table>]]></description>
<Point id="968">
<coordinates>-77.98767,40.82717,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="971">
<name>Eagle Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/eagle-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/eagle-peak-lookout/">http://nhlr.org/lookouts/us/ca/eagle-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1360, CA 183 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 28, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Tehama County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 55.628' W 122° 38.514' (view using Google Maps) N 39° 55' 38" W 122° 38' 31" N 39.927130° W 122.641896°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,715 ft (1,132 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1963</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection - Tehama-Glenn Unit (Cal Fire TGU)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="970">
<coordinates>-122.641896,39.92713,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="973">
<name>Eagle Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/eagle-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/eagle-peak-lookout/">http://nhlr.org/lookouts/us/nm/eagle-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1586, NM 44 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Gutzman</td>
</tr>
<tr>
<td>Location</td>
<td>Gila National Forest Catron County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 40.612' W 108° 34.617' (view using Google Maps) N 33° 40' 37" W 108° 34' 37" N 33.676873° W 108.576954°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,801 ft (2,987 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1955</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="972">
<coordinates>-108.576954,33.676873,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="975">
<name>Eagle Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/eagle-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/eagle-point-lookout/">http://nhlr.org/lookouts/us/id/eagle-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1467, ID 159 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 5, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce-Clearwater National Forests Clearwater County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 48.042' W 115° 32.219' (view using Google Maps) N 46° 48' 02" W 115° 32' 13" N 46.800694° W 115.536986°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,548 ft (1,691 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1973</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Nez Perce-Clearwater National Forests</td>
</tr>
</tbody>
</table>]]></description>
<Point id="974">
<coordinates>-115.536986,46.800694,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="977">
<name>Early County Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/early-county-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/early-county-fire-tower/">http://nhlr.org/lookouts/us/ga/early-county-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 661, GA 5 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 2006</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Blakely Early County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 31° 21.948' W 084° 56.492' (view using Google Maps) N 31° 21' 57" W 084° 56' 30" N 31.365800° W 084.941530°</td>
</tr>
<tr>
<td>Elevation</td>
<td>283 ft (86 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1952</td>
</tr>
<tr>
<td>Administered by</td>
<td>Georgia Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Georgia Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="976">
<coordinates>-84.94153,31.3658,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="979">
<name>East Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/east-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/east-butte-lookout/">http://nhlr.org/lookouts/us/or/east-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 464, OR 61 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Deschutes National Forest Deschutes County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 40.013' W 120° 59.756' (view using Google Maps) N 43° 40' 01" W 120° 59' 45" N 43.666880° W 120.995930°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,371 ft (1,942 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1995</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bend-Fort Rock Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="978">
<coordinates>-120.99593,43.66688,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="981">
<name>East Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/east-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/east-fire-tower/">http://nhlr.org/lookouts/us/fl/east-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 978, FL 3 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 2013</td>
</tr>
<tr>
<td>Location</td>
<td>Baker County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 30° 22.964' W 082° 19.790' (view using Google Maps) N 30° 22' 58" W 082° 19' 47" N 30.382731° W 082.329841°</td>
</tr>
<tr>
<td>Elevation</td>
<td>125 ft (38 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1931</td>
</tr>
<tr>
<td>Administered by</td>
<td>Osceola National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="980">
<coordinates>-82.329841,30.382731,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="983">
<name>East Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/east-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/east-mountain-lookout/">http://nhlr.org/lookouts/us/id/east-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 231, ID 17 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 15, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, Idaho Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Valley County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 26.533' W 115° 52.174' (view using Google Maps) N 44° 26' 32" W 115° 52' 10" N 44.442220° W 115.869560°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,723 ft (2,354 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1929</td>
</tr>
<tr>
<td>Removed</td>
<td>2002 - Wildfire</td>
</tr>
<tr>
<td>Former Fire Lookout Sites Register</td>
<td>2056</td>
</tr>
<tr>
<td>Administered by</td>
<td>Southern Idaho Timber Protective Association, Inc.</td>
</tr>
<tr>
<td>Cooperators</td>
<td>US Forest Service - Boise National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="982">
<coordinates>-115.86956,44.44222,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="985">
<name>East Pocket Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/east-pocket-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/east-pocket-lookout/">http://nhlr.org/lookouts/us/az/east-pocket-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 371, AZ 16 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 1, 2001</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, Director, AZ/NM FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Coconino National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 58.535' W 111° 46.110' (view using Google Maps) N 34° 58' 32" W 111° 46' 07" N 34.975580° W 111.768500°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,196 ft (2,193 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Peaks Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="984">
<coordinates>-111.7685,34.97558,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="987">
<name>Eastover Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/eastover-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/eastover-tower/">http://nhlr.org/lookouts/us/sc/eastover-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 966, SC 19 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 24, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch, Jr., FFLA Area Rep</td>
</tr>
<tr>
<td>Location</td>
<td>Richland County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 56.983' W 080° 42.100' (view using Google Maps) N 33° 56' 59" W 080° 42' 06" N 33.949722° W 080.701667°</td>
</tr>
<tr>
<td>Elevation</td>
<td>246 ft (75 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ray Littlejohn, Owner</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ray Littlejohn, Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="986">
<coordinates>-80.701667,33.949722,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="989">
<name>Eddy Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/eddy-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/eddy-fire-tower/">http://nhlr.org/lookouts/us/fl/eddy-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 987, FL 4 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 8, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Christopher Lydick</td>
</tr>
<tr>
<td>Location</td>
<td>John Bethea State Forest Baker County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 30° 32.583' W 082° 20.583' (view using Google Maps) N 30° 32' 35" W 082° 20' 35" N 30.543056° W 082.343056°</td>
</tr>
<tr>
<td>Elevation</td>
<td>133 ft (41 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Florida Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="988">
<coordinates>-82.343056,30.543056,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="991">
<name>Eddy Gulch Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/eddy-gulch-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/eddy-gulch-lookout/">http://nhlr.org/lookouts/us/ca/eddy-gulch-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 104, CA 4 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 6, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>James Rock and Candice Cook (USFS)</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 14.729' W 123° 06.146' (view using Google Maps) N 41° 14' 44" W 123° 06' 09" N 41.245485° W 123.102439°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,483 ft (1,976 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1958</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Salmon River Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="990">
<coordinates>-123.102439,41.245485,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="993">
<name>Eddy Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/eddy-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/eddy-mountain-lookout/">http://nhlr.org/lookouts/us/mt/eddy-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 786, MT 47 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Lolo National Forest Sanders County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 32.516' W 115° 11.284' (view using Google Maps) N 47° 32' 31" W 115° 11' 17" N 47.541940° W 115.188060°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,957 ft (2,120 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1982</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Plains/Thompson Falls Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="992">
<coordinates>-115.18806,47.54194,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="995">
<name>Edisto/Butterfield Tower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/edistobutterfield-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/edistobutterfield-tower/">http://nhlr.org/lookouts/us/sc/edistobutterfield-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 941, SC 10 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 19, 2012</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael T. Finch Jr., MD</td>
</tr>
<tr>
<td>Location</td>
<td>Butterfield Plantation Allendale County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 58.175' W 081° 26.005' (view using Google Maps) N 32° 58' 11" W 081° 26' 00" N 32.969587° W 081.433416°</td>
</tr>
<tr>
<td>Elevation</td>
<td>160 ft (49 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
</tbody>
</table>]]></description>
<Point id="994">
<coordinates>-81.433416,32.969587,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="997">
<name>Eightmile Mesa Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/co/eightmile-mesa-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/co/eightmile-mesa-lookout/">http://nhlr.org/lookouts/us/co/eightmile-mesa-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 912, CO 17 (view other lookouts in United States, Colorado)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 17, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kent Argow</td>
</tr>
<tr>
<td>Location</td>
<td>San Juan National Forest Archuleta County, Colorado</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 10.284' W 106° 59.820' (view using Google Maps) N 37° 10' 17" W 106° 59' 49" N 37.171400° W 106.997000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,165 ft (2,489 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1963</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pagosa Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="996">
<coordinates>-106.997,37.1714,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="999">
<name>El Caso Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/el-caso-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/el-caso-lookout/">http://nhlr.org/lookouts/us/nm/el-caso-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 649, NM 14 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 2, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Gila National Forest Catron County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 06.179' W 108° 29.652' (view using Google Maps) N 34° 06' 11" W 108° 29' 39" N 34.102990° W 108.494200°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,847 ft (2,697 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Quemado Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="998">
<coordinates>-108.4942,34.10299,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1001">
<name>Elba Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mn/elba-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/elba-fire-tower/">http://nhlr.org/lookouts/us/mn/elba-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 7, MN 1 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 30, 1990</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Harold Becker, Manager, Minnesota Division of Parks &amp; Recreation, Whitewater State Park</td>
</tr>
<tr>
<td>Location</td>
<td>Whitewater State Park Winona County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 05.316' W 092° 00.666' (view using Google Maps) N 44° 05' 19" W 092° 00' 40" N 44.088600° W 092.011100°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,029 ft (314 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Division of Parks &amp; Recreation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Elba Booster Club, Whitewater Wildlife Management Area, Crystal Springs Trout Hatchery, Lewiston Forestry Station</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1000">
<coordinates>-92.0111,44.0886,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1003">
<name>Elden Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/elden-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/elden-lookout/">http://nhlr.org/lookouts/us/az/elden-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 372, AZ 17 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 1, 2001</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, Director, AZ/NM FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Coconino National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 14.460' W 111° 35.808' (view using Google Maps) N 35° 14' 28" W 111° 35' 48" N 35.241000° W 111.596800°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,224 ft (2,811 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Peaks Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1002">
<coordinates>-111.5968,35.241,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1005">
<name>Elder Hill Forestry Tower</name>
<atom:link>http://nhlr.org/lookouts/us/md/elder-hill-forestry-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/md/elder-hill-forestry-tower/">http://nhlr.org/lookouts/us/md/elder-hill-forestry-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1282, MD 9 (view other lookouts in United States, Maryland)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2018</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Garrett County, Maryland</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 39° 36.314' W 079° 23.734' (view using Google Maps) N 39° 36' 19" W 079° 23' 44" N 39.605233° W 079.395573°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,818 ft (859 m)</td>
</tr>
<tr>
<td>Built</td>
<td>late 1930s</td>
</tr>
<tr>
<td>Administered by</td>
<td>Maryland Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1004">
<coordinates>-79.395573,39.605233,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1007">
<name>Elephant Lake Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mn/elephant-lake-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/elephant-lake-lookout/">http://nhlr.org/lookouts/us/mn/elephant-lake-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1481, MN 16 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jacob Hufnagle</td>
</tr>
<tr>
<td>Location</td>
<td>St. Louis County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 10.798' W 092° 45.033' (view using Google Maps) N 48° 10' 48" W 092° 45' 02" N 48.179962° W 092.750557°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,473 ft (449 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1006">
<coordinates>-92.750557,48.179962,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1009">
<name>Elk Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/elk-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/elk-butte-lookout/">http://nhlr.org/lookouts/us/id/elk-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 216, ID 16 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 1, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, Idaho Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Clearwater County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 50.432' W 116° 06.984' (view using Google Maps) N 46° 50' 26" W 116° 06' 59" N 46.840529° W 116.116397°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,725 ft (1,745 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1948</td>
</tr>
<tr>
<td>Administered by</td>
<td>Clearwater-Potlatch Timber Protective Association</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Clearwater-Potlatch Timber Protective Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1008">
<coordinates>-116.116397,46.840529,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1011">
<name>Elk Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/elk-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/elk-mountain-lookout/">http://nhlr.org/lookouts/us/mt/elk-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1504, MT 82 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 9, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai NF Lincoln County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 27.330' W 114° 54.895' (view using Google Maps) N 48° 27' 20" W 114° 54' 54" N 48.455500° W 114.914912°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,588 ft (2,008 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1010">
<coordinates>-114.914912,48.4555,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1013">
<name>Elk Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/elk-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/elk-mountain-lookout/">http://nhlr.org/lookouts/us/or/elk-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1614, OR 138 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Wallowa-Whitman National Forest Union County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 35.902' W 117° 12.320' (view using Google Maps) N 45° 35' 54" W 117° 12' 19" N 45.598359° W 117.205336°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,127 ft (1,563 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Wallowa-Whitman National Forest</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Private Land Owner</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1012">
<coordinates>-117.205336,45.598359,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1015">
<name>Elk Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/sd/elk-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sd/elk-mountain-lookout/">http://nhlr.org/lookouts/us/sd/elk-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 30, SD 3 (view other lookouts in United States, South Dakota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 15, 1991</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Burns L. Davison, District Ranger, USFS, Elk Mountain Ranger District</td>
</tr>
<tr>
<td>Location</td>
<td>Black Hills National Forest Custer County, South Dakota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 43.451' W 104° 02.463' (view using Google Maps) N 43° 43' 27" W 104° 02' 28" N 43.724180° W 104.041045°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,631 ft (1,716 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Elk Mountain Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1014">
<coordinates>-104.041045,43.72418,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1017">
<name>Elk Summit Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/elk-summit-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/elk-summit-lookout/">http://nhlr.org/lookouts/us/id/elk-summit-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 233, ID 19 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 25, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, Idaho Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 52.746' W 115° 32.396' (view using Google Maps) N 45° 52' 45" W 115° 32' 24" N 45.879100° W 115.539927°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,365 ft (1,940 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Elk City Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1016">
<coordinates>-115.539927,45.8791,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1019">
<name>Ella Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nv/ella-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nv/ella-mountain-lookout/">http://nhlr.org/lookouts/us/nv/ella-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 519, NV 3 (view other lookouts in United States, Nevada)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 29, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Ely District - Bureau of Land Management Lincoln County, Nevada</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 27.548' W 114° 28.083' (view using Google Maps) N 37° 27' 33" W 114° 28' 05" N 37.459130° W 114.468050°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,431 ft (2,265 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1962</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bureau of Land Management, Ely District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1018">
<coordinates>-114.46805,37.45913,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1021">
<name>Elliot Knob Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/va/elliot-knob-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/va/elliot-knob-lookout/">http://nhlr.org/lookouts/us/va/elliot-knob-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 87, VA 2 (view other lookouts in United States, Virginia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 18, 1994</td>
</tr>
<tr>
<td>Nominated by</td>
<td>David Rhodes, Deerfield District Ranger</td>
</tr>
<tr>
<td>Location</td>
<td>George Washington National Forest Augusta County, Virginia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 09.984' W 079° 18.836' (view using Google Maps) N 38° 09' 59" W 079° 18' 50" N 38.166395° W 079.313935°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,421 ft (1,348 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Deerfield Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1020">
<coordinates>-79.313935,38.166395,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1023">
<name>Elmore Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/vt/elmore-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/vt/elmore-mountain-fire-tower/">http://nhlr.org/lookouts/us/vt/elmore-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 140, VT 3 (view other lookouts in United States, Vermont)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 24, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Haughwout, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Elmore Mountain State Park Lemoille County, Vermont</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 31.722' W 072° 32.671' (view using Google Maps) N 44° 31' 43" W 072° 32' 40" N 44.528700° W 072.544517°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,287 ft (697 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Vermont Dept. of Forests, Parks and Recreation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Vermont Dept. of Forests, Parks and Recreation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1022">
<coordinates>-72.544517,44.5287,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1025">
<name>Encino Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/encino-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/encino-lookout/">http://nhlr.org/lookouts/us/nm/encino-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1111, NM 37 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 30, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Gutzman</td>
</tr>
<tr>
<td>Location</td>
<td>Lincoln National Forest Rio Arriba County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 07.349' W 106° 33.224' (view using Google Maps) N 36° 07' 21" W 106° 33' 13" N 36.122489° W 106.553729°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,867 ft (3,007 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1950</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Coyote Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1024">
<coordinates>-106.553729,36.122489,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1027">
<name>Energy Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/energy-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/energy-lookout-tower/">http://nhlr.org/lookouts/us/ms/energy-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1626, MS 16 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 4, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Clarke County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 08.218' W 088° 33.406' (view using Google Maps) N 32° 08' 13" W 088° 33' 24" N 32.136966° W 088.556762°</td>
</tr>
<tr>
<td>Elevation</td>
<td>526 ft (160 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1026">
<coordinates>-88.556762,32.136966,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1029">
<name>English Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/english-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/english-mountain-fire-tower/">http://nhlr.org/lookouts/us/tn/english-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 993, TN 14 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 14, 2014</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Stafford</td>
</tr>
<tr>
<td>Location</td>
<td>Cocke County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 54.050' W 083° 17.867' (view using Google Maps) N 35° 54' 03" W 083° 17' 52" N 35.900833° W 083.297778°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,617 ft (1,102 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1028">
<coordinates>-83.297778,35.900833,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1031">
<name>English Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/english-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/english-peak-lookout/">http://nhlr.org/lookouts/us/ca/english-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 94, CA 3 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 1, 1994</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Forest Supervisor</td>
</tr>
<tr>
<td>Location</td>
<td>Klamath National Forest Siskiyou County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 24.062' W 123° 12.868' (view using Google Maps) N 41° 24' 04" W 123° 12' 52" N 41.401035° W 123.214459°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,228 ft (2,203 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1955</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Salmon River Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1030">
<coordinates>-123.214459,41.401035,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1033">
<name>Escoheag Hill Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ri/escoheag-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ri/escoheag-hill-fire-tower/">http://nhlr.org/lookouts/us/ri/escoheag-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1202, RI 8 (view other lookouts in United States, Rhode Island)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 9, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jack Kelley</td>
</tr>
<tr>
<td>Location</td>
<td>Kent County, Rhode Island</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 36.430' W 071° 46.388' (view using Google Maps) N 41° 36' 26" W 071° 46' 23" N 41.607169° W 071.773129°</td>
</tr>
<tr>
<td>Elevation</td>
<td>559 ft (170 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1938</td>
</tr>
<tr>
<td>Administered by</td>
<td>Rhode Island Department of Environmental Management</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1032">
<coordinates>-71.773129,41.607169,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1035">
<name>Escudilla Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/escudilla-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/escudilla-lookout/">http://nhlr.org/lookouts/us/az/escudilla-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 826, AZ 73 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 2, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Apache-Sitgreaves National Forests Apache County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 57.390' W 109° 07.491' (view using Google Maps) N 33° 57' 23" W 109° 07' 29" N 33.956500° W 109.124850°</td>
</tr>
<tr>
<td>Elevation</td>
<td>10,876 ft (3,315 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alpine Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1034">
<coordinates>-109.12485,33.9565,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1037">
<name>Estelle Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/estelle-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/estelle-mountain-lookout/">http://nhlr.org/lookouts/us/ca/estelle-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 752, CA 83 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 16, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Hemet-Ryan Airport Riverside County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 43.819' W 117° 01.316' (view using Google Maps) N 33° 43' 49" W 117° 01' 19" N 33.730310° W 117.021930°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,512 ft (461 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1935</td>
</tr>
<tr>
<td>Administered by</td>
<td>County of Riverside, California</td>
</tr>
<tr>
<td>Cooperators</td>
<td>County of Riverside, California</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1036">
<coordinates>-117.02193,33.73031,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1039">
<name>Evergreen Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/evergreen-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/evergreen-lookout-tower/">http://nhlr.org/lookouts/us/al/evergreen-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 812, AL 13 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Evergreen Autauga County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 33.492' W 086° 45.558' (view using Google Maps) N 32° 33' 30" W 086° 45' 33" N 32.558206° W 086.759301°</td>
</tr>
<tr>
<td>Elevation</td>
<td>604 ft (184 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1949</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1038">
<coordinates>-86.759301,32.558206,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1041">
<name>Evergreen Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/evergreen-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/evergreen-mountain-lookout/">http://nhlr.org/lookouts/us/wa/evergreen-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 206, WA 25 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 15, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Mt. Baker-Snoqualmie National Forest Snohomish County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 50.186' W 121° 15.824' (view using Google Maps) N 47° 50' 11" W 121° 15' 49" N 47.836430° W 121.263738°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,483 ft (1,671 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Skyhomish Ranger District; Seattle Explorer Scouts; Seattle Mountaineers; Quest School</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1040">
<coordinates>-121.263738,47.83643,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1043">
<name>Eyeful Tower Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/eyeful-tower-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/eyeful-tower-lookout/">http://nhlr.org/lookouts/us/id/eyeful-tower-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 163, ID 13 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 24, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, Idaho Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 41.041' W 115° 57.327' (view using Google Maps) N 45° 41' 02" W 115° 57' 20" N 45.684020° W 115.955446°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,273 ft (2,217 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Bruce and Nancy Dreher</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bruce &amp; Nancy Dreher</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1042">
<coordinates>-115.955446,45.68402,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1045">
<name>Fabius Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/fabius-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/fabius-lookout-tower/">http://nhlr.org/lookouts/us/al/fabius-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 818, AL 19 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 30, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Thomas Kaufmann</td>
</tr>
<tr>
<td>Location</td>
<td>Jackson County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 49.931' W 085° 45.391' (view using Google Maps) N 34° 49' 56" W 085° 45' 23" N 34.832189° W 085.756517°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,588 ft (484 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1955</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1044">
<coordinates>-85.756517,34.832189,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1047">
<name>Fairview Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/fairview-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/fairview-lookout-tower/">http://nhlr.org/lookouts/us/ms/fairview-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1683, MS 43 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 18, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Itawamba County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 21.620' W 088° 18.997' (view using Google Maps) N 34° 21' 37" W 088° 18' 60" N 34.360333° W 088.316618°</td>
</tr>
<tr>
<td>Elevation</td>
<td>550 ft (168 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1046">
<coordinates>-88.316618,34.360333,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1049">
<name>Fairview Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/co/fairview-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/co/fairview-peak-lookout/">http://nhlr.org/lookouts/us/co/fairview-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 711, CO 8 (view other lookouts in United States, Colorado)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 7, 2007</td>
</tr>
<tr>
<td>Location</td>
<td>Gunnison National Forest Gunnison County, Colorado</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 41.000' W 106° 32.202' (view using Google Maps) N 38° 40' 60" W 106° 32' 12" N 38.683330° W 106.536700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>13,214 ft (4,028 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1911</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Gunnison Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1048">
<coordinates>-106.5367,38.68333,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1051">
<name>Fairview Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/fairview-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/fairview-peak-lookout/">http://nhlr.org/lookouts/us/or/fairview-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 472, OR 69 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 1, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Danielle Sullivan</td>
</tr>
<tr>
<td>Location</td>
<td>Umpqua National Forest Lane County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 35.141' W 122° 39.189' (view using Google Maps) N 43° 35' 08" W 122° 39' 11" N 43.585681° W 122.653153°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,857 ft (1,785 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1972</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Cottage Grove Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1050">
<coordinates>-122.653153,43.585681,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1053">
<name>Fairwood Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/fairwood-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/fairwood-fire-tower/">http://nhlr.org/lookouts/us/ga/fairwood-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 226, GA 1 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 9, 1997</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Don Shedd</td>
</tr>
<tr>
<td>Location</td>
<td>Walton County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 44.167' W 083° 39.444' (view using Google Maps) N 33° 44' 10" W 083° 39' 27" N 33.736124° W 083.657407°</td>
</tr>
<tr>
<td>Elevation</td>
<td>717 ft (219 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Don and Edith Shedd</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Don and Edith Shedd</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1052">
<coordinates>-83.657407,33.736124,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1055">
<name>Fall Creek Falls Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/fall-creek-falls-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/fall-creek-falls-lookout-tower/">http://nhlr.org/lookouts/us/tn/fall-creek-falls-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 50, TN 1 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 27, 1993</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Joe A. Clayton, III, Assistant State Forester, Tennessee Division of Forestry</td>
</tr>
<tr>
<td>Location</td>
<td>Falls Creek Falls State Park Bledsoe County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 39.435' W 085° 20.874' (view using Google Maps) N 35° 39' 26" W 085° 20' 52" N 35.657250° W 085.347900°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,713 ft (522 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Department of Agriculture</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1054">
<coordinates>-85.3479,35.65725,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1057">
<name>Fall Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/fall-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/fall-mountain-lookout/">http://nhlr.org/lookouts/us/or/fall-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 115, OR 15 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 8, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary McAtee and Ron Johnson, Oregon Chapter of the Forest Fire Lookout Association</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 17.612' W 119° 02.559' (view using Google Maps) N 44° 17' 37" W 119° 02' 34" N 44.293540° W 119.042643°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,902 ft (1,799 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Blue Mountain Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1056">
<coordinates>-119.042643,44.29354,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1059">
<name>Fall River Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/fall-river-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/fall-river-fire-tower/">http://nhlr.org/lookouts/us/ma/fall-river-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 588, MA 15 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 30, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>City of Fall River Bristol County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 43.283' W 071° 03.600' (view using Google Maps) N 41° 43' 17" W 071° 03' 36" N 41.721390° W 071.060000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>356 ft (109 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1966</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 3</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1058">
<coordinates>-71.06,41.72139,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1061">
<name>Falmouth Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/falmouth-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/falmouth-fire-tower/">http://nhlr.org/lookouts/us/ma/falmouth-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 608, MA 19 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Falmouth Barnstable County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 35.882' W 070° 37.059' (view using Google Maps) N 41° 35' 53" W 070° 37' 04" N 41.598033° W 070.617650°</td>
</tr>
<tr>
<td>Elevation</td>
<td>112 ft (34 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1947</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 1</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1060">
<coordinates>-70.61765,41.598033,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1063">
<name>Fargo Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/fargo-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/fargo-fire-tower/">http://nhlr.org/lookouts/us/ga/fargo-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 320, GA 3 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Unknown</td>
</tr>
<tr>
<td>Location</td>
<td>Clinch County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 30° 41.166' W 082° 33.648' (view using Google Maps) N 30° 41' 10" W 082° 33' 39" N 30.686100° W 082.560800°</td>
</tr>
<tr>
<td>Elevation</td>
<td>113 ft (34 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Georgia Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Georgia Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1062">
<coordinates>-82.5608,30.6861,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1065">
<name>Fatama Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/al/fatama-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/fatama-lookout-tower/">http://nhlr.org/lookouts/us/al/fatama-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1490, AL 75 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jackson Knight</td>
</tr>
<tr>
<td>Location</td>
<td>Wilcox County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 31° 53.549' W 087° 14.232' (view using Google Maps) N 31° 53' 33" W 087° 14' 14" N 31.892490° W 087.237200°</td>
</tr>
<tr>
<td>Elevation</td>
<td>548 ft (167 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1064">
<coordinates>-87.2372,31.89249,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1067">
<name>Federal Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nh/federal-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nh/federal-hill-lookout/">http://nhlr.org/lookouts/us/nh/federal-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 407, NH 8 (view other lookouts in United States, New Hampshire)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 12, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Chris Haartz, NH Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Hillsborough County, New Hampshire</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 48.803' W 071° 39.355' (view using Google Maps) N 42° 48' 48" W 071° 39' 21" N 42.813390° W 071.655920°</td>
</tr>
<tr>
<td>Elevation</td>
<td>352 ft (107 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NH Dept. of Resources and Economic Development</td>
</tr>
<tr>
<td>Cooperators</td>
<td>NH Div. of Forests and Lands</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1066">
<coordinates>-71.65592,42.81339,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1069">
<name>Feldtmann Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mi/feldtmann-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mi/feldtmann-lookout/">http://nhlr.org/lookouts/us/mi/feldtmann-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1158, MI 5 (view other lookouts in United States, Michigan)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 27, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brian M. Powell</td>
</tr>
<tr>
<td>Location</td>
<td>Isle Royale National Park Keweenaw County, Michigan</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 51.644' W 089° 05.589' (view using Google Maps) N 47° 51' 39" W 089° 05' 35" N 47.860727° W 089.093145°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,144 ft (349 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1068">
<coordinates>-89.093145,47.860727,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1071">
<name>Fence Meadow Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/fence-meadow-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/fence-meadow-lookout/">http://nhlr.org/lookouts/us/ca/fence-meadow-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 302, CA 30 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 21, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Sierra National Forest Fresno County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 57.682' W 119° 10.518' (view using Google Maps) N 36° 57' 41" W 119° 10' 31" N 36.961370° W 119.175293°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,231 ft (1,594 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Kings River Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1070">
<coordinates>-119.175293,36.96137,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1073">
<name>Ferncliff Forest Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/ferncliff-forest-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/ferncliff-forest-fire-tower/">http://nhlr.org/lookouts/us/ny/ferncliff-forest-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1117, NY 37 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 16, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Homer Staley</td>
</tr>
<tr>
<td>Location</td>
<td>Ferncliff Forest Dutchess County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 57.393' W 073° 55.618' (view using Google Maps) N 41° 57' 24" W 073° 55' 37" N 41.956555° W 073.926967°</td>
</tr>
<tr>
<td>Elevation</td>
<td>348 ft (106 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>Ferncliff Forest, Inc.</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1072">
<coordinates>-73.926967,41.956555,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1075">
<name>Ferry Basin Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/ferry-basin-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/ferry-basin-lookout/">http://nhlr.org/lookouts/us/mt/ferry-basin-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1545, MT 108 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 12, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Confederated Salish and Kootenai Tribe Sanders County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 22.433' W 114° 24.289' (view using Google Maps) N 47° 22' 26" W 114° 24' 17" N 47.373890° W 114.404820°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,641 ft (1,719 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1970</td>
</tr>
<tr>
<td>Administered by</td>
<td>Confederated Salish and Kootenai Tribe</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1074">
<coordinates>-114.40482,47.37389,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1077">
<name>Fifield Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/fifield-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/fifield-lookout/">http://nhlr.org/lookouts/us/wi/fifield-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 712, WI 4 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 2, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Bruhy, Archaeologist</td>
</tr>
<tr>
<td>Location</td>
<td>Chequamegon-Nicolet National Forest Price County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 53.215' W 090° 19.460' (view using Google Maps) N 45° 53' 13" W 090° 19' 28" N 45.886920° W 090.324330°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,587 ft (484 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Chequamegon-Nicolet National Forest and Wisconsin Humanities Council</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1076">
<coordinates>-90.32433,45.88692,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1079">
<name>Figueroa Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/figueroa-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/figueroa-mountain-lookout/">http://nhlr.org/lookouts/us/ca/figueroa-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 881, CA 91 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 19, 2010</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Los Padres National Forest Santa Barbara County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 44.621' W 119° 59.083' (view using Google Maps) N 34° 44' 37" W 119° 59' 05" N 34.743680° W 119.984720°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,480 ft (1,366 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1965</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Santa Lucia Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1078">
<coordinates>-119.98472,34.74368,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1081">
<name>Fire Lookout Museum Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/fire-lookout-museum-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/fire-lookout-museum-lookout/">http://nhlr.org/lookouts/us/wa/fire-lookout-museum-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 328, WA 34 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 20, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Spokane County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 44.698' W 117° 24.767' (view using Google Maps) N 47° 44' 42" W 117° 24' 46" N 47.744969° W 117.412790°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,945 ft (593 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Fire Lookout Museum Association</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Fire Lookout Museum Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1080">
<coordinates>-117.41279,47.744969,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1083">
<name>Fire Tower #9</name>
<atom:link>http://nhlr.org/lookouts/us/pa/fire-tower-9/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/fire-tower-9/">http://nhlr.org/lookouts/us/pa/fire-tower-9/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1172, PA 19 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 23, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dale Luthringer</td>
</tr>
<tr>
<td>Location</td>
<td>Cook Forest State Park Clarion County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 19.250' W 079° 12.590' (view using Google Maps) N 41° 19' 15" W 079° 12' 35" N 41.320834° W 079.209833°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,582 ft (482 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1928</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Department of Conservation and Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1082">
<coordinates>-79.209833,41.320834,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1085">
<name>Firefighter Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/firefighter-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/firefighter-lookout/">http://nhlr.org/lookouts/us/mt/firefighter-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 926, MT 54 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 24, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Luke Channer</td>
</tr>
<tr>
<td>Location</td>
<td>Flathead National Forest Flathead County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 19.975' W 113° 52.676' (view using Google Maps) N 48° 19' 59" W 113° 52' 41" N 48.332920° W 113.877940°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,676 ft (1,730 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Hungry Horse Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1084">
<coordinates>-113.87794,48.33292,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1087">
<name>First Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/first-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/first-butte-lookout/">http://nhlr.org/lookouts/us/wa/first-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 358, WA 39 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 8, 2000</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Okanogan National Forest Okanogan County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 37.152' W 120° 06.456' (view using Google Maps) N 48° 37' 09" W 120° 06' 27" N 48.619200° W 120.107600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,417 ft (1,651 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Methow Valley Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1086">
<coordinates>-120.1076,48.6192,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1089">
<name>Five Mile Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/five-mile-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/five-mile-lookout/">http://nhlr.org/lookouts/us/wi/five-mile-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1242, WI 37 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 28, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Washburn County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 06.442' W 092° 01.715' (view using Google Maps) N 46° 06' 27" W 092° 01' 43" N 46.107369° W 092.028581°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,113 ft (339 m)</td>
</tr>
<tr>
<td>Built</td>
<td>August 1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1088">
<coordinates>-92.028581,46.107369,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1091">
<name>Fivemile Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/fivemile-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/fivemile-butte-lookout/">http://nhlr.org/lookouts/us/or/fivemile-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 914, OR 118 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 4, 2011</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor</td>
</tr>
<tr>
<td>Location</td>
<td>Mount Hood National Forest Wasco County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 24.603' W 121° 28.121' (view using Google Maps) N 45° 24' 36" W 121° 28' 07" N 45.410050° W 121.468690°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,627 ft (1,410 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1957</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Barlow Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1090">
<coordinates>-121.46869,45.41005,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1093">
<name>Flag Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/flag-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/flag-point-lookout/">http://nhlr.org/lookouts/us/or/flag-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 489, OR 82 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Howard Verschoor, Oregon Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Mt. Hood National Forest Wasco County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 19.025' W 121° 28.133' (view using Google Maps) N 45° 19' 01" W 121° 28' 08" N 45.317080° W 121.468880°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,636 ft (1,718 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1973</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Barlow Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1092">
<coordinates>-121.46888,45.31708,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1095">
<name>Flagg Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/al/flagg-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/flagg-mountain-lookout/">http://nhlr.org/lookouts/us/al/flagg-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 250, AL 2 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 15, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kim Gilliland, Public Information Specialist, Alabama Forestry Commission</td>
</tr>
<tr>
<td>Location</td>
<td>Weogufka State Forest Coosa County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 58.687' W 086° 21.288' (view using Google Maps) N 32° 58' 41" W 086° 21' 17" N 32.978120° W 086.354799°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,104 ft (336 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Alabama Forestry Commission and Coosa County Cooperators</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1094">
<coordinates>-86.354799,32.97812,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1097">
<name>Flagstaff Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/flagstaff-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/flagstaff-lookout/">http://nhlr.org/lookouts/us/wa/flagstaff-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 325, WA 32 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 21, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Stevens County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 54.500' W 117° 52.112' (view using Google Maps) N 48° 54' 30" W 117° 52' 07" N 48.908330° W 117.868527°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,187 ft (1,276 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Washington Dept. of Natural Resources</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Washington Dept. of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1096">
<coordinates>-117.868527,48.90833,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1099">
<name>Flagtail Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/flagtail-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/flagtail-mountain-lookout/">http://nhlr.org/lookouts/us/or/flagtail-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 454, OR 57 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 11.162' W 119° 16.842' (view using Google Maps) N 44° 11' 10" W 119° 16' 51" N 44.186030° W 119.280700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,569 ft (2,002 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1960</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Blue Mountain Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1098">
<coordinates>-119.2807,44.18603,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1101">
<name>Flannagan Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/flannagan-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/flannagan-lookout/">http://nhlr.org/lookouts/us/wi/flannagan-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1244, WI 39 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 28, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Douglas County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 35.129' W 091° 56.169' (view using Google Maps) N 46° 35' 08" W 091° 56' 10" N 46.585489° W 091.936158°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,138 ft (347 m)</td>
</tr>
<tr>
<td>Built</td>
<td>August 1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1100">
<coordinates>-91.936158,46.585489,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1103">
<name>Flat Woods Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/tn/flat-woods-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/flat-woods-lookout/">http://nhlr.org/lookouts/us/tn/flat-woods-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1080, TN 21 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jerry Lutes</td>
</tr>
<tr>
<td>Location</td>
<td>Wayne County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 28.800' W 087° 46.260' (view using Google Maps) N 35° 28' 48" W 087° 46' 16" N 35.480000° W 087.771000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>944 ft (288 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1102">
<coordinates>-87.771,35.48,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1105">
<name>Flattop Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/flattop-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/flattop-mountain-lookout/">http://nhlr.org/lookouts/us/wa/flattop-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 188, WA 23 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 25, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Gifford Pinchot National Forest Skamania County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 01.664' W 121° 36.735' (view using Google Maps) N 46° 01' 40" W 121° 36' 44" N 46.027730° W 121.612250°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,366 ft (1,331 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mt. Adams Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1104">
<coordinates>-121.61225,46.02773,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1107">
<name>Flintkote (II) Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/flintkote-ii-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/flintkote-ii-lookout-tower/">http://nhlr.org/lookouts/us/ms/flintkote-ii-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1668, MS 32 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 10, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Kemper County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 32° 41.137' W 088° 30.611' (view using Google Maps) N 32° 41' 08" W 088° 30' 37" N 32.685624° W 088.510179°</td>
</tr>
<tr>
<td>Elevation</td>
<td>579 ft (176 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1106">
<coordinates>-88.510179,32.685624,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1109">
<name>Fluted Rock Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/fluted-rock-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/fluted-rock-lookout/">http://nhlr.org/lookouts/us/az/fluted-rock-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 437, AZ 33 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 20, 2002</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, AZ/NM Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Navajo Indian Reservation Apache County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 53.190' W 109° 14.874' (view using Google Maps) N 35° 53' 11" W 109° 14' 52" N 35.886500° W 109.247900°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,272 ft (2,521 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Navajo Indian Reservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bureau of Indian Affairs</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1108">
<coordinates>-109.2479,35.8865,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1111">
<name>Foley Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/foley-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/foley-butte-lookout/">http://nhlr.org/lookouts/us/or/foley-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 455, OR 58 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Crook County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 31.609' W 120° 47.116' (view using Google Maps) N 44° 31' 37" W 120° 47' 07" N 44.526820° W 120.785270°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,464 ft (1,665 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oregon Department of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Oregon Department of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1110">
<coordinates>-120.78527,44.52682,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1113">
<name>Forum Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ar/forum-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ar/forum-lookout-tower/">http://nhlr.org/lookouts/us/ar/forum-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1692, AR 11 (view other lookouts in United States, Arkansas)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 14, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>McIlroy State Game Mangement Area Madison County, Arkansas</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 13.792' W 093° 43.226' (view using Google Maps) N 36° 13' 48" W 093° 43' 14" N 36.229863° W 093.720430°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,639 ft (500 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>AGFC</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1112">
<coordinates>-93.72043,36.229863,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1115">
<name>Fosback Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/fosback-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/fosback-lookout/">http://nhlr.org/lookouts/us/wa/fosback-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 330, WA 36 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 18, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Stevens County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 32.413' W 117° 37.285' (view using Google Maps) N 48° 32' 25" W 117° 37' 17" N 48.540220° W 117.621418°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,647 ft (1,112 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Rod Fosback</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mr. &amp; Mrs. Rod Fosback, Owners</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1114">
<coordinates>-117.621418,48.54022,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1117">
<name>Fowler Peak (Bear Mountain) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/fowler-peak-bear-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/fowler-peak-bear-mountain-lookout/">http://nhlr.org/lookouts/us/ca/fowler-peak-bear-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1311, CA 134 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 16, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Calaveras County, California Calaveras County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 38° 01.165' W 120° 35.045' (view using Google Maps) N 38° 01' 10" W 120° 35' 03" N 38.019413° W 120.584078°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,893 ft (882 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1988</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection (Cal Fire)</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1116">
<coordinates>-120.584078,38.019413,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1119">
<name>Fox Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/fox-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/fox-butte-lookout/">http://nhlr.org/lookouts/us/or/fox-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 146, OR 22 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 19, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Johnson, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Deschutes National Forest Lake County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 36.631' W 120° 50.558' (view using Google Maps) N 43° 36' 38" W 120° 50' 34" N 43.610510° W 120.842639°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,065 ft (1,849 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Bend-Fort Rock Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1118">
<coordinates>-120.842639,43.61051,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1121">
<name>Fox Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/fox-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/fox-mountain-lookout/">http://nhlr.org/lookouts/us/nm/fox-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 650, NM 15 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 2, 2006</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Gila National Forest Catron County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 04.667' W 108° 42.297' (view using Google Maps) N 34° 04' 40" W 108° 42' 18" N 34.077780° W 108.704950°</td>
</tr>
<tr>
<td>Elevation</td>
<td>9,333 ft (2,845 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1959</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Quemado Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1120">
<coordinates>-108.70495,34.07778,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1123">
<name>Franklin State Forest Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/franklin-state-forest-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/franklin-state-forest-lookout-tower/">http://nhlr.org/lookouts/us/tn/franklin-state-forest-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1771, TN 73 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 16, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Franklin State Forest Marion County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 04.553' W 085° 50.518' (view using Google Maps) N 35° 04' 33" W 085° 50' 31" N 35.075880° W 085.841970°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,863 ft (568 m)</td>
</tr>
<tr>
<td>Built</td>
<td>After 1940</td>
</tr>
<tr>
<td>Administered by</td>
<td>Tennessee Division of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1122">
<coordinates>-85.84197,35.07588,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1125">
<name>Franson Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/franson-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/franson-peak-lookout/">http://nhlr.org/lookouts/us/wa/franson-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1525, WA 74 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Christine Estrada</td>
</tr>
<tr>
<td>Location</td>
<td>Washington State Forest Land Ferry County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 51.347' W 118° 37.951' (view using Google Maps) N 48° 51' 21" W 118° 37' 57" N 48.855779° W 118.632521°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,785 ft (1,154 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1986</td>
</tr>
<tr>
<td>Administered by</td>
<td>Washington Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1124">
<coordinates>-118.632521,48.855779,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1127">
<name>Frazier Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/frazier-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/frazier-mountain-lookout/">http://nhlr.org/lookouts/us/ca/frazier-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1372, CA 195 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 30, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Los Padres National Forest Ventura County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 46.496' W 118° 58.157' (view using Google Maps) N 34° 46' 30" W 118° 58' 09" N 34.774939° W 118.969291°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,027 ft (2,447 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Los Padres National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1126">
<coordinates>-118.969291,34.774939,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1129">
<name>Frazier Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/frazier-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/frazier-point-lookout/">http://nhlr.org/lookouts/us/or/frazier-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 456, OR 59 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Unknown</td>
</tr>
<tr>
<td>Location</td>
<td>Malheur National Forest Grant County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 05.679' W 118° 38.915' (view using Google Maps) N 44° 05' 41" W 118° 38' 55" N 44.094650° W 118.648580°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,280 ft (1,914 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1940</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Emigrant Peak Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1128">
<coordinates>-118.64858,44.09465,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1131">
<name>Fredonyer Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/fredonyer-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/fredonyer-peak-lookout/">http://nhlr.org/lookouts/us/ca/fredonyer-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1320, CA 143 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 20, 2019</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Lassen County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 40° 41.262' W 120° 35.911' (view using Google Maps) N 40° 41' 16" W 120° 35' 55" N 40.687694° W 120.598511°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,945 ft (2,422 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1973</td>
</tr>
<tr>
<td>Administered by</td>
<td>California Department of Forestry and Fire Protection - Lassen-Modoc Unit (Cal Fire LMU)</td>
</tr>
<tr>
<td>Cooperators</td>
<td>US Department of the Interior - Bureau of Land Management</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1130">
<coordinates>-120.598511,40.687694,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1133">
<name>Friendship (Skyline) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/friendship-skyline-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/friendship-skyline-lookout/">http://nhlr.org/lookouts/us/wi/friendship-skyline-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1259, WI 45 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 6, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Adams County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 59.239' W 089° 49.088' (view using Google Maps) N 43° 59' 14" W 089° 49' 05" N 43.987314° W 089.818133°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,294 ft (394 m)</td>
</tr>
<tr>
<td>Built</td>
<td>December 1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1132">
<coordinates>-89.818133,43.987314,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1135">
<name>Fryingpan Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nc/fryingpan-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nc/fryingpan-mountain-lookout/">http://nhlr.org/lookouts/us/nc/fryingpan-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 721, NC 15 (view other lookouts in United States, North Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 2, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Peter J. Barr</td>
</tr>
<tr>
<td>Location</td>
<td>Pisgah National Forest Transylvania County, North Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 23.614' W 082° 46.485' (view using Google Maps) N 35° 23' 37" W 082° 46' 29" N 35.393560° W 082.774750°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,340 ft (1,628 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pisgah Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1134">
<coordinates>-82.77475,35.39356,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1137">
<name>Funk Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/funk-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/funk-mountain-lookout/">http://nhlr.org/lookouts/us/wa/funk-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 361, WA 42 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 8, 2000</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Okanogan National Forest Okanogan County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 35.982' W 119° 44.604' (view using Google Maps) N 48° 35' 59" W 119° 44' 36" N 48.599700° W 119.743400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,070 ft (1,545 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Tonasket Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1136">
<coordinates>-119.7434,48.5997,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1139">
<name>Gallinas Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/gallinas-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/gallinas-peak-lookout/">http://nhlr.org/lookouts/us/nm/gallinas-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 694, NM 25 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 17, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Cibola National Forest Lincoln County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 14.814' W 105° 47.280' (view using Google Maps) N 34° 14' 49" W 105° 47' 17" N 34.246900° W 105.788000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,615 ft (2,626 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1933</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mountainair Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1138">
<coordinates>-105.788,34.2469,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1141">
<name>Garden Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/tn/garden-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/tn/garden-mountain-fire-tower/">http://nhlr.org/lookouts/us/tn/garden-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1401, TN 37 (view other lookouts in United States, Tennessee)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 24, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Don Gouge</td>
</tr>
<tr>
<td>Location</td>
<td>Bays Mountain Park Hawkins County, Tennessee</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 36° 30.917' W 082° 37.433' (view using Google Maps) N 36° 30' 55" W 082° 37' 26" N 36.515278° W 082.623889°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,393 ft (729 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1937</td>
</tr>
<tr>
<td>Administered by</td>
<td>City of Kingsport, Tennessee</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1140">
<coordinates>-82.623889,36.515278,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1143">
<name>Gardiner Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/gardiner-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/gardiner-peak-lookout/">http://nhlr.org/lookouts/us/id/gardiner-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 787, ID 69 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 24, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber</td>
</tr>
<tr>
<td>Location</td>
<td>Nez Perce National Forest Idaho County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 58.200' W 114° 46.000' (view using Google Maps) N 45° 58' 12" W 114° 46' 00" N 45.970000° W 114.766670°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,597 ft (2,011 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1953</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Moose Creek Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1142">
<coordinates>-114.76667,45.97,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1145">
<name>Gardner (Mt. Tam) Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/gardner-mt-tam-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/gardner-mt-tam-lookout/">http://nhlr.org/lookouts/us/ca/gardner-mt-tam-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1115, CA 108 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 21, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Don Keylon</td>
</tr>
<tr>
<td>Location</td>
<td>Mount Tamalpais State Park Marin County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 55.745' W 122° 34.669' (view using Google Maps) N 37° 55' 45" W 122° 34' 40" N 37.929079° W 122.577822°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,572 ft (784 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>Marin County Fire Department</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1144">
<coordinates>-122.577822,37.929079,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1147">
<name>Garnet Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/garnet-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/garnet-mountain-lookout/">http://nhlr.org/lookouts/us/mt/garnet-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1535, MT 98 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 12, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Kyle Stetler</td>
</tr>
<tr>
<td>Location</td>
<td>Custer-Gallatin National Forest Gallatin County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 25.593' W 111° 12.408' (view using Google Maps) N 45° 25' 36" W 111° 12' 24" N 45.426550° W 111.206800°</td>
</tr>
<tr>
<td>Elevation</td>
<td>8,244 ft (2,513 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1962</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1146">
<coordinates>-111.2068,45.42655,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1149">
<name>Garver Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/garver-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/garver-mountain-lookout/">http://nhlr.org/lookouts/us/mt/garver-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 343, MT 25 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 12, 2000</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai National Forest Lincoln County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 55.722' W 115° 47.668' (view using Google Maps) N 48° 55' 43" W 115° 47' 40" N 48.928705° W 115.794474°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,820 ft (1,774 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Three Rivers Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1148">
<coordinates>-115.794474,48.928705,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1151">
<name>Garwood Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/garwood-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/garwood-butte-lookout/">http://nhlr.org/lookouts/us/or/garwood-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1615, OR 139 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Umpqua National Forest Douglas County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 08.704' W 122° 16.916' (view using Google Maps) N 43° 08' 42" W 122° 16' 55" N 43.145074° W 122.281935°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,970 ft (2,124 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Umpqua National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1150">
<coordinates>-122.281935,43.145074,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1153">
<name>Gaston Firetower</name>
<atom:link>http://nhlr.org/lookouts/us/sc/gaston-firetower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/sc/gaston-firetower/">http://nhlr.org/lookouts/us/sc/gaston-firetower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 955, SC 12 (view other lookouts in United States, South Carolina)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mike Finch, Jr.</td>
</tr>
<tr>
<td>Location</td>
<td>Lexington County, South Carolina</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 48.852' W 081° 06.155' (view using Google Maps) N 33° 48' 51" W 081° 06' 09" N 33.814197° W 081.102591°</td>
</tr>
<tr>
<td>Elevation</td>
<td>499 ft (152 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1936</td>
</tr>
<tr>
<td>Administered by</td>
<td>South Carolina Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Piedmont Region, East Unit</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1152">
<coordinates>-81.102591,33.814197,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1155">
<name>Gauley Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/gauley-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/gauley-lookout-tower/">http://nhlr.org/lookouts/us/ms/gauley-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1622, MS 15 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 26, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Calhoun County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 54.209' W 089° 22.509' (view using Google Maps) N 33° 54' 13" W 089° 22' 31" N 33.903490° W 089.375157°</td>
</tr>
<tr>
<td>Elevation</td>
<td>591 ft (180 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>USFS</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1154">
<coordinates>-89.375157,33.90349,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1157">
<name>Gem Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/gem-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/gem-peak-lookout/">http://nhlr.org/lookouts/us/mt/gem-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 180, MT 19 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 20, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Kootenai National Forest Sanders County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 54.811' W 115° 54.405' (view using Google Maps) N 47° 54' 49" W 115° 54' 24" N 47.913520° W 115.906754°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,029 ft (1,838 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Cabinet Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1156">
<coordinates>-115.906754,47.91352,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1159">
<name>Gentry Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/gentry-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/gentry-lookout/">http://nhlr.org/lookouts/us/az/gentry-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 827, AZ 74 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 2, 2009</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Apache-Sitgreaves National Forests Navajo County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 18.083' W 110° 42.817' (view using Google Maps) N 34° 18' 05" W 110° 42' 49" N 34.301390° W 110.713610°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,724 ft (2,354 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1965</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Black Mesa Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1158">
<coordinates>-110.71361,34.30139,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1161">
<name>Georgetown Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/georgetown-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/georgetown-fire-tower/">http://nhlr.org/lookouts/us/ma/georgetown-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 589, MA 16 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 30, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>Town of Georgetown Essex County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 42.467' W 071° 00.917' (view using Google Maps) N 42° 42' 28" W 071° 00' 55" N 42.707780° W 071.015280°</td>
</tr>
<tr>
<td>Elevation</td>
<td>347 ft (106 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1969</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 5</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1160">
<coordinates>-71.01528,42.70778,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1163">
<name>Gerow Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/gerow-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/gerow-butte-lookout/">http://nhlr.org/lookouts/us/or/gerow-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1616, OR 140 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Private Land Crook County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 15.804' W 120° 27.608' (view using Google Maps) N 44° 15' 48" W 120° 27' 36" N 44.263406° W 120.460132°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,691 ft (1,735 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1968</td>
</tr>
<tr>
<td>Administered by</td>
<td>Oregon Department of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Ochoco Timber Company</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1162">
<coordinates>-120.460132,44.263406,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1165">
<name>Gheen Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mn/gheen-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mn/gheen-lookout/">http://nhlr.org/lookouts/us/mn/gheen-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1486, MN 21 (view other lookouts in United States, Minnesota)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2021</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jacob Hufnagle</td>
</tr>
<tr>
<td>Location</td>
<td>St. Louis County, Minnesota</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 58.725' W 092° 49.817' (view using Google Maps) N 47° 58' 44" W 092° 49' 49" N 47.978758° W 092.830283°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,476 ft (450 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>Minnesota Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1164">
<coordinates>-92.830283,47.978758,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1167">
<name>Gibbs Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/mi/gibbs-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mi/gibbs-fire-tower/">http://nhlr.org/lookouts/us/mi/gibbs-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 169, MI 2 (view other lookouts in United States, Michigan)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 30, 1996</td>
</tr>
<tr>
<td>Nominated by</td>
<td>E. B. Fitzpatrick and Roger Hakari, Iron River District</td>
</tr>
<tr>
<td>Location</td>
<td>Ottawa National Forest Iron County, Michigan</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 10.797' W 088° 41.904' (view using Google Maps) N 46° 10' 48" W 088° 41' 54" N 46.179955° W 088.698405°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,683 ft (513 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Iron River Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1166">
<coordinates>-88.698405,46.179955,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1169">
<name>Girard Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/girard-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/girard-lookout-tower/">http://nhlr.org/lookouts/us/ga/girard-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 956, GA 14 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 3, 2013</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mike Finch, Jr.</td>
</tr>
<tr>
<td>Location</td>
<td>Burke County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 33° 03.900' W 081° 43.268' (view using Google Maps) N 33° 03' 54" W 081° 43' 16" N 33.065000° W 081.721140°</td>
</tr>
<tr>
<td>Elevation</td>
<td>255 ft (78 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1940</td>
</tr>
<tr>
<td>Administered by</td>
<td>Georgia Forestry Commission</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Georgia Forestry Commission, Oconee District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1168">
<coordinates>-81.72114,33.065,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1171">
<name>Girard Ridge Fire Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/girard-ridge-fire-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/girard-ridge-fire-lookout/">http://nhlr.org/lookouts/us/ca/girard-ridge-fire-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 266, CA 10 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 15, 1998</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Johnson, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Shasta-Trinity National Forest Shasta County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 07.690' W 122° 16.768' (view using Google Maps) N 41° 07' 41" W 122° 16' 46" N 41.128160° W 122.279467°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,753 ft (1,449 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1931</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mt. Shasta Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1170">
<coordinates>-122.279467,41.12816,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1173">
<name>Gird Point Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/gird-point-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/gird-point-lookout/">http://nhlr.org/lookouts/us/mt/gird-point-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 459, MT 35 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>January 8, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary A. Weber, Montana Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Bitterroot National Forest Ravalli County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 12.450' W 113° 54.634' (view using Google Maps) N 46° 12' 27" W 113° 54' 38" N 46.207500° W 113.910560°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,595 ft (2,315 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Sula Ranger District</td>
</tr>
<tr>
<td>Available for Rental</td>
<td>Yes, learn more</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1172">
<coordinates>-113.91056,46.2075,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1175">
<name>Gisborne Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/gisborne-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/gisborne-mountain-lookout/">http://nhlr.org/lookouts/us/id/gisborne-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 128, ID 6 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 1, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gary Weber, Idaho Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Idaho Panhandle National Forests Bonner County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 20.958' W 116° 45.383' (view using Google Maps) N 48° 20' 57" W 116° 45' 23" N 48.349300° W 116.756377°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,550 ft (1,692 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Priest Lake Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1174">
<coordinates>-116.756377,48.3493,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1177">
<name>Glassy Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ga/glassy-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ga/glassy-mountain-fire-tower/">http://nhlr.org/lookouts/us/ga/glassy-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 706, GA 9 (view other lookouts in United States, Georgia)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>July 26, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>John Mayer</td>
</tr>
<tr>
<td>Location</td>
<td>Chattahoochee National Forest Rabun County, Georgia</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 50.816' W 083° 30.083' (view using Google Maps) N 34° 50' 49" W 083° 30' 05" N 34.846940° W 083.501390°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,315 ft (1,010 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1941</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Chattooga Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1176">
<coordinates>-83.50139,34.84694,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1179">
<name>Glastenbury Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/vt/glastenbury-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/vt/glastenbury-mountain-fire-tower/">http://nhlr.org/lookouts/us/vt/glastenbury-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1777, VT 9 (view other lookouts in United States, Vermont)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 31, 2023</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Gerald Mattison</td>
</tr>
<tr>
<td>Location</td>
<td>Green Mountain National Forest Bennington County, Vermont</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 58.667' W 073° 04.300' (view using Google Maps) N 42° 58' 40" W 073° 04' 18" N 42.977778° W 073.071667°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,777 ft (1,151 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1927</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1178">
<coordinates>-73.071667,42.977778,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1181">
<name>Glen Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/glen-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/glen-lookout-tower/">http://nhlr.org/lookouts/us/ms/glen-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1617, MS 13 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Alcorn County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 53.242' W 088° 26.387' (view using Google Maps) N 34° 53' 15" W 088° 26' 23" N 34.887375° W 088.439776°</td>
</tr>
<tr>
<td>Elevation</td>
<td>602 ft (183 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commision</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1180">
<coordinates>-88.439776,34.887375,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1183">
<name>Glenville Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ms/glenville-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ms/glenville-lookout-tower/">http://nhlr.org/lookouts/us/ms/glenville-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1611, MS 10 (view other lookouts in United States, Mississippi)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Jason Johns</td>
</tr>
<tr>
<td>Location</td>
<td>Panola County, Mississippi</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 30.927' W 089° 46.209' (view using Google Maps) N 34° 30' 56" W 089° 46' 13" N 34.515450° W 089.770153°</td>
</tr>
<tr>
<td>Elevation</td>
<td>511 ft (156 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mississippi Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1182">
<coordinates>-89.770153,34.51545,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1185">
<name>Glidden Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/glidden-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/glidden-lookout/">http://nhlr.org/lookouts/us/wi/glidden-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1228, WI 32 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>August 16, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Ashland County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 08.073' W 090° 33.933' (view using Google Maps) N 46° 08' 04" W 090° 33' 56" N 46.134556° W 090.565556°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,589 ft (484 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1932</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1184">
<coordinates>-90.565556,46.134556,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1187">
<name>Glorieta Baldy Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/nm/glorieta-baldy-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/nm/glorieta-baldy-lookout/">http://nhlr.org/lookouts/us/nm/glorieta-baldy-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 709, NM 28 (view other lookouts in United States, New Mexico)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 7, 2007</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz</td>
</tr>
<tr>
<td>Location</td>
<td>Santa Fe National Forest Santa Fe County, New Mexico</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 39.120' W 105° 48.000' (view using Google Maps) N 35° 39' 07" W 105° 47' 60" N 35.652000° W 105.800000°</td>
</tr>
<tr>
<td>Elevation</td>
<td>10,220 ft (3,115 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1940</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Pecos/Las Vegas Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1186">
<coordinates>-105.8,35.652,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1189">
<name>Goat Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ca/goat-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ca/goat-mountain-lookout/">http://nhlr.org/lookouts/us/ca/goat-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 303, CA 31 (view other lookouts in United States, California)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 21, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Mark Swift</td>
</tr>
<tr>
<td>Location</td>
<td>Sierra National Forest Madera County, California</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 37° 16.319' W 119° 33.001' (view using Google Maps) N 37° 16' 19" W 119° 33' 00" N 37.271990° W 119.550024°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,634 ft (1,412 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Minarets Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1188">
<coordinates>-119.550024,37.27199,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1191">
<name>Goat Peak Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/goat-peak-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/goat-peak-lookout/">http://nhlr.org/lookouts/us/wa/goat-peak-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 357, WA 38 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 4, 2000</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ray Kresek, Washington Registrar</td>
</tr>
<tr>
<td>Location</td>
<td>Okanogan National Forest Okanogan County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 37.926' W 120° 24.162' (view using Google Maps) N 48° 37' 56" W 120° 24' 10" N 48.632100° W 120.402700°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,737 ft (2,053 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Methow Valley Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1190">
<coordinates>-120.4027,48.6321,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1193">
<name>Gobblers Knob Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/gobblers-knob-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/gobblers-knob-lookout/">http://nhlr.org/lookouts/us/wa/gobblers-knob-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 478, WA 51 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 31, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Mount Rainier National Park Pierce County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 47.642' W 121° 54.850' (view using Google Maps) N 46° 47' 39" W 121° 54' 51" N 46.794030° W 121.914170°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,326 ft (1,623 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>National Park Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mount Rainier National Park</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1192">
<coordinates>-121.91417,46.79403,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1195">
<name>Gold Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/or/gold-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/or/gold-butte-lookout/">http://nhlr.org/lookouts/us/or/gold-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 134, OR 18 (view other lookouts in United States, Oregon)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>November 24, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Ron Johnson, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Willamette National Forest Marion County, Oregon</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 48.305' W 122° 05.004' (view using Google Maps) N 44° 48' 18" W 122° 05' 00" N 44.805075° W 122.083405°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,477 ft (1,365 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1934</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Detroit Ranger District, and the Pacific Crest Trust Fund</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1194">
<coordinates>-122.083405,44.805075,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1197">
<name>Gold Fork Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/gold-fork-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/gold-fork-lookout/">http://nhlr.org/lookouts/us/id/gold-fork-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1448, ID 141 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 2, 2020</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Boise National Forest Valley County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 44° 31.757' W 115° 58.932' (view using Google Maps) N 44° 31' 45" W 115° 58' 56" N 44.529276° W 115.982201°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,889 ft (1,490 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Boise National Forest</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1196">
<coordinates>-115.982201,44.529276,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1199">
<name>Gold Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/gold-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/gold-mountain-lookout/">http://nhlr.org/lookouts/us/wa/gold-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1526, WA 75 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Christine Estrada</td>
</tr>
<tr>
<td>Location</td>
<td>Colville Indian Reservation Ferry County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 48° 10.833' W 118° 28.026' (view using Google Maps) N 48° 10' 50" W 118° 28' 02" N 48.180553° W 118.467093°</td>
</tr>
<tr>
<td>Elevation</td>
<td>4,684 ft (1,428 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1986</td>
</tr>
<tr>
<td>Administered by</td>
<td>US Forest Service - Colville National Forest</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Colville Indian Reservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1198">
<coordinates>-118.467093,48.180553,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1201">
<name>Golden Gate Lookout Tower</name>
<atom:link>http://nhlr.org/lookouts/us/fl/golden-gate-lookout-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/fl/golden-gate-lookout-tower/">http://nhlr.org/lookouts/us/fl/golden-gate-lookout-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1782, FL 27 (view other lookouts in United States, Florida)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>February 26, 2024</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Brad Eells</td>
</tr>
<tr>
<td>Location</td>
<td>Collier County, Florida</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 26° 16.627' W 081° 35.524' (view using Google Maps) N 26° 16' 38" W 081° 35' 31" N 26.277122° W 081.592060°</td>
</tr>
<tr>
<td>Elevation</td>
<td>18 ft (5 m)</td>
</tr>
<tr>
<td>Built</td>
<td>Unknown</td>
</tr>
<tr>
<td>Administered by</td>
<td>Florida Forest Service - Collier Forestry Station</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1200">
<coordinates>-81.59206,26.277122,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1203">
<name>Gomer Hill Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/gomer-hill-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/gomer-hill-fire-tower/">http://nhlr.org/lookouts/us/ny/gomer-hill-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1697, NY 49 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>State Forest Preserve Lewis County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 38.828' W 075° 28.916' (view using Google Maps) N 43° 38' 50" W 075° 28' 55" N 43.647140° W 075.481940°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,108 ft (643 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Department of Environmental Conservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1202">
<coordinates>-75.48194,43.64714,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1205">
<name>Goodman Hill Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/goodman-hill-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/goodman-hill-lookout/">http://nhlr.org/lookouts/us/wa/goodman-hill-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1527, WA 76 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>April 11, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Christine Estrada</td>
</tr>
<tr>
<td>Location</td>
<td>Joint Base Lewis-McChord Pierce County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 04.324' W 122° 38.798' (view using Google Maps) N 47° 04' 19" W 122° 38' 48" N 47.072067° W 122.646633°</td>
</tr>
<tr>
<td>Elevation</td>
<td>541 ft (165 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Department of Natural Resources - Washington State Division of Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Joint Base Lewis-McChord</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1204">
<coordinates>-122.646633,47.072067,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1207">
<name>Goodman Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/goodman-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/goodman-lookout/">http://nhlr.org/lookouts/us/wi/goodman-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1211, WI 17 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 19, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Marinette County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 36.965' W 088° 19.885' (view using Google Maps) N 45° 36' 58" W 088° 19' 53" N 45.616078° W 088.331414°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,462 ft (446 m)</td>
</tr>
<tr>
<td>Built</td>
<td>October 1939</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1206">
<coordinates>-88.331414,45.616078,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1209">
<name>Goodnow Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/goodnow-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/goodnow-mountain-fire-tower/">http://nhlr.org/lookouts/us/ny/goodnow-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 537, NY 24 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 4, 2003</td>
</tr>
<tr>
<td>Location</td>
<td>Essex County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 57.610' W 074° 12.590' (view using Google Maps) N 43° 57' 37" W 074° 12' 35" N 43.960170° W 074.209830°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,690 ft (820 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NY Dept. of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>College of Environmental Science and Forestry at Syracuse University and Town of Newcomb, New York</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1208">
<coordinates>-74.20983,43.96017,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1211">
<name>Gordon Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/la/gordon-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/la/gordon-fire-tower/">http://nhlr.org/lookouts/us/la/gordon-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 321, LA 2 (view other lookouts in United States, Louisiana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 1, 1999</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Keith Hawkins, Louisiana-Texas Chapter, FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Beauregard Parish, Louisiana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 30° 28.782' W 093° 20.184' (view using Google Maps) N 30° 28' 47" W 093° 20' 11" N 30.479700° W 093.336400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>89 ft (27 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Louisiana Dept. of Agriculture &amp; Forestry</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Louisiana Dept. of Agriculture &amp; Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1210">
<coordinates>-93.3364,30.4797,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1213">
<name>Gordon Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wi/gordon-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wi/gordon-lookout/">http://nhlr.org/lookouts/us/wi/gordon-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1260, WI 46 (view other lookouts in United States, Wisconsin)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 6, 2017</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Tyler Bormann</td>
</tr>
<tr>
<td>Location</td>
<td>Douglas County, Wisconsin</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 14.691' W 091° 48.450' (view using Google Maps) N 46° 14' 41" W 091° 48' 27" N 46.244842° W 091.807503°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,142 ft (348 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Wisconsin Department of Natural Resources</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1212">
<coordinates>-91.807503,46.244842,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1215">
<name>Gore Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/gore-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/gore-fire-tower/">http://nhlr.org/lookouts/us/ny/gore-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1701, NY 53 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 23, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Gore Mountain Ski Center Warren County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 43° 40.406' W 074° 00.238' (view using Google Maps) N 43° 40' 24" W 074° 00' 14" N 43.673440° W 074.003970°</td>
</tr>
<tr>
<td>Elevation</td>
<td>3,563 ft (1,086 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1918</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Department of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Olympic Regional Development Authority</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1214">
<coordinates>-74.00397,43.67344,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1217">
<name>Goshen Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ma/goshen-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ma/goshen-fire-tower/">http://nhlr.org/lookouts/us/ma/goshen-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 609, MA 20 (view other lookouts in United States, Massachusetts)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 15, 2004</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Henry Isenberg</td>
</tr>
<tr>
<td>Location</td>
<td>D.A.R. State Forest Hampshire County, Massachusetts</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 27.872' W 072° 47.015' (view using Google Maps) N 42° 27' 52" W 072° 47' 01" N 42.464534° W 072.783578°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,676 ft (511 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1952</td>
</tr>
<tr>
<td>Administered by</td>
<td>Mass. Bureau of Forest Fire Control</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Mass. Bureau of Forest Fire Control, District 10</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1216">
<coordinates>-72.783578,42.464534,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1219">
<name>Grafton Lakes Nature Explorers Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/ny/grafton-lakes-nature-explorers-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/grafton-lakes-nature-explorers-lookout/">http://nhlr.org/lookouts/us/ny/grafton-lakes-nature-explorers-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1706, NY 54 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>December 25, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Laurie Rankin</td>
</tr>
<tr>
<td>Location</td>
<td>Grafton Lakes State Park Rensselaer County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 42° 47.156' W 073° 27.208' (view using Google Maps) N 42° 47' 09" W 073° 27' 12" N 42.785940° W 073.453470°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,523 ft (464 m)</td>
</tr>
<tr>
<td>Built</td>
<td>2017</td>
</tr>
<tr>
<td>Administered by</td>
<td>New York State Office of Parks, Recreation and Historic Preservation</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1218">
<coordinates>-73.45347,42.78594,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1221">
<name>Graham Mountain Fire Tower</name>
<atom:link>http://nhlr.org/lookouts/us/ny/graham-mountain-fire-tower/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/ny/graham-mountain-fire-tower/">http://nhlr.org/lookouts/us/ny/graham-mountain-fire-tower/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 105, NY 5 (view other lookouts in United States, New York)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>March 6, 1995</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Bob Spear, FFLA and NHLR representative</td>
</tr>
<tr>
<td>Location</td>
<td>Mount Hope Township Orange County, New York</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 26.460' W 074° 34.464' (view using Google Maps) N 41° 26' 28" W 074° 34' 28" N 41.441000° W 074.574400°</td>
</tr>
<tr>
<td>Elevation</td>
<td>1,300 ft (396 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>NY Dept. of Environmental Conservation</td>
</tr>
<tr>
<td>Cooperators</td>
<td>NY Dept. of Environmental Conservation, the Highlands Group of the Forest Fire Lookout Association</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1220">
<coordinates>-74.5744,41.441,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1223">
<name>Grandview Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/al/grandview-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/al/grandview-lookout/">http://nhlr.org/lookouts/us/al/grandview-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1133, AL 66 (view other lookouts in United States, Alabama)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 27, 2016</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Andrew Zerbe</td>
</tr>
<tr>
<td>Location</td>
<td>Cullman County, Alabama</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 34° 08.016' W 086° 55.476' (view using Google Maps) N 34° 08' 01" W 086° 55' 29" N 34.133600° W 086.924600°</td>
</tr>
<tr>
<td>Elevation</td>
<td>940 ft (287 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>Alabama Forestry Commission</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1222">
<coordinates>-86.9246,34.1336,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1225">
<name>Grandview Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/az/grandview-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/az/grandview-lookout/">http://nhlr.org/lookouts/us/az/grandview-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 385, AZ 22 (view other lookouts in United States, Arizona)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 1, 2001</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Dave Lorenz, Director, AZ/NM FFLA</td>
</tr>
<tr>
<td>Location</td>
<td>Kaibab National Forest Coconino County, Arizona</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 35° 57.464' W 111° 57.250' (view using Google Maps) N 35° 57' 28" W 111° 57' 15" N 35.957730° W 111.954167°</td>
</tr>
<tr>
<td>Elevation</td>
<td>7,529 ft (2,295 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Tusayan Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1224">
<coordinates>-111.954167,35.95773,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1227">
<name>Grandview Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/pa/grandview-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/pa/grandview-lookout/">http://nhlr.org/lookouts/us/pa/grandview-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1580, PA 71 (view other lookouts in United States, Pennsylvania)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>May 22, 2022</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Michael Jamicky</td>
</tr>
<tr>
<td>Location</td>
<td>Ricketts Glen State Park Luzerne County, Pennsylvania</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 41° 18.514' W 076° 18.558' (view using Google Maps) N 41° 18' 31" W 076° 18' 33" N 41.308561° W 076.309299°</td>
</tr>
<tr>
<td>Elevation</td>
<td>2,448 ft (746 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1942</td>
</tr>
<tr>
<td>Administered by</td>
<td>Pennsylvania Bureau of Forestry</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1226">
<coordinates>-76.309299,41.308561,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1229">
<name>Granite Butte Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/mt/granite-butte-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/mt/granite-butte-lookout/">http://nhlr.org/lookouts/us/mt/granite-butte-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 744, MT 42 (view other lookouts in United States, Montana)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>October 15, 2008</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Samsara Chapman</td>
</tr>
<tr>
<td>Location</td>
<td>Helena National Forest Lewis and Clark County, Montana</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 46° 51.781' W 112° 27.886' (view using Google Maps) N 46° 51' 47" W 112° 27' 53" N 46.863010° W 112.464770°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,887 ft (2,099 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1962</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>Lincoln Ranger District</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1228">
<coordinates>-112.46477,46.86301,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1231">
<name>Granite Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/id/granite-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/granite-mountain-lookout/">http://nhlr.org/lookouts/us/id/granite-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 536, ID 35 (view other lookouts in United States, Idaho)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>September 18, 2003</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Patty Bates, District Ranger</td>
</tr>
<tr>
<td>Location</td>
<td>Salmon National Forest Lemhi County, Idaho</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 45° 33.010' W 113° 58.870' (view using Google Maps) N 45° 33' 01" W 113° 58' 52" N 45.550170° W 113.981170°</td>
</tr>
<tr>
<td>Elevation</td>
<td>6,280 ft (1,914 m)</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
<tr>
<td>Cooperators</td>
<td>North Fork Ranger District, Salmon-Challis National Forest Heritage, and North Fork Volunteer Fire Department</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1230">
<coordinates>-113.98117,45.55017,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1233">
<name>Granite Mountain Lookout</name>
<atom:link>http://nhlr.org/lookouts/us/wa/granite-mountain-lookout/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/wa/granite-mountain-lookout/">http://nhlr.org/lookouts/us/wa/granite-mountain-lookout/</a><br><table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Registry Numbers</td>
<td>US 1068, WA 64 (view other lookouts in United States, Washington)</td>
</tr>
<tr>
<td>Date Registered</td>
<td>June 9, 2015</td>
</tr>
<tr>
<td>Nominated by</td>
<td>Keith Argow</td>
</tr>
<tr>
<td>Location</td>
<td>Mt. Baker-Snoqualmie National Forest King County, Washington</td>
</tr>
<tr>
<td>Coordinates</td>
<td>N 47° 25.028' W 121° 28.876' (view using Google Maps) N 47° 25' 02" W 121° 28' 53" N 47.417134° W 121.481275°</td>
</tr>
<tr>
<td>Elevation</td>
<td>5,607 ft (1,709 m)</td>
</tr>
<tr>
<td>Built</td>
<td>1955</td>
</tr>
<tr>
<td>Administered by</td>
<td>U.S. Forest Service</td>
</tr>
</tbody>
</table>]]></description>
<Point id="1232">
<coordinates>-121.481275,47.417134,0.0</coordinates>
</Point>
</Placemark>
<Placemark id="1235">
<name>Granite Mountain Lookout (Payette National Forest)</name>
<atom:link>http://nhlr.org/lookouts/us/id/granite-mountain-lookout-payette-national-forest/</atom:link>
<description><![CDATA[<a href="http://nhlr.org/lookouts/us/id/granite-mountain-lo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment