Skip to content

Commit

Permalink
Adding guessing and some WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
BubbaJuice committed May 16, 2024
1 parent 1391f7b commit f9baa8a
Show file tree
Hide file tree
Showing 7 changed files with 801 additions and 120 deletions.
117 changes: 117 additions & 0 deletions answers.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
<html>
<head>
<title>e</title>
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open%20Sans">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""
/>
<script
src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""
></script>
<style>
body {
font-family: "Open Sans";
background-color:#36393f;
color: #ffffff;
max-width: 69420ex;
}
.bodyaa {
text-align: center;
}
.link {
color: #2f8aee;
}
.panel {
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0);
color: white;
font-size: 18px;
}
.content {
display: none;
}
</style>
</head>
<body>
<div class="bodya">
<div class="bodyaa">
<h1><strong>Benchmark Finding Answers</strong></h1>
<p><a href="https://bubbajuice.github.io/benchmarks" class="link">Benchmarks</a> <a href="https://bubbajuice.github.io/apps" class="link">Apps</a> <a href="https://bubbajuice.github.io/" class="link">Home</a> <a href="https://bubbajuice.github.io/gcstats" class="link">Geocaching Stats</a></p>
<hr>
<p>These are the answers.</p>
<div id="panel" class="panel">
<p>WARNING: Clicking the button will show you the answers!</p>
<button id="openPanel">Open Panel</button>
</div>
<div id="content" class="content">
<h3>Round 1</h3>
<p>So I will give you a picture and the stamping and what state it is in for this one.</p>
<img src="benchmarks\images\guess1.png" width="65%">
<p>This one is stamped "5481 10-18-1905 V-A" and is located in California.</p>
<p>So this one is easy if you have experiences with the area. It's located in Yosemite Valley at Clark Point.</p>
<p style="margin-left: 17.5%; margin-right: 17.5%">From the stamped elevation, you can tell it is somewhere in the mountains.
From there, if you are keen you will know that the 1905 dates are common in Yosemite.
There were a lot of vertical angle surveys done in Yosemite in 1905, gathering data on the heights of the waterfalls and general elevation data for topography.
You won't find these benchmarks on the typical Yosemite quadrangle but they will be on <a href="https://pubs.usgs.gov/publication/pp160" class="link">https://pubs.usgs.gov/publication/pp160</a> on Plate 7.
If you also thought it was Yosemite but couldn't find the mark on a typical quadrangle map, then you could search '"5481" yosemite' on Google and it would come up with this link, <a href="https://thesurveystation.com/USGS/CA/YosVal_rim.pdf" class="link">https://thesurveystation.com/USGS/CA/YosVal_rim.pdf</a>, which leads you to datasheet descriptions of each mark where you could quickly find its location.
</p>
</div>
</div>
<div class="center" style="margin-bottom: 20px;">
<div id="map" style="width: 100%; height: 600px; width: 65%; margin-left: 17.5%"></div>
</div>
</div>
<br>
<br>
<br>

<script>
/* Base Layers */
var caltopo=L.tileLayer("https://caltopo.s3.amazonaws.com/topo/{z}/{x}/{y}.png",{attribution:'&copy; <a href="https://caltopo.com/map.html">Caltopo</a>',maxNativeZoom:16}),osm=L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png",{attribution:'&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'}),naip=L.tileLayer("https://naip.maptiles.arcgis.com/arcgis/rest/services/NAIP/MapServer/tile/{z}/{y}/{x}",{attribution:"USDA-NAIP"});usgsImagery=L.tileLayer("https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{z}/{y}/{x}",{attribution:"USDA-NAIP",maxNativeZoom:16});ersi=L.tileLayer("https://services.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}",{attribution:"Esri, Maxar, Earthstar Geographics, USDA FSA, USGS, Aerogrid, IGN, IGP, and the GIS User Community"});ersiClarity=L.tileLayer("https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}",{attribution:"Esri, DigitalGlobe, GeoEye, Earthstar Geographics, and the GIS User Community"});

var layers = [osm];

var baseMaps = {
OpenStreetMap: osm,
"Scanned USGS Topo Maps": caltopo,
NAIP: naip,
"USGS Imagery": usgsImagery,
"Ersi World Imagery": ersi,
"Ersi Clarity": ersiClarity,
};

