Skip to content

Instantly share code, notes, and snippets.

@zsarge
Created May 4, 2025 05:28
Show Gist options
  • Select an option

  • Save zsarge/1811b9ce6cc230c054f71d19ad6c969f to your computer and use it in GitHub Desktop.

Select an option

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>