document.addEventListener("DOMContentLoaded", function() {
var panel = document.getElementById("panel");
var openPanelButton = document.getElementById("openPanel");
var content = document.getElementById("content");

function showPanel() {
panel.style.display = "none";
content.style.display = "block";
var map = L.map("map", {
center: [39.5, -98.7],
zoom: 4,
layers: layers,
});
L.control.layers(baseMaps).addTo(map);
var marker = L.marker([37.72499, -119.54487]).addTo(map);
var popup = marker.bindPopup('Location 1');
}

openPanelButton.addEventListener("click", showPanel);
});
</script>
</body>
</html>
255 changes: 146 additions & 109 deletions benchmarks.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,26 @@
color: #ffffff;
max-width: 69420ex;
}
#myBtn {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: mediumpurple;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
box-shadow: -4px 4px rgba(172, 177, 185, 0.24);
}

#myBtn:hover {
background-color: #7a4cd9;
}
.link {
color: #2f8aee;
}
Expand All @@ -30,116 +50,119 @@
</style>
</head>
<body>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<center>
<h1><strong>Benchmarks</strong></h1>
<p><a href="https://bubbajuice.github.io/benchmarks" class="link">Benchmarks</a> <a href="https://bubbajuice.github.io/apps" class="link">Apps</a> <a href="https://bubbajuice.github.io/" class="link">Home</a> <a href="https://bubbajuice.github.io/gcstats" class="link">Geocaching Stats</a></p>
<hr>
<p>
<a href="https://bubbajuice.github.io/benchmarks/types/usgs" class="link">The Evolution of USGS Benchmarks</a>
<br>
<a href="https://bubbajuice.github.io/benchmarks/datum/nogls" class="link">USGS NOGLS Datum</a>
</p>
<p>
Here is a list of benchmarks that I have personally recovered that are still there.
</p>
<input type="text" id="searchCriteria" placeholder="Search names...">
<select id="sortCriteria">
<option value="original">Original</option>
<option value="ngs-id">NGS ID</option>
<option value="mon">Date monumented</option>
<option value="agency">Agency</option>
<option value="rr">Last found</option>
<option value="setting">Setting</option>
<option value="con">Condition</option>
<option value="type">Type</option>
<option value="name">Name</option>
<option value="material">Material</option>
</select>
<select id="agencyCriteria" style="display:none;">
<option value="1">USGS</option>
<option value="2">USC&GS</option>
<option value="3">NGS</option>
<option value="4">USAFGS</option>
<option value="5">BLM</option>
<option value="6">USACE</option>
<option value="7">GLO</option>
</select>
<select id="typeCriteria" style="display:none;">
<option value="1">USGS bolt</option>
<option value="2">USGS "plus" disk</option>
<option value="3">USGS "plus" pipe</option>
<option value="4">USGS "plus" disk with state</option>
<option value="5">USGS triangulation no BM</option>
<option value="6">USGS triangulation with BM</option>
<option value="7">USGS triangulation with state no BM</option>
<option value="8">USGS 1907-1932 disk</option>
<option value="9">USGS 1907-1932 pipe</option>
<option value="10">USGS "in cooperation with the state of"</option>
<option value="11">USGS 1932-1962 no datum</option>
<option value="12">USGS DOI 1962-</option>
<option value="13">USGS old reference</option>
<option value="14">USGS newer reference</option>
<option value="15">USGS DOI reference</option>
<option value="16">USGS DOI gaging station</option>
<option value="17">USGS other</option>
<option value="18">Marking in a rock (or other unspecified surface)</option>
<option value="19">unmarked bolt</option>
<option value="20">unmarked washer (and nail)</option>
<option value="21">USGS washer</option>
<option value="22">stone washer</option>
<option value="23">metal monument</option>
<option value="24">CGS triangulation ~2.5 cm triangle variant ~1910-1912</option>
<option value="25">CGS triangulation ~2 cm triangle variant 1909-1922</option>
<option value="26">CGS triangulation ~2 cm triangle variant large lettering</option>
<option value="27">CGS triangulation 1919-1972 original ~2 cm triangle</option>
<option value="28">CGS triangulation 1919-1972 ~1 cm triangle</option>
<option value="45">CGS vertical: slash</option>
<option value="69">CGS vertial: triple cross</option>
<option value="70">CGS vertial: single cross</option>
<option value="72">NGS vertical</option>
<option value="29">NGS horizontal control</option>
<option value="30">CGS flat 1913-1922 reference</option>
<option value="31">CGS concave 1919-1972 reference</option>
<option value="32">CGS short arrow reference</option>
<option value="33">NGS reference</option>
<option value="34">CGS azimuth original arrow 1935-1972</option>
<option value="35">CGS azimuth shorter arrow</option>
<option value="36">NGS azimuth</option>
<option value="37">CGS gravity hexagon</option>
<option value="71">CGS gravity circle</option>
<option value="38">NGS gravity</option>
<option value="39">CGS gravity reference (hexagon)</option>
<option value="40">CGS tidal</option>
<option value="41">CGS cup style plus disk (1900-1913)</option>
<option value="42">CGS cup style triangle disk (1900-1913)</option>
<option value="43">CGS cup style blank disk (1900-1913)</option>
<option value="44">CGS WWII Cast Iron Disk</option>
<option value="46">CGS topographic</option>
<option value="47">CGS traverse</option>
<option value="48">CGS meridian</option>
<option value="49">CGS magnetic</option>
<option value="50">CGS state survey</option>
<option value="51">USACE</option>
<option value="52">USACE war department</option>
<option value="53">USACE other</option>
<option value="54">USCE pipe</option>
<option value="55">air forces geodetic survey marker</option>
<option value="56">NOS marker</option>
<option value="57">DOI marker (not USGS)</option>
<option value="58">DOI marker Bureau of Land Management</option>
<option value="59">GLO pipe plus</option>
<option value="73">GLO pipe "T"</option>
<option value="60">GLO pipe line</option>
<option value="61">regional survey marker (except below)</option>
<option value="62">regional survey triangulation</option>
<option value="63">regional survey reference</option>
<option value="64">regional survey azimuth</option>
<option value="65">unmarked rod</option>
<option value="66">NGS rod</option>
<option value="67">other agency rod</option>
<option value="68">boundary disk</option>
</select>
<button onclick="sortBenchmarks()">Sort</button>
<h1><strong>Benchmarks</strong></h1>
<p><a href="https://bubbajuice.github.io/benchmarks" class="link">Benchmarks</a> <a href="https://bubbajuice.github.io/apps" class="link">Apps</a> <a href="https://bubbajuice.github.io/" class="link">Home</a> <a href="https://bubbajuice.github.io/gcstats" class="link">Geocaching Stats</a></p>
<hr>
<p>
<a href="https://bubbajuice.github.io/benchmarks/types/usgs" class="link">The Evolution of USGS Benchmarks</a>
<br>
<a href="https://bubbajuice.github.io/benchmarks/datum/nogls" class="link">USGS NOGLS Datum</a>
<br>
<a href="https://bubbajuice.github.io/guessing" class="link">Benchmark Finding Game</a>
</p>
<p>
Here is a list of benchmarks that I have personally recovered that are still there.
</p>
<input type="text" id="searchCriteria" placeholder="Search names...">
<select id="sortCriteria">
<option value="original">Original</option>
<option value="ngs-id">NGS ID</option>
<option value="mon">Date monumented</option>
<option value="agency">Agency</option>
<option value="rr">Last found</option>
<option value="setting">Setting</option>
<option value="con">Condition</option>
<option value="type">Type</option>
<option value="name">Name</option>
<option value="material">Material</option>
</select>
<select id="agencyCriteria" style="display:none;">
<option value="1">USGS</option>
<option value="2">USC&GS</option>
<option value="3">NGS</option>
<option value="4">USAFGS</option>
<option value="5">BLM</option>
<option value="6">USACE</option>
<option value="7">GLO</option>
</select>
<select id="typeCriteria" style="display:none;">
<option value="1">USGS bolt</option>
<option value="2">USGS "plus" disk</option>
<option value="3">USGS "plus" pipe</option>
<option value="4">USGS "plus" disk with state</option>
<option value="5">USGS triangulation no BM</option>
<option value="6">USGS triangulation with BM</option>
<option value="7">USGS triangulation with state no BM</option>
<option value="8">USGS 1907-1932 disk</option>
<option value="9">USGS 1907-1932 pipe</option>
<option value="10">USGS "in cooperation with the state of"</option>
<option value="11">USGS 1932-1962 no datum</option>
<option value="12">USGS DOI 1962-</option>
<option value="13">USGS old reference</option>
<option value="14">USGS newer reference</option>
<option value="15">USGS DOI reference</option>
<option value="16">USGS DOI gaging station</option>
<option value="17">USGS other</option>
<option value="18">Marking in a rock (or other unspecified surface)</option>
<option value="19">unmarked bolt</option>
<option value="20">unmarked washer (and nail)</option>
<option value="21">USGS washer</option>
<option value="22">stone washer</option>
<option value="23">metal monument</option>
<option value="24">CGS triangulation ~2.5 cm triangle variant ~1910-1912</option>
<option value="25">CGS triangulation ~2 cm triangle variant 1909-1922</option>
<option value="26">CGS triangulation ~2 cm triangle variant large lettering</option>
<option value="27">CGS triangulation 1919-1972 original ~2 cm triangle</option>
<option value="28">CGS triangulation 1919-1972 ~1 cm triangle</option>
<option value="45">CGS vertical: slash</option>
<option value="69">CGS vertial: triple cross</option>
<option value="70">CGS vertial: single cross</option>
<option value="72">NGS vertical</option>
<option value="29">NGS horizontal control</option>
<option value="30">CGS flat 1913-1922 reference</option>
<option value="31">CGS concave 1919-1972 reference</option>
<option value="32">CGS short arrow reference</option>
<option value="33">NGS reference</option>
<option value="34">CGS azimuth original arrow 1935-1972</option>
<option value="35">CGS azimuth shorter arrow</option>
<option value="36">NGS azimuth</option>
<option value="37">CGS gravity hexagon</option>
<option value="71">CGS gravity circle</option>
<option value="38">NGS gravity</option>
<option value="39">CGS gravity reference (hexagon)</option>
<option value="40">CGS tidal</option>
<option value="41">CGS cup style plus disk (1900-1913)</option>
<option value="42">CGS cup style triangle disk (1900-1913)</option>
<option value="43">CGS cup style blank disk (1900-1913)</option>
<option value="44">CGS WWII Cast Iron Disk</option>
<option value="46">CGS topographic</option>
<option value="47">CGS traverse</option>
<option value="48">CGS meridian</option>
<option value="49">CGS magnetic</option>
<option value="50">CGS state survey</option>
<option value="51">USACE</option>
<option value="52">USACE war department</option>
<option value="53">USACE other</option>
<option value="54">USCE pipe</option>
<option value="55">air forces geodetic survey marker</option>
<option value="56">NOS marker</option>
<option value="57">DOI marker (not USGS)</option>
<option value="58">DOI marker Bureau of Land Management</option>
<option value="59">GLO pipe plus</option>
<option value="73">GLO pipe "T"</option>
<option value="60">GLO pipe line</option>
<option value="61">regional survey marker (except below)</option>
<option value="62">regional survey triangulation</option>
<option value="63">regional survey reference</option>
<option value="64">regional survey azimuth</option>
<option value="65">unmarked rod</option>
<option value="66">NGS rod</option>
<option value="67">other agency rod</option>
<option value="68">boundary disk</option>
</select>
<button onclick="sortBenchmarks()">Sort</button>
</center>
<br>
<div id="benchmarksContainer">
Expand Down Expand Up @@ -1860,6 +1883,20 @@ <h1><strong>Benchmarks</strong></h1>
</div>
</div>
<script>
let mybutton = document.getElementById("myBtn");
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}

document.getElementById("sortCriteria").addEventListener("change", function() {
var sortCriteria = this.value;
var agencyCriteriaDropdown = document.getElementById("agencyCriteria");
Expand Down
Binary file added benchmarks/images/guess1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f9baa8a

Please sign in to comment.