Working with polygons
using SpeciesDistributionToolkit
using CairoMakie
In this tutorial, we will mask a layer using information from a polygon, then use the same polygon to mask occurrence records.
About coordinates
GeoJSON coordinates are expressed in WGS84. For this reason, any polygon is assumed to be in this CRS, and all operations will be done by projecting the layer coordinates to this CRS.
We provide a very lightweight tool that uses open street map to turn plain text queries into polygons:
POL = getpolygon(PolygonData(OpenStreetMap, Places); place="Idaho")
lines(POL)
Note that if these polygons are too big, the simplify
and simplify!
methods (which are not exported) can be used to reduce their complexity.
The next step is to get a layer, and so we will download the data about deciduous broadleaf trees from EarthEnv:
provider = RasterData(EarthEnv, LandCover)
layer = SDMLayer(
provider;
layer = "Shrubs",
SpeciesDistributionToolkit.boundingbox(POL; padding=1.0)...
)
🗺️ A 1083 × 985 layer with 1066755 UInt8 cells
Projection: +proj=longlat +datum=WGS84 +no_defs
We can check that this polygon is larger than the area we want:
Code for the figure
heatmap(layer; colormap = :Greens, axis = (; aspect = DataAspect()))
lines!(POL, color=:black)
We can now mask this layer according to the polygon. This uses the same mask!
method we use when masking with another layer:
mask!(layer, POL)
🗺️ A 1083 × 985 layer with 352037 UInt8 cells
Projection: +proj=longlat +datum=WGS84 +no_defs
Code for the figure
heatmap(layer; colormap = :Greens, axis = (; aspect = DataAspect()))
lines!(POL, color=:black)
This is a much larger layer than we need! For this reason, we will trim it so that the empty areas are removed. The trim
method works on a layer and will return a copy of it (as opposed to modifying it in place).
Code for the figure
heatmap(
trim(layer);
colormap = :Greens,
axis = (; aspect = DataAspect()),
)
lines!(POL, color=:black)
Let's now get some occurrences. The demonstration data from OccurrencesInterface
are records of sightings of bigfoot (Lozier et al., 2009). These are useful data to think about species distribution modeling in slightly more abstract terms than using data on existing species, and slighty less abstract terms than simulated data (Foxon, 2024).
presences = OccurrencesInterface.__demodata()
Occurrences(Occurrence[Occurrence("Sasquatch", true, (-142.9, 61.5), DateTime("2000-06-16T12:00:00")), Occurrence("Sasquatch", true, (-132.7982, 55.1872), DateTime("1995-05-15T12:00:00")), Occurrence("Sasquatch", true, (-132.8202, 55.2035), DateTime("2004-02-09T12:00:00")), Occurrence("Sasquatch", true, (-141.5667, 62.9375), DateTime("2004-06-18T12:00:00")), Occurrence("Sasquatch", true, (-149.7853, 61.0595), DateTime("2004-02-15T12:00:00")), Occurrence("Sasquatch", true, (-141.3165, 62.77335), DateTime("2008-04-23T12:00:00")), Occurrence("Sasquatch", true, (-147.8142, 64.89139), DateTime("2009-07-15T12:00:00")), Occurrence("Sasquatch", true, (-145.3427, 61.96802), DateTime("2022-05-15T12:00:00")), Occurrence("Sasquatch", true, (-85.16235, 32.31435), DateTime("1981-09-15T12:00:00")), Occurrence("Sasquatch", true, (-87.32655, 33.28375), DateTime("1999-07-15T12:00:00")), Occurrence("Sasquatch", true, (-86.4559, 34.95605), DateTime("1983-11-15T12:00:00")), Occurrence("Sasquatch", true, (-86.66465, 34.5422), DateTime("2000-10-10T12:00:00")), Occurrence("Sasquatch", true, (-87.02025, 34.9263), DateTime("1993-08-20T12:00:00")), Occurrence("Sasquatch", true, (-87.50905, 34.80405), DateTime("1999-11-15T12:00:00")), Occurrence("Sasquatch", true, (-87.1105, 34.92855), DateTime("1978-04-15T12:00:00")), Occurrence("Sasquatch", true, (-88.17885, 33.13195), DateTime("1980-11-15T12:00:00")), Occurrence("Sasquatch", true, (-88.08305, 31.4515), DateTime("1997-01-06T12:00:00")), Occurrence("Sasquatch", true, (-87.45876, 33.97575), DateTime("1990-09-15T12:00:00")), Occurrence("Sasquatch", true, (-87.96095, 31.58255), DateTime("1996-12-05T12:00:00")), Occurrence("Sasquatch", true, (-86.6333, 34.4881), DateTime("2000-06-01T12:00:00")), Occurrence("Sasquatch", true, (-87.00665, 34.6802), DateTime("2001-10-15T12:00:00")), Occurrence("Sasquatch", true, (-87.09069, 31.16), DateTime("2000-02-10T12:00:00")), Occurrence("Sasquatch", true, (-88.14999, 33.13), DateTime("2007-09-01T12:00:00")), Occurrence("Sasquatch", true, (-87.35664, 33.21145), DateTime("2003-08-30T12:00:00")), Occurrence("Sasquatch", true, (-87.31821, 33.26035), DateTime("2003-06-28T12:00:00")), Occurrence("Sasquatch", true, (-86.52105, 34.7325), DateTime("2004-05-28T12:00:00")), Occurrence("Sasquatch", true, (-85.4258, 32.6218), DateTime("2003-11-26T12:00:00")), Occurrence("Sasquatch", true, (-86.64066, 33.3674), DateTime("2004-05-09T12:00:00")), Occurrence("Sasquatch", true, (-86.4664, 33.6205), DateTime("2004-09-30T12:00:00")), Occurrence("Sasquatch", true, (-86.7891, 33.8132), DateTime("1979-09-15T12:00:00")), Occurrence("Sasquatch", true, (-87.24547, 32.30673), DateTime("2006-09-10T12:00:00")), Occurrence("Sasquatch", true, (-86.99782, 31.00002), DateTime("2006-07-06T12:00:00")), Occurrence("Sasquatch", true, (-85.705, 32.43), DateTime("2007-05-19T12:00:00")), Occurrence("Sasquatch", true, (-85.625, 33.35), DateTime("2007-04-22T12:00:00")), Occurrence("Sasquatch", true, (-86.17524, 34.27607), DateTime("1992-08-15T12:00:00")), Occurrence("Sasquatch", true, (-86.5, 33.59), DateTime("2007-07-18T12:00:00")), Occurrence("Sasquatch", true, (-86.581, 32.184), DateTime("2001-04-13T12:00:00")), Occurrence("Sasquatch", true, (-86.17122, 33.36305), DateTime("1999-11-23T12:00:00")), Occurrence("Sasquatch", true, (-86.6575, 34.71139), DateTime("2009-02-24T12:00:00")), Occurrence("Sasquatch", true, (-87.91833, 30.7113), DateTime("1979-09-14T12:00:00")), Occurrence("Sasquatch", true, (-86.4891, 32.76967), DateTime("2000-05-13T12:00:00")), Occurrence("Sasquatch", true, (-85.35995, 31.86801), DateTime("1980-01-12T12:00:00")), Occurrence("Sasquatch", true, (-87.53395, 33.8957), DateTime("2010-03-12T12:00:00")), Occurrence("Sasquatch", true, (-87.53395, 33.8957), DateTime("1990-05-15T12:00:00")), Occurrence("Sasquatch", true, (-87.77686, 34.70112), DateTime("2005-01-12T12:00:00")), Occurrence("Sasquatch", true, (-87.06486, 31.13586), DateTime("1983-10-14T12:00:00")), Occurrence("Sasquatch", true, (-86.54527, 31.34781), DateTime("1978-10-10T12:00:00")), Occurrence("Sasquatch", true, (-88.12475, 33.41574), DateTime("2012-05-21T12:00:00")), Occurrence("Sasquatch", true, (-88.26291, 31.25385), DateTime("2008-02-15T12:00:00")), Occurrence("Sasquatch", true, (-85.48985, 33.82162), DateTime("2012-11-01T12:00:00")), Occurrence("Sasquatch", true, (-86.5045, 34.32279), DateTime("2012-08-15T12:00:00")), Occurrence("Sasquatch", true, (-86.56954, 34.47091), DateTime("2013-03-16T12:00:00")), Occurrence("Sasquatch", true, (-86.88621, 34.29511), DateTime("2013-01-23T12:00:00")), Occurrence("Sasquatch", true, (-86.37698, 32.48322), DateTime("2013-10-15T12:00:00")), Occurrence("Sasquatch", true, (-86.98473, 33.55153), DateTime("2013-10-02T12:00:00")), Occurrence("Sasquatch", true, (-85.9793, 32.91874), DateTime("2014-03-30T12:00:00")), Occurrence("Sasquatch", true, (-87.6942, 33.37095), DateTime("2014-12-27T12:00:00")), Occurrence("Sasquatch", true, (-85.19265, 31.651), DateTime("2014-12-31T12:00:00")), Occurrence("Sasquatch", true, (-86.96416, 34.00806), DateTime("2014-06-09T12:00:00")), Occurrence("Sasquatch", true, (-85.22781, 34.14117), DateTime("2014-06-17T12:00:00")), Occurrence("Sasquatch", true, (-85.21574, 31.23374), DateTime("2014-09-17T12:00:00")), Occurrence("Sasquatch", true, (-85.7944, 31.53475), DateTime("2013-01-28T12:00:00")), Occurrence("Sasquatch", true, (-86.84557, 33.89833), DateTime("2014-01-14T12:00:00")), Occurrence("Sasquatch", true, (-88.31126, 31.24305), DateTime("2020-04-16T12:00:00")), Occurrence("Sasquatch", true, (-85.41961, 33.64341), DateTime("2020-06-15T12:00:00")), Occurrence("Sasquatch", true, (-85.52335, 33.65175), DateTime("2023-02-09T12:00:00")), Occurrence("Sasquatch", true, (-92.34083, 34.55056), DateTime("2001-08-11T12:00:00")), Occurrence("Sasquatch", true, (-92.38222, 36.19444), DateTime("1972-11-05T12:00:00")), Occurrence("Sasquatch", true, (-92.385, 36.33528), DateTime("1995-05-15T12:00:00")), Occurrence("Sasquatch", true, (-93.0, 34.08), DateTime("1996-10-15T12:00:00")), Occurrence("Sasquatch", true, (-93.1, 34.25), DateTime("1998-10-29T12:00:00")), Occurrence("Sasquatch", true, (-94.3643, 33.76986), DateTime("1969-08-16T12:00:00")), Occurrence("Sasquatch", true, (-91.735, 34.787), DateTime("2001-08-11T12:00:00")), Occurrence("Sasquatch", true, (-90.51056, 36.12083), DateTime("1988-01-10T12:00:00")), Occurrence("Sasquatch", true, (-92.03389, 33.82111), DateTime("2001-07-29T12:00:00")), Occurrence("Sasquatch", true, (-93.83426, 35.9975), DateTime("1970-06-15T12:00:00")), Occurrence("Sasquatch", true, (-93.15208, 35.42097), DateTime("1998-11-15T12:00:00")), Occurrence("Sasquatch", true, (-93.20389, 33.88861), DateTime("1984-04-17T12:00:00")), Occurrence("Sasquatch", true, (-93.886, 33.26666), DateTime("2000-01-15T12:00:00")), Occurrence("Sasquatch", true, (-91.1125, 36.19791), DateTime("1977-09-25T12:00:00")), Occurrence("Sasquatch", true, (-92.58667, 34.56444), DateTime("1994-10-15T12:00:00")), Occurrence("Sasquatch", true, (-91.87, 36.37111), DateTime("1997-03-14T12:00:00")), Occurrence("Sasquatch", true, (-94.23417, 36.20611), DateTime("2002-10-10T12:00:00")), Occurrence("Sasquatch", true, (-94.45417, 34.70694), DateTime("1998-07-07T12:00:00")), Occurrence("Sasquatch", true, (-94.44694, 36.18333), DateTime("2004-04-04T12:00:00")), Occurrence("Sasquatch", true, (-91.45889, 35.64861), DateTime("1999-11-15T12:00:00")), Occurrence("Sasquatch", true, (-93.94583, 36.34167), DateTime("2003-10-31T12:00:00")), Occurrence("Sasquatch", true, (-91.08056, 34.88111), DateTime("1961-10-15T12:00:00")), Occurrence("Sasquatch", true, (-93.13361, 35.27833), DateTime("2003-08-12T12:00:00")), Occurrence("Sasquatch", true, (-93.9475, 33.18639), DateTime("2004-02-19T12:00:00")), Occurrence("Sasquatch", true, (-92.40778, 34.53167), DateTime("2004-04-03T12:00:00")), Occurrence("Sasquatch", true, (-94.356, 35.09306), DateTime("2004-04-23T12:00:00")), Occurrence("Sasquatch", true, (-91.27056, 33.7985), DateTime("2001-05-15T12:00:00")), Occurrence("Sasquatch", true, (-93.74, 36.41), DateTime("1994-07-16T12:00:00")), Occurrence("Sasquatch", true, (-91.51306, 35.44944), DateTime("1986-07-15T12:00:00")), Occurrence("Sasquatch", true, (-92.61493, 33.14663), DateTime("2002-11-05T12:00:00")), Occurrence("Sasquatch", true, (-92.12, 34.87), DateTime("1975-09-15T12:00:00")), Occurrence("Sasquatch", true, (-93.75723, 36.31519), DateTime("1981-07-15T12:00:00")), Occurrence("Sasquatch", true, (-92.64066, 33.26462), DateTime("2005-05-07T12:00:00")), Occurrence("Sasquatch", true, (-93.162, 34.285), DateTime("2005-12-04T12:00:00")), Occurrence("Sasquatch", true, (-93.75313, 35.34572), DateTime("1986-06-01T12:00:00")), Occurrence("Sasquatch", true, (-90.32, 35.0194), DateTime("1980-06-15T12:00:00")), Occurrence("Sasquatch", true, (-94.3745, 34.369), DateTime("2004-10-15T12:00:00")), Occurrence("Sasquatch", true, (-93.07654, 34.44652), DateTime("1992-06-14T12:00:00")), Occurrence("Sasquatch", true, (-93.89135, 33.14759), DateTime("1996-11-15T12:00:00")), Occurrence("Sasquatch", true, (-94.229, 35.36335), DateTime("2010-03-23T12:00:00")), Occurrence("Sasquatch", true, (-92.63179, 36.29871), DateTime("2004-01-14T12:00:00")), Occurrence("Sasquatch", true, (-92.75093, 34.73147), DateTime("2010-11-18T12:00:00")), Occurrence("Sasquatch", true, (-91.22115, 33.26855), DateTime("2012-07-29T12:00:00")), Occurrence("Sasquatch", true, (-93.98622, 33.33171), DateTime("2012-09-13T12:00:00")), Occurrence("Sasquatch", true, (-92.52505, 36.14065), DateTime("2012-12-04T12:00:00")), Occurrence("Sasquatch", true, (-91.52025, 36.33205), DateTime("2008-01-15T12:00:00")), Occurrence("Sasquatch", true, (-92.3575, 34.86535), DateTime("2012-12-07T12:00:00")), Occurrence("Sasquatch", true, (-92.30614, 36.38605), DateTime("2009-02-15T12:00:00")), Occurrence("Sasquatch", true, (-91.46231, 35.703), DateTime("2011-11-24T12:00:00")), Occurrence("Sasquatch", true, (-91.60007, 35.34737), DateTime("2015-12-28T12:00:00")), Occurrence("Sasquatch", true, (-92.27071, 36.37399), DateTime("2003-12-15T12:00:00")), Occurrence("Sasquatch", true, (-91.50301, 35.255), DateTime("2015-11-26T12:00:00")), Occurrence("Sasquatch", true, (-94.1125, 34.4125), DateTime("2016-12-02T12:00:00")), Occurrence("Sasquatch", true, (-92.25454, 34.85324), DateTime("2017-02-10T12:00:00")), Occurrence("Sasquatch", true, (-92.57542, 34.20873), DateTime("1973-04-15T12:00:00")), Occurrence("Sasquatch", true, (-92.30519, 34.92336), DateTime("1976-09-15T12:00:00")), Occurrence("Sasquatch", true, (-90.1355, 35.738), DateTime("2006-06-17T12:00:00")), Occurrence("Sasquatch", true, (-93.206, 35.186), DateTime("1976-08-14T12:00:00")), Occurrence("Sasquatch", true, (-93.1545, 36.042), DateTime("2018-07-22T12:00:00")), Occurrence("Sasquatch", true, (-93.448, 36.3025), DateTime("1997-05-10T12:00:00")), Occurrence("Sasquatch", true, (-93.56799, 33.66554), DateTime("1978-05-15T12:00:00")), Occurrence("Sasquatch", true, (-91.07266, 34.17376), DateTime("1979-06-14T12:00:00")), Occurrence("Sasquatch", true, (-94.036, 33.387), DateTime("1990-06-17T12:00:00")), Occurrence("Sasquatch", true, (-91.21842, 35.94871), DateTime("2012-12-15T12:00:00")), Occurrence("Sasquatch", true, (-110.1835, 31.99003), DateTime("2000-10-10T12:00:00")), Occurrence("Sasquatch", true, (-110.8403, 34.90831), DateTime("2000-12-24T12:00:00")), Occurrence("Sasquatch", true, (-109.4276, 36.09081), DateTime("2001-06-17T12:00:00")), Occurrence("Sasquatch", true, (-111.5, 34.4), DateTime("1983-12-30T12:00:00")), Occurrence("Sasquatch", true, (-109.3191, 33.6247), DateTime("1993-09-04T12:00:00")), Occurrence("Sasquatch", true, (-109.29, 36.54165), DateTime("1981-11-07T12:00:00")), Occurrence("Sasquatch", true, (-111.938, 35.656), DateTime("1990-07-01T12:00:00")), Occurrence("Sasquatch", true, (-109.64, 34.325), DateTime("2006-10-26T12:00:00")), Occurrence("Sasquatch", true, (-109.675, 32.815), DateTime("2007-01-22T12:00:00")), Occurrence("Sasquatch", true, (-109.44, 34.6), DateTime("2007-02-01T12:00:00")), Occurrence("Sasquatch", true, (-111.69, 33.85), DateTime("1995-07-15T12:00:00")), Occurrence("Sasquatch", true, (-110.4298, 33.99989), DateTime("2006-10-15T12:00:00")), Occurrence("Sasquatch", true, (-112.6432, 33.3785), DateTime("2008-07-29T12:00:00")), Occurrence("Sasquatch", true, (-111.1367, 34.28939), DateTime("2006-11-17T12:00:00")), Occurrence("Sasquatch", true, (-111.8634, 35.241), DateTime("1973-12-20T12:00:00")), Occurrence("Sasquatch", true, (-110.165, 34.1), DateTime("2010-03-24T12:00:00")), Occurrence("Sasquatch", true, (-112.5421, 34.55154), DateTime("1981-08-15T12:00:00")), Occurrence("Sasquatch", true, (-110.0, 34.0), DateTime("2011-05-31T12:00:00")), Occurrence("Sasquatch", true, (-112.73, 32.95), DateTime("1992-08-15T12:00:00")), Occurrence("Sasquatch", true, (-110.11, 34.285), DateTime("2014-04-22T12:00:00")), Occurrence("Sasquatch", true, (-109.25, 35.175), DateTime("2021-06-10T12:00:00")), Occurrence("Sasquatch", true, (-119.6436, 37.35944), DateTime("1988-10-01T12:00:00")), Occurrence("Sasquatch", true, (-119.9833, 38.93333), DateTime("2000-06-15T12:00:00")), Occurrence("Sasquatch", true, (-120.0914, 38.9575), DateTime("2000-09-23T12:00:00")), Occurrence("Sasquatch", true, (-124.1625, 40.80222), DateTime("1957-06-01T12:00:00")), Occurrence("Sasquatch", true, (-119.836, 38.28085), DateTime("1997-11-15T12:00:00")), Occurrence("Sasquatch", true, (-121.9139, 40.33556), DateTime("1968-11-01T12:00:00")), Occurrence("Sasquatch", true, (-119.2119, 37.23389), DateTime("1997-12-18T12:00:00")), Occurrence("Sasquatch", true, (-119.9065, 38.17677), DateTime("1994-06-01T12:00:00")), Occurrence("Sasquatch", true, (-120.6781, 41.41), DateTime("1974-06-01T12:00:00")), Occurrence("Sasquatch", true, (-120.205, 38.93), DateTime("2000-07-01T12:00:00")), Occurrence("Sasquatch", true, (-119.9833, 38.93333), DateTime("1996-04-10T12:00:00")), Occurrence("Sasquatch", true, (-120.1358, 38.86), DateTime("1993-04-01T12:00:00")), Occurrence("Sasquatch", true, (-118.9975, 37.35861), DateTime("1995-10-29T12:00:00")), Occurrence("Sasquatch", true, (-120.1877, 38.06615), DateTime("1978-08-01T12:00:00")), Occurrence("Sasquatch", true, (-118.8489, 36.10222), DateTime("1955-08-01T12:00:00")), Occurrence("Sasquatch", true, (-119.9811, 38.19753), DateTime("1978-07-30T12:00:00")), Occurrence("Sasquatch", true, (-122.4306, 41.45833), DateTime("1999-03-04T12:00:00")), Occurrence("Sasquatch", true, (-122.3839, 41.42806), DateTime("1966-09-01T12:00:00")), Occurrence("Sasquatch", true, (-119.2642, 38.04806), DateTime("1977-07-01T12:00:00")), Occurrence("Sasquatch", true, (-122.7325, 40.63556), DateTime("1978-10-01T12:00:00")), Occurrence("Sasquatch", true, (-120.2339, 38.03898), DateTime("1983-10-25T12:00:00")), Occurrence("Sasquatch", true, (-118.1303, 36.05278), DateTime("1987-05-31T12:00:00")), Occurrence("Sasquatch", true, (-119.8633, 38.26661), DateTime("1993-06-15T12:00:00")), Occurrence("Sasquatch", true, (-122.9958, 41.82417), DateTime("1944-08-01T12:00:00")), Occurrence("Sasquatch", true, (-123.1317, 41.3657), DateTime("2000-07-20T12:00:00")), Occurrence("Sasquatch", true, (-122.5833, 38.25583), DateTime("1991-01-01T12:00:00")), Occurrence("Sasquatch", true, (-120.8908, 39.21278), DateTime("1978-06-01T12:00:00")), Occurrence("Sasquatch", true, (-119.2569, 37.91111), DateTime("1998-08-01T12:00:00")), Occurrence("Sasquatch", true, (-116.8625, 33.2675), DateTime("1993-07-04T12:00:00")), Occurrence("Sasquatch", true, (-122.2703, 41.21361), DateTime("2001-06-15T12:00:00")), Occurrence("Sasquatch", true, (-120.2653, 39.3225), DateTime("1956-10-01T12:00:00")), Occurrence("Sasquatch", true, (-121.6156, 40.92911), DateTime("1994-09-15T12:00:00")), Occurrence("Sasquatch", true, (-123.4817, 39.68833), DateTime("1987-06-01T12:00:00")), Occurrence("Sasquatch", true, (-120.0133, 38.85556), DateTime("2003-07-20T12:00:00")), Occurrence("Sasquatch", true, (-119.9833, 38.93333), DateTime("1983-01-01T12:00:00")), Occurrence("Sasquatch", true, (-123.8692, 40.26639), DateTime("1963-08-01T12:00:00")), Occurrence("Sasquatch", true, (-123.8692, 40.26639), DateTime("1965-07-01T12:00:00")), Occurrence("Sasquatch", true, (-121.495, 36.2485), DateTime("1993-04-01T12:00:00")), Occurrence("Sasquatch", true, (-122.3775, 40.8875), DateTime("1977-08-01T12:00:00")), Occurrence("Sasquatch", true, (-122.1781, 39.92778), DateTime("1973-10-15T12:00:00")), Occurrence("Sasquatch", true, (-121.0161, 39.26361), DateTime("2004-01-04T12:00:00")), Occurrence("Sasquatch", true, (-123.4817, 39.68833), DateTime("1974-09-01T12:00:00")), Occurrence("Sasquatch", true, (-123.7675, 39.22361), DateTime("1966-09-01T12:00:00")), Occurrence("Sasquatch", true, (-118.972, 37.5703), DateTime("1972-09-15T12:00:00")), Occurrence("Sasquatch", true, (-120.5836, 38.72139), DateTime("2003-09-01T12:00:00")), Occurrence("Sasquatch", true, (-121.58, 39.205), DateTime("1965-07-01T12:00:00")), Occurrence("Sasquatch", true, (-124.0, 40.465), DateTime("1992-07-12T12:00:00")), Occurrence("Sasquatch", true, (-119.2119, 37.23389), DateTime("2001-10-25T12:00:00")), Occurrence("Sasquatch", true, (-118.7402, 36.0438), DateTime("2000-05-01T12:00:00")), Occurrence("Sasquatch", true, (-120.3275, 39.31917), DateTime("2004-08-16T12:00:00")), Occurrence("Sasquatch", true, (-120.2434, 38.0312), DateTime("2003-12-24T12:00:00")), Occurrence("Sasquatch", true, (-121.7, 37.0), DateTime("2004-10-01T12:00:00")), Occurrence("Sasquatch", true, (-122.1667, 40.75), DateTime("1997-07-15T12:00:00")), Occurrence("Sasquatch", true, (-123.55, 40.85), DateTime("1988-10-15T12:00:00")), Occurrence("Sasquatch", true, (-120.6033, 38.90333), DateTime("2004-11-01T12:00:00")), Occurrence("Sasquatch", true, (-120.201, 36.7818), DateTime("1991-06-28T12:00:00")), Occurrence("Sasquatch", true, (-122.278, 40.7974), DateTime("2001-03-15T12:00:00")), Occurrence("Sasquatch", true, (-121.2919, 35.5565), DateTime("1974-04-15T12:00:00")), Occurrence("Sasquatch", true, (-121.7146, 36.3779), DateTime("1986-06-15T12:00:00")), Occurrence("Sasquatch", true, (-123.35, 41.75), DateTime("1967-03-10T12:00:00")), Occurrence("Sasquatch", true, (-119.5483, 38.3068), DateTime("2005-08-21T12:00:00")), Occurrence("Sasquatch", true, (-121.0517, 39.25396), DateTime("1987-09-15T12:00:00")), Occurrence("Sasquatch", true, (-123.85, 41.65), DateTime("1979-10-25T12:00:00")), Occurrence("Sasquatch", true, (-123.2718, 40.7485), DateTime("2003-09-15T12:00:00")), Occurrence("Sasquatch", true, (-123.35, 41.75), DateTime("1993-12-15T12:00:00")), Occurrence("Sasquatch", true, (-121.4871, 37.39555), DateTime("1869-11-10T12:00:00")), Occurrence("Sasquatch", true, (-120.3784, 39.50435), DateTime("1993-09-05T12:00:00")), Occurrence("Sasquatch", true, (-122.8055, 40.6789), DateTime("1982-08-09T12:00:00")), Occurrence("Sasquatch", true, (-120.2201, 38.86165), DateTime("2005-08-20T12:00:00")), Occurrence("Sasquatch", true, (-118.9166, 37.58325), DateTime("2006-06-17T12:00:00")), Occurrence("Sasquatch", true, (-124.0687, 41.21385), DateTime("2006-10-21T12:00:00")), Occurrence("Sasquatch", true, (-122.6667, 40.7333), DateTime("2007-04-18T12:00:00")), Occurrence("Sasquatch", true, (-121.7138, 38.4906), DateTime("1980-10-11T12:00:00")), Occurrence("Sasquatch", true, (-123.1668, 41.8333), DateTime("2007-09-11T12:00:00")), Occurrence("Sasquatch", true, (-118.4333, 34.6167), DateTime("2007-10-10T12:00:00")), Occurrence("Sasquatch", true, (-123.056, 41.28996), DateTime("1998-08-03T12:00:00")), Occurrence("Sasquatch", true, (-123.2393, 39.83929), DateTime("2007-12-15T12:00:00")), Occurrence("Sasquatch", true, (-119.0, 37.9333), DateTime("2008-07-09T12:00:00")), Occurrence("Sasquatch", true, (-123.3899, 39.51489), DateTime("2008-07-08T12:00:00")), Occurrence("Sasquatch", true, (-119.7853, 38.33115), DateTime("1993-08-13T12:00:00")), Occurrence("Sasquatch", true, (-119.2916, 34.625), DateTime("2008-09-14T12:00:00")), Occurrence("Sasquatch", true, (-116.5333, 33.95002), DateTime("2008-12-01T12:00:00")), Occurrence("Sasquatch", true, (-118.375, 36.70835), DateTime("2008-10-27T12:00:00")), Occurrence("Sasquatch", true, (-121.07, 37.475), DateTime("1962-08-14T12:00:00")), Occurrence("Sasquatch", true, (-123.0585, 38.83996), DateTime("2007-09-08T12:00:00")), Occurrence("Sasquatch", true, (-118.125, 36.79165), DateTime("2009-01-12T12:00:00")), Occurrence("Sasquatch", true, (-119.9254, 34.73389), DateTime("1982-04-15T12:00:00")), Occurrence("Sasquatch", true, (-123.1749, 41.98645), DateTime("2009-06-03T12:00:00")), Occurrence("Sasquatch", true, (-120.2083, 38.79998), DateTime("2009-07-15T12:00:00")), Occurrence("Sasquatch", true, (-121.18, 39.705), DateTime("1993-09-30T12:00:00")), Occurrence("Sasquatch", true, (-118.5834, 34.76666), DateTime("2010-01-22T12:00:00")), Occurrence("Sasquatch", true, (-123.4498, 41.65925), DateTime("2010-04-22T12:00:00")), Occurrence("Sasquatch", true, (-120.55, 35.665), DateTime("1974-08-01T12:00:00")), Occurrence("Sasquatch", true, (-121.0, 38.25), DateTime("2010-10-25T12:00:00")), Occurrence("Sasquatch", true, (-122.575, 41.845), DateTime("2011-12-03T12:00:00")), Occurrence("Sasquatch", true, (-119.6234, 38.51665), DateTime("2012-09-23T12:00:00")), Occurrence("Sasquatch", true, (-117.3395, 34.28665), DateTime("2014-08-20T12:00:00")), Occurrence("Sasquatch", true, (-118.9604, 36.77763), DateTime("2015-05-16T12:00:00")), Occurrence("Sasquatch", true, (-121.7587, 37.62124), DateTime("1990-05-15T12:00:00")), Occurrence("Sasquatch", true, (-123.7879, 41.89288), DateTime("2019-03-15T12:00:00")), Occurrence("Sasquatch", true, (-121.8214, 40.64289), DateTime("2018-09-04T12:00:00")), Occurrence("Sasquatch", true, (-120.9851, 40.03728), DateTime("1992-08-15T12:00:00")), Occurrence("Sasquatch", true, (-120.0124, 38.21877), DateTime("2008-06-15T12:00:00")), Occurrence("Sasquatch", true, (-118.6271, 37.22716), DateTime("1991-07-15T12:00:00")), Occurrence("Sasquatch", true, (-114.4419, 50.4023), DateTime("1995-11-18T12:00:00")), Occurrence("Sasquatch", true, (-114.2347, 50.0865), DateTime("2003-11-15T12:00:00")), Occurrence("Sasquatch", true, (-114.3957, 55.26332), DateTime("1976-02-12T12:00:00")), Occurrence("Sasquatch", true, (-114.1397, 53.62819), DateTime("2005-04-15T12:00:00")), Occurrence("Sasquatch", true, (-115.8742, 52.51666), DateTime("1998-06-30T12:00:00")), Occurrence("Sasquatch", true, (-117.1638, 56.12543), DateTime("2008-01-23T12:00:00")), Occurrence("Sasquatch", true, (-113.0987, 53.92005), DateTime("1997-06-05T12:00:00")), Occurrence("Sasquatch", true, (-110.6488, 50.03888), DateTime("1972-08-26T12:00:00")), Occurrence("Sasquatch", true, (-114.0243, 49.01115), DateTime("2011-06-17T12:00:00")), Occurrence("Sasquatch", true, (-119.4058, 54.36361), DateTime("2004-04-07T12:00:00")), Occurrence("Sasquatch", true, (-116.0426, 50.84333), DateTime("2001-03-30T12:00:00")), Occurrence("Sasquatch", true, (-121.3177, 49.3402), DateTime("1999-09-14T12:00:00")), Occurrence("Sasquatch", true, (-119.665, 53.08), DateTime("2002-08-17T12:00:00")), Occurrence("Sasquatch", true, (-121.3324, 56.3321), DateTime("1965-10-20T12:00:00")), Occurrence("Sasquatch", true, (-122.1751, 50.80041), DateTime("2002-12-20T12:00:00")), Occurrence("Sasquatch", true, (-123.12, 59.61), DateTime("1987-04-13T12:00:00")), Occurrence("Sasquatch", true, (-123.2054, 49.94374), DateTime("2005-02-15T12:00:00")), Occurrence("Sasquatch", true, (-123.94, 49.54), DateTime("2005-03-08T12:00:00")), Occurrence("Sasquatch", true, (-123.8562, 49.51069), DateTime("2005-06-17T12:00:00")), Occurrence("Sasquatch", true, (-120.4736, 53.59444), DateTime("2005-08-14T12:00:00")), Occurrence("Sasquatch", true, (-122.0064, 54.23708), DateTime("1977-09-30T12:00:00")), Occurrence("Sasquatch", true, (-121.3976, 49.62125), DateTime("2005-09-10T12:00:00")), Occurrence("Sasquatch", true, (-119.8664, 49.09555), DateTime("2006-01-02T12:00:00")), Occurrence("Sasquatch", true, (-122.1171, 49.4068), DateTime("1985-07-31T12:00:00")), Occurrence("Sasquatch", true, (-121.525, 49.175), DateTime("1934-03-04T12:00:00")), Occurrence("Sasquatch", true, (-121.94, 49.24), DateTime("2006-03-02T12:00:00")), Occurrence("Sasquatch", true, (-117.8504, 49.28569), DateTime("1980-12-23T12:00:00")), Occurrence("Sasquatch", true, (-118.398, 51.05747), DateTime("1985-07-15T12:00:00")), Occurrence("Sasquatch", true, (-124.2872, 48.83319), DateTime("2006-06-20T12:00:00")), Occurrence("Sasquatch", true, (-123.6171, 48.56704), DateTime("2006-11-15T12:00:00")), Occurrence("Sasquatch", true, (-125.3675, 49.26528), DateTime("2007-03-30T12:00:00")), Occurrence("Sasquatch", true, (-122.6089, 49.0922), DateTime("1988-05-15T12:00:00")), Occurrence("Sasquatch", true, (-119.8076, 49.73385), DateTime("1974-07-15T12:00:00")), Occurrence("Sasquatch", true, (-115.5743, 50.29765), DateTime("2007-09-25T12:00:00")), Occurrence("Sasquatch", true, (-123.3647, 48.35765), DateTime("2008-10-02T12:00:00")), Occurrence("Sasquatch", true, (-118.188, 50.58304), DateTime("1978-08-15T12:00:00")), Occurrence("Sasquatch", true, (-127.735, 50.8604), DateTime("1992-10-15T12:00:00")), Occurrence("Sasquatch", true, (-124.6929, 49.4085), DateTime("1987-08-15T12:00:00")), Occurrence("Sasquatch", true, (-116.5133, 49.41289), DateTime("1993-07-30T12:00:00")), Occurrence("Sasquatch", true, (-117.9636, 49.20805), DateTime("1969-09-15T12:00:00")), Occurrence("Sasquatch", true, (-121.8461, 49.40372), DateTime("2016-09-12T12:00:00")), Occurrence("Sasquatch", true, (-129.1523, 56.03458), DateTime("2019-08-29T12:00:00")), Occurrence("Sasquatch", true, (-117.3797, 49.89706), DateTime("2020-12-25T12:00:00")), Occurrence("Sasquatch", true, (-98.03333, 50.25), DateTime("2005-03-14T12:00:00")), Occurrence("Sasquatch", true, (-96.17149, 50.5697), DateTime("1976-09-15T12:00:00")), Occurrence("Sasquatch", true, (-99.11815, 52.9884), DateTime("1990-09-24T12:00:00")), Occurrence("Sasquatch", true, (-97.595, 54.245), DateTime("2005-04-16T12:00:00")), Occurrence("Sasquatch", true, (-100.9129, 50.91725), DateTime("1965-07-15T12:00:00")), Occurrence("Sasquatch", true, (-101.274, 53.99), DateTime("2007-05-19T12:00:00")), Occurrence("Sasquatch", true, (-67.05334, 45.6746), DateTime("2002-07-28T12:00:00")), Occurrence("Sasquatch", true, (-64.4627, 45.98335), DateTime("2006-06-06T12:00:00")), Occurrence("Sasquatch", true, (-79.5985, 43.2114), DateTime("1978-08-19T12:00:00")), Occurrence("Sasquatch", true, (-79.1338, 45.01904), DateTime("2007-02-10T12:00:00")), Occurrence("Sasquatch", true, (-79.76308, 44.86073), DateTime("2007-01-29T12:00:00")), Occurrence("Sasquatch", true, (-81.00553, 49.16669), DateTime("2007-01-29T12:00:00")), Occurrence("Sasquatch", true, (-93.88194, 51.03445), DateTime("1990-10-27T12:00:00")), Occurrence("Sasquatch", true, (-80.60942, 43.62427), DateTime("2007-01-17T12:00:00")), Occurrence("Sasquatch", true, (-79.94618, 48.03027), DateTime("2007-01-12T12:00:00")), Occurrence("Sasquatch", true, (-75.63184, 44.53995), DateTime("2007-01-27T12:00:00")), Occurrence("Sasquatch", true, (-92.04907, 48.36266), DateTime("2007-03-05T12:00:00")), Occurrence("Sasquatch", true, (-94.02934, 49.40276), DateTime("2007-07-22T12:00:00")), Occurrence("Sasquatch", true, (-93.47855, 48.60385), DateTime("2007-08-31T12:00:00")), Occurrence("Sasquatch", true, (-94.5176, 52.6752), DateTime("1986-07-05T12:00:00")), Occurrence("Sasquatch", true, (-79.81129, 48.51035), DateTime("2006-09-01T12:00:00")), Occurrence("Sasquatch", true, (-76.4198, 44.61615), DateTime("2008-08-15T12:00:00")), Occurrence("Sasquatch", true, (-80.02915, 44.15255), DateTime("1990-05-04T12:00:00")), Occurrence("Sasquatch", true, (-80.66389, 44.30352), DateTime("1964-06-15T12:00:00")), Occurrence("Sasquatch", true, (-134.4837, 60.36933), DateTime("1978-08-01T12:00:00")), Occurrence("Sasquatch", true, (-135.1155, 60.69976), DateTime("2009-03-31T12:00:00")), Occurrence("Sasquatch", true, (-105.4979, 37.57915), DateTime("2000-08-20T12:00:00")), Occurrence("Sasquatch", true, (-105.8199, 39.67095), DateTime("2000-08-26T12:00:00")), Occurrence("Sasquatch", true, (-107.0153, 39.1084), DateTime("2000-08-23T12:00:00")), Occurrence("Sasquatch", true, (-105.9583, 40.79166), DateTime("1971-07-15T12:00:00")), Occurrence("Sasquatch", true, (-105.1058, 38.8922), DateTime("1999-09-11T12:00:00")), Occurrence("Sasquatch", true, (-105.0652, 39.21338), DateTime("1998-09-28T12:00:00")), Occurrence("Sasquatch", true, (-107.8833, 38.49833), DateTime("1977-05-01T12:00:00")), Occurrence("Sasquatch", true, (-106.4917, 37.30833), DateTime("1994-06-01T12:00:00")), Occurrence("Sasquatch", true, (-106.5123, 37.32255), DateTime("1997-07-13T12:00:00")), Occurrence("Sasquatch", true, (-104.9677, 39.42923), DateTime("1997-09-02T12:00:00")), Occurrence("Sasquatch", true, (-106.8085, 39.6632), DateTime("2000-03-21T12:00:00")), Occurrence("Sasquatch", true, (-104.9743, 38.8993), DateTime("1997-11-01T12:00:00")), Occurrence("Sasquatch", true, (-104.9908, 38.54166), DateTime("1998-04-14T12:00:00")), Occurrence("Sasquatch", true, (-106.4269, 39.18975), DateTime("1994-10-23T12:00:00")), Occurrence("Sasquatch", true, (-106.3833, 39.26944), DateTime("1975-07-20T12:00:00")), Occurrence("Sasquatch", true, (-105.3646, 40.57499), DateTime("1990-08-10T12:00:00")), Occurrence("Sasquatch", true, (-108.5417, 40.45418), DateTime("1991-07-02T12:00:00")), Occurrence("Sasquatch", true, (-107.7667, 37.75417), DateTime("1998-07-25T12:00:00")), Occurrence("Sasquatch", true, (-105.1598, 38.753), DateTime("1981-01-15T12:00:00")), Occurrence("Sasquatch", true, (-105.9333, 40.54167), DateTime("1996-09-20T12:00:00")), Occurrence("Sasquatch", true, (-106.2583, 39.24998), DateTime("1995-06-15T12:00:00")), Occurrence("Sasquatch", true, (-108.2083, 37.4625), DateTime("2001-09-08T12:00:00")), Occurrence("Sasquatch", true, (-105.1167, 38.4), DateTime("1987-10-26T12:00:00")), Occurrence("Sasquatch", true, (-104.8604, 38.6691), DateTime("1999-12-15T12:00:00")), Occurrence("Sasquatch", true, (-106.3, 39.25), DateTime("1971-09-15T12:00:00")), Occurrence("Sasquatch", true, (-106.2275, 39.32385), DateTime("1998-09-19T12:00:00")), Occurrence("Sasquatch", true, (-107.0671, 39.3375), DateTime("2001-02-20T12:00:00")), Occurrence("Sasquatch", true, (-106.6535, 40.4521), DateTime("1996-06-26T12:00:00")), Occurrence("Sasquatch", true, (-104.9917, 38.9006), DateTime("2001-06-30T12:00:00")), Occurrence("Sasquatch", true, (-105.4826, 37.5969), DateTime("1994-05-15T12:00:00")), Occurrence("Sasquatch", true, (-105.2155, 39.11636), DateTime("2005-03-19T12:00:00")), Occurrence("Sasquatch", true, (-106.8583, 37.025), DateTime("2003-04-11T12:00:00")), Occurrence("Sasquatch", true, (-104.3786, 37.09263), DateTime("2005-04-12T12:00:00")), Occurrence("Sasquatch", true, (-106.6417, 38.59998), DateTime("2003-09-04T12:00:00")), Occurrence("Sasquatch", true, (-106.4417, 39.0917), DateTime("2002-05-29T12:00:00")), Occurrence("Sasquatch", true, (-106.625, 39.45824), DateTime("2003-09-17T12:00:00")), Occurrence("Sasquatch", true, (-105.3542, 39.31667), DateTime("2005-02-04T12:00:00")), Occurrence("Sasquatch", true, (-107.7084, 38.875), DateTime("1994-09-15T12:00:00")), Occurrence("Sasquatch", true, (-105.1146, 38.826), DateTime("1977-07-04T12:00:00")), Occurrence("Sasquatch", true, (-105.298, 40.00817), DateTime("1995-11-01T12:00:00")), Occurrence("Sasquatch", true, (-105.2146, 39.0465), DateTime("1979-06-13T12:00:00")), Occurrence("Sasquatch", true, (-108.3364, 37.33925), DateTime("2004-10-15T12:00:00")), Occurrence("Sasquatch", true, (-107.9514, 39.16305), DateTime("1999-05-15T12:00:00")), Occurrence("Sasquatch", true, (-105.1137, 38.0654), DateTime("1998-07-25T12:00:00")), Occurrence("Sasquatch", true, (-105.3792, 40.17585), DateTime("1964-08-01T12:00:00")), Occurrence("Sasquatch", true, (-104.9426, 38.5859), DateTime("2006-05-15T12:00:00")), Occurrence("Sasquatch", true, (-106.1666, 39.7198), DateTime("1971-06-30T12:00:00")), Occurrence("Sasquatch", true, (-107.7247, 37.83905), DateTime("1989-04-01T12:00:00")), Occurrence("Sasquatch", true, (-104.875, 38.716), DateTime("1986-07-17T12:00:00")), Occurrence("Sasquatch", true, (-105.7854, 39.39565), DateTime("2002-12-15T12:00:00")), Occurrence("Sasquatch", true, (-106.5445, 39.1006), DateTime("2009-09-01T12:00:00")), Occurrence("Sasquatch", true, (-105.6385, 40.84707), DateTime("2009-09-22T12:00:00")), Occurrence("Sasquatch", true, (-106.496, 37.37285), DateTime("2009-06-10T12:00:00")), Occurrence("Sasquatch", true, (-106.199, 38.83714), DateTime("2010-08-15T12:00:00")), Occurrence("Sasquatch", true, (-107.7015, 37.70338), DateTime("2008-06-30T12:00:00")), Occurrence("Sasquatch", true, (-105.475, 39.40589), DateTime("2012-05-29T12:00:00")), Occurrence("Sasquatch", true, (-107.0596, 39.37357), DateTime("2013-01-17T12:00:00")), Occurrence("Sasquatch", true, (-106.3023, 39.80777), DateTime("2012-06-13T12:00:00")), Occurrence("Sasquatch", true, (-105.2527, 39.35503), DateTime("2014-03-02T12:00:00")), Occurrence("Sasquatch", true, (-105.4147, 39.52701), DateTime("2014-10-11T12:00:00")), Occurrence("Sasquatch", true, (-106.1444, 39.41087), DateTime("2019-07-25T12:00:00")), Occurrence("Sasquatch", true, (-105.2399, 40.17388), DateTime("2025-03-12T12:00:00")), Occurrence("Sasquatch", true, (-73.1512, 41.36935), DateTime("1953-08-01T12:00:00")), Occurrence("Sasquatch", true, (-73.36136, 41.49472), DateTime("2016-05-19T12:00:00")), Occurrence("Sasquatch", true, (-72.85863, 41.42178), DateTime("2018-08-04T12:00:00")), Occurrence("Sasquatch", true, (-72.60558, 41.38622), DateTime("2019-10-06T12:00:00")), Occurrence("Sasquatch", true, (-71.90106, 41.59272), DateTime("2019-10-15T12:00:00")), Occurrence("Sasquatch", true, (-73.3832, 41.39385), DateTime("2022-02-25T12:00:00")), Occurrence("Sasquatch", true, (-73.19593, 41.3848), DateTime("1976-06-03T12:00:00")), Occurrence("Sasquatch", true, (-85.6489, 30.98555), DateTime("1976-08-15T12:00:00")), Occurrence("Sasquatch", true, (-84.60745, 30.6645), DateTime("1994-12-18T12:00:00")), Occurrence("Sasquatch", true, (-80.21295, 26.5931), DateTime("1974-07-15T12:00:00")), Occurrence("Sasquatch", true, (-82.0332, 27.0047), DateTime("1962-08-15T12:00:00")), Occurrence("Sasquatch", true, (-81.52915, 30.2333), DateTime("2000-09-22T12:00:00")), Occurrence("Sasquatch", true, (-80.8595, 28.3725), DateTime("1989-09-15T12:00:00")), Occurrence("Sasquatch", true, (-80.1937, 26.27395), DateTime("1975-01-15T12:00:00")), Occurrence("Sasquatch", true, (-80.21025, 26.08285), DateTime("1980-07-15T12:00:00")), Occurrence("Sasquatch", true, (-81.75165, 30.05705), DateTime("1986-08-15T12:00:00")), Occurrence("Sasquatch", true, (-81.76041, 26.15915), DateTime("1983-11-19T12:00:00")), Occurrence("Sasquatch", true, (-80.8368, 26.06885), DateTime("1993-11-20T12:00:00")), Occurrence("Sasquatch", true, (-81.29691, 25.91695), DateTime("1997-07-17T12:00:00")), Occurrence("Sasquatch", true, (-82.98365, 29.6699), DateTime("1998-02-09T12:00:00")), Occurrence("Sasquatch", true, (-82.50591, 28.50665), DateTime("1969-06-15T12:00:00")), Occurrence("Sasquatch", true, (-85.217, 30.8724), DateTime("1990-08-15T12:00:00")), Occurrence("Sasquatch", true, (-81.62275, 29.10635), DateTime("1980-07-02T12:00:00")), Occurrence("Sasquatch", true, (-82.05835, 29.0599), DateTime("1977-10-05T12:00:00")), Occurrence("Sasquatch", true, (-81.90875, 29.1951), DateTime("1977-11-15T12:00:00")), Occurrence("Sasquatch", true, (-81.9233, 29.19395), DateTime("1997-07-25T12:00:00")), Occurrence("Sasquatch", true, (-86.5065, 30.51295), DateTime("1996-09-15T12:00:00")), Occurrence("Sasquatch", true, (-80.93504, 28.3609), DateTime("1999-03-13T12:00:00")), Occurrence("Sasquatch", true, (-81.12476, 27.97255), DateTime("1998-11-22T12:00:00")), Occurrence("Sasquatch", true, (-81.0621, 28.1382), DateTime("1999-05-21T12:00:00")), Occurrence("Sasquatch", true, (-81.19445, 27.99245), DateTime("1999-01-02T12:00:00")), Occurrence("Sasquatch", true, (-82.6053, 28.3836), DateTime("1984-06-15T12:00:00")), Occurrence("Sasquatch", true, (-80.93919, 28.85025), DateTime("1989-04-17T12:00:00")), Occurrence("Sasquatch", true, (-86.9648, 30.84015), DateTime("1982-01-15T12:00:00")), Occurrence("Sasquatch", true, (-81.3456, 29.85375), DateTime("1984-10-15T12:00:00")), Occurrence("Sasquatch", true, (-81.96195, 29.7351), DateTime("1971-07-15T12:00:00")), Occurrence("Sasquatch", true, (-81.8708, 26.59885), DateTime("1973-08-23T12:00:00")), Occurrence("Sasquatch", true, (-82.45165, 27.7068), DateTime("1984-06-16T12:00:00")), Occurrence("Sasquatch", true, (-81.5446, 28.6901), DateTime("1980-04-15T12:00:00")), Occurrence("Sasquatch", true, (-82.55556, 29.4179), DateTime("1991-06-15T12:00:00")), Occurrence("Sasquatch", true, (-82.3657, 29.77535), DateTime("1985-09-29T12:00:00")), Occurrence("Sasquatch", true, (-81.1273, 29.47035), DateTime("1974-08-15T12:00:00")), Occurrence("Sasquatch", true, (-81.0651, 26.01535), DateTime("2004-02-21T12:00:00")), Occurrence("Sasquatch", true, (-81.68295, 29.77295), DateTime("1947-07-01T12:00:00")), Occurrence("Sasquatch", true, (-80.13215, 27.0099), DateTime("2004-08-02T12:00:00")), Occurrence("Sasquatch", true, (-84.20835, 30.4836), DateTime("2001-12-31T12:00:00")), Occurrence("Sasquatch", true, (-87.1814, 30.9905), DateTime("1994-04-15T12:00:00")), Occurrence("Sasquatch", true, (-85.76891, 30.7599), DateTime("2003-02-18T12:00:00")), Occurrence("Sasquatch", true, (-82.52655, 28.5716), DateTime("2004-02-17T12:00:00")), Occurrence("Sasquatch", true, (-81.3065, 25.8972), DateTime("1979-08-01T12:00:00")), Occurrence("Sasquatch", true, (-80.8044, 27.3973), DateTime("2004-01-18T12:00:00")), Occurrence("Sasquatch", true, (-81.80005, 29.98085), DateTime("2004-03-18T12:00:00")), Occurrence("Sasquatch", true, (-81.4189, 30.4544), DateTime("1994-03-01T12:00:00")), Occurrence("Sasquatch", true, (-86.6913, 30.56775), DateTime("2000-06-01T12:00:00")), Occurrence("Sasquatch", true, (-85.6316, 30.4664), DateTime("2004-08-08T12:00:00")), Occurrence("Sasquatch", true, (-81.9055, 29.07655), DateTime("2004-12-03T12:00:00")), Occurrence("Sasquatch", true, (-85.95136, 30.9854), DateTime("1988-12-01T12:00:00")), Occurrence("Sasquatch", true, (-82.929, 29.591), DateTime("1998-11-01T12:00:00")), Occurrence("Sasquatch", true, (-82.46557, 27.28518), DateTime("1981-08-07T12:00:00")), Occurrence("Sasquatch", true, (-80.60976, 26.61979), DateTime("1982-02-01T12:00:00")), Occurrence("Sasquatch", true, (-81.93871, 28.00845), DateTime("1974-09-01T12:00:00")), Occurrence("Sasquatch", true, (-82.454, 27.099), DateTime("1988-08-01T12:00:00")), Occurrence("Sasquatch", true, (-81.9742, 27.89469), DateTime("2004-10-12T12:00:00")), Occurrence("Sasquatch", true, (-82.42, 29.098), DateTime("2000-01-01T12:00:00")), Occurrence("Sasquatch", true, (-82.438, 28.043), DateTime("1955-01-01T12:00:00")), Occurrence("Sasquatch", true, (-84.583, 30.587), DateTime("2005-09-18T12:00:00")), Occurrence("Sasquatch", true, (-81.33, 25.927), DateTime("2005-06-02T12:00:00")), Occurrence("Sasquatch", true, (-81.35876, 27.37341), DateTime("2006-03-04T12:00:00")), Occurrence("Sasquatch", true, (-81.6965, 28.775), DateTime("1985-11-01T12:00:00")), Occurrence("Sasquatch", true, (-81.771, 30.069), DateTime("2003-07-01T12:00:00")), Occurrence("Sasquatch", true, (-82.6505, 29.191), DateTime("2000-10-01T12:00:00")), Occurrence("Sasquatch", true, (-80.926, 25.141), DateTime("2006-03-01T12:00:00")), Occurrence("Sasquatch", true, (-82.44749, 28.252), DateTime("2006-07-27T12:00:00")), Occurrence("Sasquatch", true, (-81.22285, 26.0079), DateTime("2001-10-15T12:00:00")), Occurrence("Sasquatch", true, (-82.879, 30.3125), DateTime("2006-11-01T12:00:00")), Occurrence("Sasquatch", true, (-81.83705, 30.2809), DateTime("1975-11-01T12:00:00")), Occurrence("Sasquatch", true, (-81.82794, 30.05287), DateTime("2006-11-17T12:00:00")), Occurrence("Sasquatch", true, (-82.3722, 29.1039), DateTime("2005-09-01T12:00:00")), Occurrence("Sasquatch", true, (-81.88324, 30.10139), DateTime("2007-03-04T12:00:00")), Occurrence("Sasquatch", true, (-81.90216, 30.03432), DateTime("2007-03-29T12:00:00")), Occurrence("Sasquatch", true, (-81.90477, 28.78028), DateTime("2007-07-12T12:00:00")), Occurrence("Sasquatch", true, (-81.54172, 30.23693), DateTime("2000-08-01T12:00:00")), Occurrence("Sasquatch", true, (-81.89565, 30.10386), DateTime("2007-08-11T12:00:00")), Occurrence("Sasquatch", true, (-81.94118, 30.11584), DateTime("2005-06-15T12:00:00")), Occurrence("Sasquatch", true, (-80.43689, 25.51665), DateTime("1977-11-15T12:00:00")), Occurrence("Sasquatch", true, (-81.80878, 29.43465), DateTime("2004-06-15T12:00:00")), Occurrence("Sasquatch", true, (-81.7268, 29.3143), DateTime("2006-07-15T12:00:00")), Occurrence("Sasquatch", true, (-85.3948, 29.93629), DateTime("1985-05-15T12:00:00")), Occurrence("Sasquatch", true, (-81.7757, 28.86151), DateTime("1993-05-01T12:00:00")), Occurrence("Sasquatch", true, (-81.9755, 27.7752), DateTime("1978-01-01T12:00:00")), Occurrence("Sasquatch", true, (-81.89905, 30.10851), DateTime("2008-02-15T12:00:00")), Occurrence("Sasquatch", true, (-81.48598, 25.95574), DateTime("2008-09-01T12:00:00")), Occurrence("Sasquatch", true, (-82.76431, 28.19899), DateTime("2009-03-05T12:00:00")), Occurrence("Sasquatch", true, (-82.40439, 27.5211), DateTime("1983-03-25T12:00:00")), Occurrence("Sasquatch", true, (-82.24487, 28.14617), DateTime("2001-01-13T12:00:00")), Occurrence("Sasquatch", true, (-82.71758, 28.29425), DateTime("1982-01-01T12:00:00")), Occurrence("Sasquatch", true, (-81.95577, 28.44926), DateTime("2009-10-18T12:00:00")), Occurrence("Sasquatch", true, (-82.33316, 29.58358), DateTime("2000-06-13T12:00:00")), Occurrence("Sasquatch", true, (-82.6783, 29.47368), DateTime("1981-08-28T12:00:00")), Occurrence("Sasquatch", true, (-81.85762, 30.08748), DateTime("2009-11-18T12:00:00")), Occurrence("Sasquatch", true, (-81.95577, 28.44926), DateTime("2009-10-10T12:00:00")), Occurrence("Sasquatch", true, (-81.97483, 28.50566), DateTime("2010-09-05T12:00:00")), Occurrence("Sasquatch", true, (-81.91354, 29.94011), DateTime("2009-12-15T12:00:00")), Occurrence("Sasquatch", true, (-82.44225, 29.39384), DateTime("1991-08-14T12:00:00")), Occurrence("Sasquatch", true, (-86.7513, 30.6966), DateTime("2010-12-19T12:00:00")), Occurrence("Sasquatch", true, (-80.84301, 28.93312), DateTime("2011-04-15T12:00:00")), Occurrence("Sasquatch", true, (-82.40295, 28.78812), DateTime("2010-09-16T12:00:00")), Occurrence("Sasquatch", true, (-80.7217, 28.31193), DateTime("1998-06-22T12:00:00")), Occurrence("Sasquatch", true, (-81.86789, 29.36953), DateTime("2008-03-15T12:00:00")), Occurrence("Sasquatch", true, (-80.84716, 28.48899), DateTime("2011-09-17T12:00:00")), Occurrence("Sasquatch", true, (-80.16933, 26.80829), DateTime("2003-06-14T12:00:00")), Occurrence("Sasquatch", true, (-81.2299, 29.83863), DateTime("2011-07-02T12:00:00")), Occurrence("Sasquatch", true, (-85.20786, 30.71362), DateTime("2011-09-17T12:00:00")), Occurrence("Sasquatch", true, (-81.52609, 29.28971), DateTime("2011-10-22T12:00:00")), Occurrence("Sasquatch", true, (-81.48534, 28.85982), DateTime("2007-04-10T12:00:00")), Occurrence("Sasquatch", true, (-80.55011, 27.78042), DateTime("2012-01-21T12:00:00")), Occurrence("Sasquatch", true, (-81.20045, 28.54205), DateTime("2000-02-28T12:00:00")), Occurrence("Sasquatch", true, (-82.01917, 29.16722), DateTime("2012-02-21T12:00:00")), Occurrence("Sasquatch", true, (-80.83882, 28.20954), DateTime("1990-11-23T12:00:00")), Occurrence("Sasquatch", true, (-81.4819, 29.05872), DateTime("2012-01-15T12:00:00")), Occurrence("Sasquatch", true, (-81.71583, 26.85451), DateTime("2006-03-15T12:00:00")), Occurrence("Sasquatch", true, (-81.74579, 29.49577), DateTime("2010-06-07T12:00:00")), Occurrence("Sasquatch", true, (-80.59502, 25.39544), DateTime("1995-03-15T12:00:00")), Occurrence("Sasquatch", true, (-80.58182, 25.76119), DateTime("2012-11-04T12:00:00")), Occurrence("Sasquatch", true, (-81.59869, 28.99496), DateTime("2012-11-11T12:00:00")), Occurrence("Sasquatch", true, (-81.12898, 28.62323), DateTime("1972-07-29T12:00:00")), Occurrence("Sasquatch", true, (-81.81697, 26.67822), DateTime("2009-09-14T12:00:00")), Occurrence("Sasquatch", true, (-82.0443, 30.71004), DateTime("2012-12-08T12:00:00")), Occurrence("Sasquatch", true, (-81.12292, 29.33246), DateTime("1985-05-25T12:00:00")), Occurrence("Sasquatch", true, (-84.91096, 30.54079), DateTime("2013-03-24T12:00:00")), Occurrence("Sasquatch", true, (-83.96767, 30.40785), DateTime("1975-08-01T12:00:00")), Occurrence("Sasquatch", true, (-82.82335, 29.42016), DateTime("2013-04-13T12:00:00")), Occurrence("Sasquatch", true, (-82.43094, 27.66726), DateTime("2012-03-29T12:00:00")), Occurrence("Sasquatch", true, (-81.85223, 29.97917), DateTime("2012-06-12T12:00:00")), Occurrence("Sasquatch", true, (-82.35501, 29.67757), DateTime("1963-09-15T12:00:00")), Occurrence("Sasquatch", true, (-82.0435, 29.1795), DateTime("2013-10-26T12:00:00")), Occurrence("Sasquatch", true, (-82.3948, 28.14162), DateTime("2013-11-24T12:00:00")), Occurrence("Sasquatch", true, (-80.29457, 26.05091), DateTime("1974-07-20T12:00:00")), Occurrence("Sasquatch", true, (-82.1475, 26.9745), DateTime("2001-01-20T12:00:00")), Occurrence("Sasquatch", true, (-81.98468, 27.19995), DateTime("2014-09-09T12:00:00")), Occurrence("Sasquatch", true, (-82.74918, 28.09538), DateTime("1977-10-21T12:00:00")), Occurrence("Sasquatch", true, (-80.47805, 25.54494), DateTime("1975-06-20T12:00:00")), Occurrence("Sasquatch", true, (-83.1736, 30.37369), DateTime("2011-10-15T12:00:00")), Occurrence("Sasquatch", true, (-81.64167, 29.00086), DateTime("2015-11-05T12:00:00")), Occurrence("Sasquatch", true, (-83.00198, 29.23723), DateTime("2016-09-11T12:00:00")), Occurrence("Sasquatch", true, (-82.22301, 27.35273), DateTime("2017-07-10T12:00:00")), Occurrence("Sasquatch", true, (-81.23721, 28.42146), DateTime("2017-01-31T12:00:00")), Occurrence("Sasquatch", true, (-81.69337, 29.27043), DateTime("2017-08-15T12:00:00")), Occurrence("Sasquatch", true, (-86.63961, 30.71482), DateTime("2019-01-21T12:00:00")), Occurrence("Sasquatch", true, (-86.4945, 30.6098), DateTime("2020-12-26T12:00:00")), Occurrence("Sasquatch", true, (-82.39019, 27.00061), DateTime("2021-03-27T12:00:00")), Occurrence("Sasquatch", true, (-80.10344, 27.01091), DateTime("2021-11-15T12:00:00")), Occurrence("Sasquatch", true, (-82.22015, 30.03563), DateTime("2023-11-12T12:00:00")), Occurrence("Sasquatch", true, (-85.12705, 33.26885), DateTime("2005-01-31T12:00:00")), Occurrence("Sasquatch", true, (-85.0, 34.0), DateTime("1974-06-15T12:00:00")), Occurrence("Sasquatch", true, (-84.59345, 34.28745), DateTime("1993-11-03T12:00:00")), Occurrence("Sasquatch", true, (-82.24471, 33.3646), DateTime("1979-12-01T12:00:00")), Occurrence("Sasquatch", true, (-83.4192, 34.6423), DateTime("1978-06-15T12:00:00")), Occurrence("Sasquatch", true, (-85.0409, 32.0538), DateTime("2000-08-30T12:00:00")), Occurrence("Sasquatch", true, (-81.88475, 31.8792), DateTime("1982-06-15T12:00:00")), Occurrence("Sasquatch", true, (-84.2269, 34.70435), DateTime("1985-09-15T12:00:00")), Occurrence("Sasquatch", true, (-83.412, 30.67), DateTime("2002-06-10T12:00:00")), Occurrence("Sasquatch", true, (-81.73075, 31.82345), DateTime("1998-10-15T12:00:00")), Occurrence("Sasquatch", true, (-84.53352, 33.70037), DateTime("1961-09-01T12:00:00")), Occurrence("Sasquatch", true, (-84.869, 33.5388), DateTime("2003-10-26T12:00:00")), Occurrence("Sasquatch", true, (-83.714, 34.672), DateTime("1999-11-25T12:00:00")), Occurrence("Sasquatch", true, (-81.41267, 31.08925), DateTime("1963-07-04T12:00:00")), Occurrence("Sasquatch", true, (-82.24886, 32.38575), DateTime("2004-04-01T12:00:00")), Occurrence("Sasquatch", true, (-83.69085, 34.68319), DateTime("2005-07-14T12:00:00")), Occurrence("Sasquatch", true, (-84.2532, 33.32442), DateTime("1984-07-15T12:00:00")), Occurrence("Sasquatch", true, (-83.48067, 34.74775), DateTime("1998-05-23T12:00:00")), Occurrence("Sasquatch", true, (-82.1341, 31.2439), DateTime("1986-10-11T12:00:00")), Occurrence("Sasquatch", true, (-83.13654, 31.24842), DateTime("1976-10-08T12:00:00")), Occurrence("Sasquatch", true, (-84.7681, 33.48295), DateTime("2006-08-29T12:00:00")), Occurrence("Sasquatch", true, (-81.436, 32.0391), DateTime("1998-11-12T12:00:00")), Occurrence("Sasquatch", true, (-84.78979, 33.80785), DateTime("2006-06-16T12:00:00")), Occurrence("Sasquatch", true, (-84.97515, 33.81029), DateTime("2007-02-27T12:00:00")), Occurrence("Sasquatch", true, (-84.1293, 31.43265), DateTime("1992-07-11T12:00:00")), Occurrence("Sasquatch", true, (-84.73846, 34.1318), DateTime("2006-09-01T12:00:00")), Occurrence("Sasquatch", true, (-84.5136, 34.48287), DateTime("2007-08-01T12:00:00")), Occurrence("Sasquatch", true, (-85.31646, 34.42654), DateTime("2007-09-08T12:00:00")), Occurrence("Sasquatch", true, (-83.80404, 34.64145), DateTime("1980-07-01T12:00:00")), Occurrence("Sasquatch", true, (-84.383, 34.39965), DateTime("2007-10-15T12:00:00")), Occurrence("Sasquatch", true, (-83.26071, 31.17384), DateTime("2008-07-02T12:00:00")), Occurrence("Sasquatch", true, (-84.58501, 34.8155), DateTime("2001-10-15T12:00:00")), Occurrence("Sasquatch", true, (-82.86789, 34.06705), DateTime("2000-06-01T12:00:00")), Occurrence("Sasquatch", true, (-84.48006, 34.31955), DateTime("2009-06-28T12:00:00")), Occurrence("Sasquatch", true, (-84.5317, 33.49565), DateTime("2009-07-17T12:00:00")), Occurrence("Sasquatch", true, (-84.73555, 33.2706), DateTime("2007-10-13T12:00:00")), Occurrence("Sasquatch", true, (-82.6386, 30.83105), DateTime("2009-10-07T12:00:00")), Occurrence("Sasquatch", true, (-81.64665, 31.46641), DateTime("2008-11-23T12:00:00")), Occurrence("Sasquatch", true, (-84.72352, 34.8243), DateTime("2010-01-12T12:00:00")), Occurrence("Sasquatch", true, (-83.66153, 31.18562), DateTime("2009-08-15T12:00:00")), Occurrence("Sasquatch", true, (-83.55708, 32.86288), DateTime("1957-07-15T12:00:00")), Occurrence("Sasquatch", true, (-81.61756, 31.9853), DateTime("2004-07-15T12:00:00")), Occurrence("Sasquatch", true, (-83.77811, 34.7673), DateTime("1993-05-15T12:00:00")), Occurrence("Sasquatch", true, (-83.94456, 34.84161), DateTime("1994-05-15T12:00:00")), Occurrence("Sasquatch", true, (-85.18678, 34.17521), DateTime("2005-10-10T12:00:00")), Occurrence("Sasquatch", true, (-85.02602, 32.96854), DateTime("1960-11-04T12:00:00")), Occurrence("Sasquatch", true, (-83.90588, 33.34677), DateTime("2004-10-22T12:00:00")), Occurrence("Sasquatch", true, (-84.08932, 32.2462), DateTime("1978-06-07T12:00:00")), Occurrence("Sasquatch", true, (-83.08486, 31.35289), DateTime("2011-11-09T12:00:00")), Occurrence("Sasquatch", true, (-83.61285, 33.46372), DateTime("1986-06-15T12:00:00")), Occurrence("Sasquatch", true, (-83.87177, 34.36153), DateTime("1976-06-15T12:00:00")), Occurrence("Sasquatch", true, (-84.83903, 34.03528), DateTime("2004-05-15T12:00:00")), Occurrence("Sasquatch", true, (-85.16238, 34.05198), DateTime("2012-07-15T12:00:00")), Occurrence("Sasquatch", true, (-83.71705, 34.66467), DateTime("2009-03-30T12:00:00")), Occurrence("Sasquatch", true, (-84.82338, 33.94979), DateTime("2011-10-19T12:00:00")), Occurrence("Sasquatch", true, (-83.77092, 32.6399), DateTime("2015-10-26T12:00:00")), Occurrence("Sasquatch", true, (-85.10207, 33.81871), DateTime("2016-12-03T12:00:00")), Occurrence("Sasquatch", true, (-83.16122, 32.30676), DateTime("1986-06-11T12:00:00")), Occurrence("Sasquatch", true, (-83.31311, 34.8804), DateTime("2014-11-08T12:00:00")), Occurrence("Sasquatch", true, (-83.16414, 31.08012), DateTime("2000-06-15T12:00:00")), Occurrence("Sasquatch", true, (-84.508, 33.37111), DateTime("2018-12-15T12:00:00")), Occurrence("Sasquatch", true, (-81.78378, 32.5754), DateTime("2019-12-20T12:00:00")), Occurrence("Sasquatch", true, (-85.54543, 34.72292), DateTime("2022-04-15T12:00:00")), Occurrence("Sasquatch", true, (-83.92731, 32.55829), DateTime("2024-08-25T12:00:00")), Occurrence("Sasquatch", true, (-92.9008, 41.3675), DateTime("2000-10-24T12:00:00")), Occurrence("Sasquatch", true, (-93.82007, 42.47806), DateTime("2000-11-25T12:00:00")), Occurrence("Sasquatch", true, (-93.974, 41.59377), DateTime("1978-11-15T12:00:00")), Occurrence("Sasquatch", true, (-91.3867, 43.078), DateTime("1970-08-15T12:00:00")), Occurrence("Sasquatch", true, (-94.356, 42.8674), DateTime("1978-09-12T12:00:00")), Occurrence("Sasquatch", true, (-91.75205, 40.995), DateTime("1975-10-28T12:00:00")), Occurrence("Sasquatch", true, (-93.63804, 41.62183), DateTime("2000-02-15T12:00:00")), Occurrence("Sasquatch", true, (-96.40213, 42.50817), DateTime("1997-08-09T12:00:00")), Occurrence("Sasquatch", true, (-93.77783, 40.59604), DateTime("2000-06-14T12:00:00")), Occurrence("Sasquatch", true, (-92.76577, 43.17215), DateTime("1977-08-01T12:00:00")), Occurrence("Sasquatch", true, (-94.22206, 42.72063), DateTime("2001-04-02T12:00:00")), Occurrence("Sasquatch", true, (-94.3677, 42.0152), DateTime("1983-07-15T12:00:00")), Occurrence("Sasquatch", true, (-93.22192, 42.73854), DateTime("2001-09-01T12:00:00")), Occurrence("Sasquatch", true, (-91.8043, 42.7525), DateTime("1970-11-30T12:00:00")), Occurrence("Sasquatch", true, (-91.68192, 42.28422), DateTime("2004-09-12T12:00:00")), Occurrence("Sasquatch", true, (-93.85965, 40.8348), DateTime("1991-09-15T12:00:00")), Occurrence("Sasquatch", true, (-94.045, 41.461), DateTime("2007-11-22T12:00:00")), Occurrence("Sasquatch", true, (-90.66615, 42.4104), DateTime("2007-11-07T12:00:00")), Occurrence("Sasquatch", true, (-91.74585, 41.47445), DateTime("2006-11-15T12:00:00")), Occurrence("Sasquatch", true, (-90.76557, 42.55997), DateTime("2011-08-31T12:00:00")), Occurrence("Sasquatch", true, (-93.92304, 42.03477), DateTime("2014-04-04T12:00:00")), Occurrence("Sasquatch", true, (-90.93558, 42.33531), DateTime("2015-11-30T12:00:00")), Occurrence("Sasquatch", true, (-93.4371, 41.52387), DateTime("1982-11-13T12:00:00")), Occurrence("Sasquatch", true, (-93.39472, 41.75347), DateTime("1997-11-29T12:00:00")), Occurrence("Sasquatch", true, (-111.1241, 42.5149), DateTime("1983-09-04T12:00:00")), Occurrence("Sasquatch", true, (-116.7787, 47.95614), DateTime("1967-07-29T12:00:00")), Occurrence("Sasquatch", true, (-115.75, 45.08334), DateTime("1973-08-24T12:00:00")), Occurrence("Sasquatch", true, (-116.0833, 44.91666), DateTime("1969-08-16T12:00:00")), Occurrence("Sasquatch", true, (-116.4, 44.85), DateTime("1990-10-31T12:00:00")), Occurrence("Sasquatch", true, (-116.25, 42.79166), DateTime("1963-06-15T12:00:00")), Occurrence("Sasquatch", true, (-116.667, 48.43443), DateTime("1976-03-15T12:00:00")), Occurrence("Sasquatch", true, (-116.9156, 45.9978), DateTime("1974-06-15T12:00:00")), Occurrence("Sasquatch", true, (-115.9167, 44.75), DateTime("1981-07-07T12:00:00")), Occurrence("Sasquatch", true, (-114.7503, 44.25028), DateTime("1975-10-01T12:00:00")), Occurrence("Sasquatch", true, (-115.5833, 44.41666), DateTime("1996-10-01T12:00:00")), Occurrence("Sasquatch", true, (-115.75, 45.08334), DateTime("1985-10-25T12:00:00")), Occurrence("Sasquatch", true, (-116.9266, 47.70965), DateTime("1988-12-03T12:00:00")), Occurrence("Sasquatch", true, (-116.0558, 48.1143), DateTime("1969-10-18T12:00:00")), Occurrence("Sasquatch", true, (-112.455, 44.0925), DateTime("2005-05-09T12:00:00")), Occurrence("Sasquatch", true, (-116.0834, 44.58335), DateTime("1979-02-17T12:00:00")), Occurrence("Sasquatch", true, (-116.8368, 46.8102), DateTime("2005-07-01T12:00:00")), Occurrence("Sasquatch", true, (-114.8281, 43.4082), DateTime("1988-08-20T12:00:00")), Occurrence("Sasquatch", true, (-111.7899, 43.41005), DateTime("2006-11-04T12:00:00")), Occurrence("Sasquatch", true, (-116.1475, 48.255), DateTime("1985-08-15T12:00:00")), Occurrence("Sasquatch", true, (-114.2634, 42.21834), DateTime("2007-08-09T12:00:00")), Occurrence("Sasquatch", true, (-115.586, 46.94), DateTime("2001-09-03T12:00:00")), Occurrence("Sasquatch", true, (-115.9965, 47.509), DateTime("1996-05-30T12:00:00")), Occurrence("Sasquatch", true, (-116.934, 48.6334), DateTime("1980-10-28T12:00:00")), Occurrence("Sasquatch", true, (-116.4171, 48.49805), DateTime("1993-10-31T12:00:00")), Occurrence("Sasquatch", true, (-111.1241, 42.5149), DateTime("1982-09-11T12:00:00")), Occurrence("Sasquatch", true, (-115.8714, 44.28265), DateTime("2009-06-13T12:00:00")), Occurrence("Sasquatch", true, (-141.006, 46.19614), DateTime("2013-12-04T12:00:00")), Occurrence("Sasquatch", true, (-112.2873, 44.41131), DateTime("2015-10-20T12:00:00")), Occurrence("Sasquatch", true, (-116.99, 48.1964), DateTime("2015-12-26T12:00:00")), Occurrence("Sasquatch", true, (-116.923, 46.97822), DateTime("2011-02-15T12:00:00")), Occurrence("Sasquatch", true, (-116.0542, 44.95277), DateTime("2007-07-01T12:00:00")), Occurrence("Sasquatch", true, (-116.6339, 48.45359), DateTime("2017-09-22T12:00:00")), Occurrence("Sasquatch", true, (-116.0518, 47.02242), DateTime("2006-08-07T12:00:00")), Occurrence("Sasquatch", true, (-116.1155, 44.66862), DateTime("2018-11-21T12:00:00")), Occurrence("Sasquatch", true, (-112.9954, 44.0555), DateTime("2007-07-15T12:00:00")), Occurrence("Sasquatch", true, (-116.2617, 47.61893), DateTime("2011-08-10T12:00:00")), Occurrence("Sasquatch", true, (-90.608, 39.2949), DateTime("1998-05-15T12:00:00")), Occurrence("Sasquatch", true, (-89.136, 38.98), DateTime("1975-12-15T12:00:00")), Occurrence("Sasquatch", true, (-88.71672, 37.34339), DateTime("1989-10-15T12:00:00")), Occurrence("Sasquatch", true, (-91.0007, 40.4664), DateTime("2000-11-15T12:00:00")), Occurrence("Sasquatch", true, (-91.0863, 40.8139), DateTime("2004-11-26T12:00:00")), Occurrence("Sasquatch", true, (-89.9595, 41.30412), DateTime("1999-09-15T12:00:00")), Occurrence("Sasquatch", true, (-89.689, 41.7798), DateTime("2004-12-22T12:00:00")), Occurrence("Sasquatch", true, (-89.558, 39.06), DateTime("1992-09-14T12:00:00")), Occurrence("Sasquatch", true, (-90.16171, 38.92241), DateTime("2004-07-08T12:00:00")), Occurrence("Sasquatch", true, (-90.0594, 40.5332), DateTime("1980-04-12T12:00:00")), Occurrence("Sasquatch", true, (-89.09732, 38.68707), DateTime("1989-10-14T12:00:00")), Occurrence("Sasquatch", true, (-88.929, 37.91), DateTime("1979-08-17T12:00:00")), Occurrence("Sasquatch", true, (-88.562, 41.3368), DateTime("2005-06-02T12:00:00")), Occurrence("Sasquatch", true, (-88.595, 41.295), DateTime("1983-07-23T12:00:00")), Occurrence("Sasquatch", true, (-88.55, 41.33), DateTime("1979-06-09T12:00:00")), Occurrence("Sasquatch", true, (-88.562, 41.3368), DateTime("2005-06-10T12:00:00")), Occurrence("Sasquatch", true, (-88.1577, 42.1295), DateTime("1968-09-28T12:00:00")), Occurrence("Sasquatch", true, (-87.47077, 40.34057), DateTime("2003-09-06T12:00:00")), Occurrence("Sasquatch", true, (-89.54485, 38.4763), DateTime("2006-06-08T12:00:00")), Occurrence("Sasquatch", true, (-90.459, 40.316), DateTime("2004-09-11T12:00:00")), Occurrence("Sasquatch", true, (-89.5, 39.853), DateTime("1995-12-15T12:00:00")), Occurrence("Sasquatch", true, (-89.85, 42.21), DateTime("2003-10-26T12:00:00")), Occurrence("Sasquatch", true, (-89.022, 42.1846), DateTime("1994-10-22T12:00:00")), Occurrence("Sasquatch", true, (-88.867, 39.781), DateTime("2006-10-05T12:00:00")), Occurrence("Sasquatch", true, (-89.582, 38.946), DateTime("2006-10-16T12:00:00")), Occurrence("Sasquatch", true, (-89.98351, 39.06), DateTime("1994-07-04T12:00:00")), Occurrence("Sasquatch", true, (-90.9009, 40.9452), DateTime("2008-05-03T12:00:00")), Occurrence("Sasquatch", true, (-90.40675, 41.55965), DateTime("1969-09-01T12:00:00")), Occurrence("Sasquatch", true, (-90.64, 39.607), DateTime("2007-11-16T12:00:00")), Occurrence("Sasquatch", true, (-88.9963, 37.289), DateTime("1999-10-02T12:00:00")), Occurrence("Sasquatch", true, (-89.341, 38.567), DateTime("2007-10-27T12:00:00")), Occurrence("Sasquatch", true, (-89.80125, 38.72226), DateTime("1980-12-24T12:00:00")), Occurrence("Sasquatch", true, (-89.48787, 39.26776), DateTime("2008-11-08T12:00:00")), Occurrence("Sasquatch", true, (-90.1451, 38.9951), DateTime("2009-04-08T12:00:00")), Occurrence("Sasquatch", true, (-87.58124, 41.16124), DateTime("1973-05-13T12:00:00")), Occurrence("Sasquatch", true, (-89.3211, 41.2285), DateTime("1986-11-29T12:00:00")), Occurrence("Sasquatch", true, (-88.724, 40.19732), DateTime("2009-06-27T12:00:00")), Occurrence("Sasquatch", true, (-89.88871, 39.93521), DateTime("1972-10-29T12:00:00")), Occurrence("Sasquatch", true, (-89.73378, 40.82944), DateTime("2007-10-27T12:00:00")), Occurrence("Sasquatch", true, (-90.24173, 39.57463), DateTime("2006-07-22T12:00:00")), Occurrence("Sasquatch", true, (-90.012, 38.7774), DateTime("1978-10-21T12:00:00")), Occurrence("Sasquatch", true, (-90.18651, 39.6548), DateTime("2005-11-19T12:00:00")), Occurrence("Sasquatch", true, (-90.17564, 39.53747), DateTime("2006-08-26T12:00:00")), Occurrence("Sasquatch", true, (-89.4691, 39.7721), DateTime("1976-09-18T12:00:00")), Occurrence("Sasquatch", true, (-90.0055, 40.5658), DateTime("2010-10-17T12:00:00")), Occurrence("Sasquatch", true, (-89.3469, 39.5075), DateTime("2008-09-28T12:00:00")), Occurrence("Sasquatch", true, (-89.99328, 40.62288), DateTime("1969-08-09T12:00:00")), Occurrence("Sasquatch", true, (-87.83285, 41.84136), DateTime("2010-11-16T12:00:00")), Occurrence("Sasquatch", true, (-89.3469, 39.5075), DateTime("2008-05-05T12:00:00")), Occurrence("Sasquatch", true, (-88.53889, 41.33018), DateTime("2009-06-24T12:00:00")), Occurrence("Sasquatch", true, (-88.60814, 41.29663), DateTime("2011-02-24T12:00:00")), Occurrence("Sasquatch", true, (-88.38197, 37.60075), DateTime("2011-04-15T12:00:00")), Occurrence("Sasquatch", true, (-90.40184, 39.02341), DateTime("2008-05-23T12:00:00")), Occurrence("Sasquatch", true, (-90.0795, 41.7584), DateTime("2000-04-07T12:00:00")), Occurrence("Sasquatch", true, (-88.71103, 41.42396), DateTime("2011-07-18T12:00:00")), Occurrence("Sasquatch", true, (-89.41959, 40.14471), DateTime("2004-10-30T12:00:00")), Occurrence("Sasquatch", true, (-88.1676, 39.8213), DateTime("1964-11-07T12:00:00")), Occurrence("Sasquatch", true, (-88.706, 41.4209), DateTime("2011-10-20T12:00:00")), Occurrence("Sasquatch", true, (-87.68468, 38.71682), DateTime("2011-12-19T12:00:00")), Occurrence("Sasquatch", true, (-89.88347, 40.59904), DateTime("1985-01-12T12:00:00")), Occurrence("Sasquatch", true, (-90.18332, 40.98073), DateTime("1973-06-09T12:00:00")), Occurrence("Sasquatch", true, (-88.29926, 42.18476), DateTime("2008-09-13T12:00:00")), Occurrence("Sasquatch", true, (-90.16501, 38.51689), DateTime("1991-11-16T12:00:00")), Occurrence("Sasquatch", true, (-88.71402, 41.42741), DateTime("1987-07-11T12:00:00")), Occurrence("Sasquatch", true, (-89.55229, 39.84874), DateTime("1996-10-12T12:00:00")), Occurrence("Sasquatch", true, (-88.99181, 38.1038), DateTime("2012-05-14T12:00:00")), Occurrence("Sasquatch", true, (-89.36896, 37.18404), DateTime("2011-10-10T12:00:00")), Occurrence("Sasquatch", true, (-89.48784, 37.71917), DateTime("2011-03-05T12:00:00")), Occurrence("Sasquatch", true, (-90.79664, 40.45273), DateTime("2012-08-09T12:00:00")), Occurrence("Sasquatch", true, (-88.95451, 41.30374), DateTime("1986-01-01T12:00:00")), Occurrence("Sasquatch", true, (-88.9813, 39.8732), DateTime("1980-11-08T12:00:00")), Occurrence("Sasquatch", true, (-90.04582, 39.37753), DateTime("1993-11-20T12:00:00")), Occurrence("Sasquatch", true, (-87.79079, 38.37945), DateTime("2010-10-19T12:00:00")), Occurrence("Sasquatch", true, (-87.75156, 41.53346), DateTime("2012-12-20T12:00:00")), Occurrence("Sasquatch", true, (-89.48784, 37.71917), DateTime("2012-03-06T12:00:00")), Occurrence("Sasquatch", true, (-89.60034, 40.67577), DateTime("2013-02-26T12:00:00")), Occurrence("Sasquatch", true, (-90.59952, 40.25679), DateTime("2000-01-09T12:00:00")), Occurrence("Sasquatch", true, (-88.1033, 40.26916), DateTime("1975-10-11T12:00:00")), Occurrence("Sasquatch", true, (-90.95499, 39.91682), DateTime("2013-06-22T12:00:00")), Occurrence("Sasquatch", true, (-89.49155, 37.68485), DateTime("1978-04-21T12:00:00")), Occurrence("Sasquatch", true, (-87.60593, 41.40762), DateTime("2009-10-10T12:00:00")), Occurrence("Sasquatch", true, (-88.61966, 39.2372), DateTime("1998-09-28T12:00:00")), Occurrence("Sasquatch", true, (-88.98393, 37.88755), DateTime("2013-11-24T12:00:00")), Occurrence("Sasquatch", true, (-87.8572, 38.354), DateTime("2013-10-23T12:00:00")), Occurrence("Sasquatch", true, (-90.0933, 39.30525), DateTime("2014-05-14T12:00:00")), Occurrence("Sasquatch", true, (-90.928, 40.9119), DateTime("2014-05-12T12:00:00")), Occurrence("Sasquatch", true, (-89.17177, 37.63264), DateTime("2014-05-14T12:00:00")), Occurrence("Sasquatch", true, (-89.80784, 41.72264), DateTime("2014-05-12T12:00:00")), Occurrence("Sasquatch", true, (-90.16382, 41.12409), DateTime("2014-09-05T12:00:00")), Occurrence("Sasquatch", true, (-87.8574, 41.9586), DateTime("1967-08-15T12:00:00")), Occurrence("Sasquatch", true, (-88.92, 41.3224), DateTime("2014-10-10T12:00:00")), Occurrence("Sasquatch", true, (-90.4429, 40.9474), DateTime("2015-01-12T12:00:00")), Occurrence("Sasquatch", true, (-88.70795, 39.50655), DateTime("2014-12-30T12:00:00")), Occurrence("Sasquatch", true, (-90.3832, 40.625), DateTime("2005-07-15T12:00:00")), Occurrence("Sasquatch", true, (-88.30026, 42.1838), DateTime("2017-01-22T12:00:00")), Occurrence("Sasquatch", true, (-88.23882, 41.34693), DateTime("2017-01-22T12:00:00")), Occurrence("Sasquatch", true, (-89.72024, 38.96846), DateTime("2017-01-25T12:00:00")), Occurrence("Sasquatch", true, (-88.60679, 41.29601), DateTime("2015-08-12T12:00:00")), Occurrence("Sasquatch", true, (-88.362, 37.9308), DateTime("2015-10-11T12:00:00")), Occurrence("Sasquatch", true, (-89.23383, 37.85126), DateTime("2015-11-02T12:00:00")), Occurrence("Sasquatch", true, (-89.30203, 37.4351), DateTime("2015-11-21T12:00:00")), Occurrence("Sasquatch", true, (-89.87113, 38.43189), DateTime("1996-06-29T12:00:00")), Occurrence("Sasquatch", true, (-89.49032, 40.67855), DateTime("2016-10-03T12:00:00")), Occurrence("Sasquatch", true, (-89.86021, 39.4383), DateTime("2017-01-20T12:00:00")), Occurrence("Sasquatch", true, (-89.35323, 38.33912), DateTime("2000-05-18T12:00:00")), Occurrence("Sasquatch", true, (-89.36241, 37.56937), DateTime("2013-10-29T12:00:00")), Occurrence("Sasquatch", true, (-89.56226, 39.75318), DateTime("2017-09-16T12:00:00")), Occurrence("Sasquatch", true, (-89.36241, 37.56937), DateTime("2013-11-12T12:00:00")), Occurrence("Sasquatch", true, (-90.15218, 40.06831), DateTime("2021-11-27T12:00:00")), Occurrence("Sasquatch", true, (-88.52097, 41.62943), DateTime("2024-04-30T12:00:00")), Occurrence("Sasquatch", true, (-89.81055, 40.55093), DateTime("2024-10-05T12:00:00")), Occurrence("Sasquatch", true, (-86.1512, 40.18), DateTime("1973-09-08T12:00:00")), Occurrence("Sasquatch", true, (-85.7037, 41.3382), DateTime("2003-10-11T12:00:00")), Occurrence("Sasquatch", true, (-86.5945, 41.062), DateTime("2005-01-22T12:00:00")), Occurrence("Sasquatch", true, (-85.61, 39.3579), DateTime("2005-01-21T12:00:00")), Occurrence("Sasquatch", true, (-85.8486, 39.365), DateTime("2005-01-23T12:00:00")), Occurrence("Sasquatch", true, (-86.1084, 40.0403), DateTime("1973-07-10T12:00:00")), Occurrence("Sasquatch", true, (-86.161, 39.4862), DateTime("1999-06-12T12:00:00")), Occurrence("Sasquatch", true, (-86.11, 39.38), DateTime("2002-05-11T12:00:00")), Occurrence("Sasquatch", true, (-87.3203, 38.01), DateTime("1937-08-16T12:00:00")), Occurrence("Sasquatch", true, (-87.23335, 39.8679), DateTime("1997-10-01T12:00:00")), Occurrence("Sasquatch", true, (-86.57665, 39.01166), DateTime("1979-11-01T12:00:00")), Occurrence("Sasquatch", true, (-86.46065, 39.32117), DateTime("1988-11-30T12:00:00")), Occurrence("Sasquatch", true, (-86.64338, 38.12318), DateTime("1981-06-15T12:00:00")), Occurrence("Sasquatch", true, (-84.971, 39.17295), DateTime("1984-08-01T12:00:00")), Occurrence("Sasquatch", true, (-86.25349, 38.6899), DateTime("1997-08-01T12:00:00")), Occurrence("Sasquatch", true, (-85.69739, 40.54919), DateTime("1975-07-15T12:00:00")), Occurrence("Sasquatch", true, (-85.3532, 40.8179), DateTime("1997-11-01T12:00:00")), Occurrence("Sasquatch", true, (-85.5481, 39.45697), DateTime("1977-06-15T12:00:00")), Occurrence("Sasquatch", true, (-86.22125, 39.2065), DateTime("2012-05-01T12:00:00")), Occurrence("Sasquatch", true, (-87.13843, 37.83837), DateTime("2008-09-20T12:00:00")), Occurrence("Sasquatch", true, (-86.79333, 38.63472), DateTime("2018-08-26T12:00:00")), Occurrence("Sasquatch", true, (-86.33011, 39.24841), DateTime("2020-05-09T12:00:00")), Occurrence("Sasquatch", true, (-94.72448, 37.81005), DateTime("1996-05-01T12:00:00")), Occurrence("Sasquatch", true, (-96.9614, 39.1489), DateTime("1980-07-20T12:00:00")), Occurrence("Sasquatch", true, (-95.0802, 37.0504), DateTime("1978-02-23T12:00:00")), Occurrence("Sasquatch", true, (-94.6837, 38.6234), DateTime("1998-10-15T12:00:00")), Occurrence("Sasquatch", true, (-96.8223, 39.1463), DateTime("2001-01-18T12:00:00")), Occurrence("Sasquatch", true, (-97.60829, 37.52947), DateTime("1978-07-10T12:00:00")), Occurrence("Sasquatch", true, (-97.40294, 37.64103), DateTime("1975-11-15T12:00:00")), Occurrence("Sasquatch", true, (-95.84024, 39.33292), DateTime("1960-01-01T12:00:00")), Occurrence("Sasquatch", true, (-95.7455, 37.192), DateTime("1977-11-25T12:00:00")), Occurrence("Sasquatch", true, (-95.2577, 38.9142), DateTime("2005-01-26T12:00:00")), Occurrence("Sasquatch", true, (-97.3374, 37.0581), DateTime("2005-01-27T12:00:00")), Occurrence("Sasquatch", true, (-95.6491, 38.3908), DateTime("1974-11-09T12:00:00")), Occurrence("Sasquatch", true, (-95.747, 39.072), DateTime("1978-07-08T12:00:00")), Occurrence("Sasquatch", true, (-96.44296, 38.62563), DateTime("2009-08-10T12:00:00")), Occurrence("Sasquatch", true, (-97.34005, 39.7273), DateTime("2011-05-05T12:00:00")), Occurrence("Sasquatch", true, (-98.42924, 37.56279), DateTime("2012-06-29T12:00:00")), Occurrence("Sasquatch", true, (-95.44415, 39.2305), DateTime("2012-10-15T12:00:00")), Occurrence("Sasquatch", true, (-97.1953, 37.3444), DateTime("2003-11-15T12:00:00")), Occurrence("Sasquatch", true, (-97.4572, 37.40504), DateTime("2011-04-01T12:00:00")), Occurrence("Sasquatch", true, (-97.41755, 38.19744), DateTime("2014-03-29T12:00:00")), Occurrence("Sasquatch", true, (-99.26195, 39.1062), DateTime("2014-11-14T12:00:00")), Occurrence("Sasquatch", true, (-94.54, 39.8595), DateTime("2015-02-10T12:00:00")), Occurrence("Sasquatch", true, (-98.2833, 39.30595), DateTime("2017-08-31T12:00:00")), Occurrence("Sasquatch", true, (-89.89167, 38.53062), DateTime("1994-11-04T12:00:00")), Occurrence("Sasquatch", true, (-94.91451, 39.4045), DateTime("2014-10-04T12:00:00")), Occurrence("Sasquatch", true, (-97.85428, 37.56215), DateTime("2021-05-17T12:00:00")), Occurrence("Sasquatch", true, (-88.41175, 36.8207), DateTime("1990-04-15T12:00:00")), Occurrence("Sasquatch", true, (-83.67952, 37.7764), DateTime("1978-08-15T12:00:00")), Occurrence("Sasquatch", true, (-84.92358, 37.3181), DateTime("1953-10-01T12:00:00")), Occurrence("Sasquatch", true, (-84.97527, 37.95708), DateTime("2005-01-09T12:00:00")), Occurrence("Sasquatch", true, (-82.7989, 38.53187), DateTime("2001-01-04T12:00:00")), Occurrence("Sasquatch", true, (-82.88309, 37.94235), DateTime("1999-09-15T12:00:00")), Occurrence("Sasquatch", true, (-82.74628, 37.77591), DateTime("2004-04-21T12:00:00")), Occurrence("Sasquatch", true, (-88.9949, 36.9372), DateTime("1993-01-20T12:00:00")), Occurrence("Sasquatch", true, (-83.66641, 36.7999), DateTime("1958-12-31T12:00:00")), Occurrence("Sasquatch", true, (-87.89844, 37.34029), DateTime("1997-10-01T12:00:00")), Occurrence("Sasquatch", true, (-84.2552, 37.53705), DateTime("1993-07-01T12:00:00")), Occurrence("Sasquatch", true, (-84.1989, 37.89508), DateTime("1976-08-01T12:00:00")), Occurrence("Sasquatch", true, (-83.9311, 38.45795), DateTime("1980-10-11T12:00:00")), Occurrence("Sasquatch", true, (-85.0016, 38.44148), DateTime("1978-09-30T12:00:00")), Occurrence("Sasquatch", true, (-87.02245, 36.89478), DateTime("1972-10-01T12:00:00")), Occurrence("Sasquatch", true, (-86.98705, 37.05575), DateTime("1991-07-01T12:00:00")), Occurrence("Sasquatch", true, (-83.83695, 38.51465), DateTime("1980-10-07T12:00:00")), Occurrence("Sasquatch", true, (-83.80266, 38.63454), DateTime("1980-11-05T12:00:00")), Occurrence("Sasquatch", true, (-84.28714, 37.57039), DateTime("1973-08-01T12:00:00")), Occurrence("Sasquatch", true, (-83.25562, 37.37814), DateTime("1977-07-01T12:00:00")), Occurrence("Sasquatch", true, (-82.69576, 37.26532), DateTime("1994-10-15T12:00:00")), Occurrence("Sasquatch", true, (-82.64877, 38.42968), DateTime("1998-08-15T12:00:00")), Occurrence("Sasquatch", true, (-82.43635, 37.83777), DateTime("1950-07-01T12:00:00")), Occurrence("Sasquatch", true, (-84.33998, 36.66257), DateTime("2003-02-20T12:00:00")), Occurrence("Sasquatch", true, (-83.32354, 38.56277), DateTime("2005-02-05T12:00:00")), Occurrence("Sasquatch", true, (-82.83425, 38.02825), DateTime("2005-02-09T12:00:00")), Occurrence("Sasquatch", true, (-83.81139, 37.82708), DateTime("2004-04-20T12:00:00")), Occurrence("Sasquatch", true, (-84.588, 38.528), DateTime("2005-02-02T12:00:00")), Occurrence("Sasquatch", true, (-83.0452, 36.9265), DateTime("1981-02-02T12:00:00")), Occurrence("Sasquatch", true, (-82.83278, 38.02653), DateTime("2003-07-03T12:00:00")), Occurrence("Sasquatch", true, (-87.96917, 37.75972), DateTime("1996-11-15T12:00:00")), Occurrence("Sasquatch", true, (-88.15556, 36.82806), DateTime("1996-10-15T12:00:00")), Occurrence("Sasquatch", true, (-87.89472, 36.75139), DateTime("2005-07-15T12:00:00")), Occurrence("Sasquatch", true, (-83.95846, 37.0787), DateTime("2005-07-20T12:00:00")), Occurrence("Sasquatch", true, (-83.9769, 37.06226), DateTime("1991-04-15T12:00:00")), Occurrence("Sasquatch", true, (-87.52757, 37.29395), DateTime("1990-10-15T12:00:00")), Occurrence("Sasquatch", true, (-87.344, 37.6095), DateTime("2006-07-12T12:00:00")), Occurrence("Sasquatch", true, (-83.85683, 36.67311), DateTime("1982-10-15T12:00:00")), Occurrence("Sasquatch", true, (-83.89224, 37.49582), DateTime("2006-12-22T12:00:00")), Occurrence("Sasquatch", true, (-83.46259, 38.05703), DateTime("2008-06-14T12:00:00")), Occurrence("Sasquatch", true, (-84.67017, 38.90649), DateTime("1994-07-15T12:00:00")), Occurrence("Sasquatch", true, (-84.10435, 37.75745), DateTime("1983-09-15T12:00:00")), Occurrence("Sasquatch", true, (-86.45915, 36.68937), DateTime("2007-08-15T12:00:00")), Occurrence("Sasquatch", true, (-83.08006, 37.81144), DateTime("1972-09-30T12:00:00")), Occurrence("Sasquatch", true, (-87.01657, 37.64966), DateTime("2007-05-01T12:00:00")), Occurrence("Sasquatch", true, (-84.50035, 37.55156), DateTime("2009-08-31T12:00:00")), Occurrence("Sasquatch", true, (-82.48093, 37.42701), DateTime("1994-04-18T12:00:00")), Occurrence("Sasquatch", true, (-84.94009, 38.12912), DateTime("1982-11-15T12:00:00")), Occurrence("Sasquatch", true, (-82.5183, 37.47975), DateTime("2005-04-15T12:00:00")), Occurrence("Sasquatch", true, (-82.73412, 38.1078), DateTime("1983-08-01T12:00:00")), Occurrence("Sasquatch", true, (-86.11702, 37.96027), DateTime("2007-09-15T12:00:00")), Occurrence("Sasquatch", true, (-84.79574, 39.08002), DateTime("2011-09-15T12:00:00")), Occurrence("Sasquatch", true, (-84.90234, 37.97699), DateTime("2011-11-15T12:00:00")), Occurrence("Sasquatch", true, (-87.93167, 36.8216), DateTime("2010-08-15T12:00:00")), Occurrence("Sasquatch", true, (-82.69125, 38.06181), DateTime("2003-08-16T12:00:00")), Occurrence("Sasquatch", true, (-83.41507, 38.2592), DateTime("2012-12-08T12:00:00")), Occurrence("Sasquatch", true, (-83.42429, 36.83193), DateTime("2013-01-10T12:00:00")), Occurrence("Sasquatch", true, (-83.56467, 37.00633), DateTime("2006-12-09T12:00:00")), Occurrence("Sasquatch", true, (-86.93743, 37.65522), DateTime("2015-09-01T12:00:00")), Occurrence("Sasquatch", true, (-82.51773, 38.31738), DateTime("1990-09-09T12:00:00")), Occurrence("Sasquatch", true, (-86.05289, 37.51867), DateTime("2017-01-29T12:00:00")), Occurrence("Sasquatch", true, (-84.26856, 37.32355), DateTime("2008-10-15T12:00:00")), Occurrence("Sasquatch", true, (-90.8493, 30.1878), DateTime("2000-10-23T12:00:00")), Occurrence("Sasquatch", true, (-93.9467, 32.7817), DateTime("1987-11-15T12:00:00")), Occurrence("Sasquatch", true, (-92.3104, 31.6825), DateTime("2000-04-05T12:00:00")), Occurrence("Sasquatch", true, (-92.37835, 31.3799), DateTime("1978-07-15T12:00:00")), Occurrence("Sasquatch", true, (-92.4976, 31.1375), DateTime("1977-07-15T12:00:00")), Occurrence("Sasquatch", true, (-92.4054, 31.3058), DateTime("1981-06-01T12:00:00")), Occurrence("Sasquatch", true, (-92.40895, 32.8057), DateTime("1977-11-15T12:00:00")), Occurrence("Sasquatch", true, (-93.2512, 31.1458), DateTime("1979-07-15T12:00:00")), Occurrence("Sasquatch", true, (-92.3104, 31.6825), DateTime("2000-11-18T12:00:00")), Occurrence("Sasquatch", true, (-92.3309, 31.4871), DateTime("1996-12-06T12:00:00")), Occurrence("Sasquatch", true, (-93.0887, 31.6498), DateTime("1993-03-05T12:00:00")), Occurrence("Sasquatch", true, (-92.2508, 31.4676), DateTime("2000-08-22T12:00:00")), Occurrence("Sasquatch", true, (-92.3495, 31.3904), DateTime("1985-07-01T12:00:00")), Occurrence("Sasquatch", true, (-91.01565, 30.49905), DateTime("1982-06-05T12:00:00")), Occurrence("Sasquatch", true, (-93.2952, 31.14195), DateTime("1980-07-05T12:00:00")), Occurrence("Sasquatch", true, (-92.6221, 30.2576), DateTime("1972-10-14T12:00:00")), Occurrence("Sasquatch", true, (-93.50845, 31.5831), DateTime("2003-11-12T12:00:00")), Occurrence("Sasquatch", true, (-92.914, 32.0199), DateTime("2005-12-22T12:00:00")), Occurrence("Sasquatch", true, (-93.45, 32.895), DateTime("1971-11-12T12:00:00")), Occurrence("Sasquatch", true, (-91.14448, 32.0131), DateTime("1980-06-15T12:00:00")), Occurrence("Sasquatch", true, (-92.46844, 31.40304), DateTime("1980-10-15T12:00:00")), Occurrence("Sasquatch", true, (-91.76733, 30.74715), DateTime("2015-05-11T12:00:00")), Occurrence("Sasquatch", true, (-90.593, 29.5385), DateTime("1970-05-15T12:00:00")), Occurrence("Sasquatch", true, (-93.4991, 31.60641), DateTime("2018-07-15T12:00:00")), Occurrence("Sasquatch", true, (-93.21405, 31.69908), DateTime("2023-06-23T12:00:00")), Occurrence("Sasquatch", true, (-71.9023, 42.6688), DateTime("1977-12-17T12:00:00")), Occurrence("Sasquatch", true, (-71.58914, 42.01496), DateTime("2008-05-15T12:00:00")), Occurrence("Sasquatch", true, (-70.95906, 41.74419), DateTime("2010-07-06T12:00:00")), Occurrence("Sasquatch", true, (-71.42092, 42.09091), DateTime("2013-06-25T12:00:00")), Occurrence("Sasquatch", true, (-73.21289, 42.7396), DateTime("2015-09-05T12:00:00")), Occurrence("Sasquatch", true, (-76.82731, 39.08414), DateTime("2010-08-15T12:00:00")), Occurrence("Sasquatch", true, (-76.34047, 39.67183), DateTime("1993-09-15T12:00:00")), Occurrence("Sasquatch", true, (-70.61507, 44.34113), DateTime("2020-09-26T12:00:00")), Occurrence("Sasquatch", true, (-67.85097, 46.48417), DateTime("2023-12-18T12:00:00")), Occurrence("Sasquatch", true, (-84.58583, 43.74), DateTime("1997-11-15T12:00:00")), Occurrence("Sasquatch", true, (-82.53083, 43.26806), DateTime("1987-08-15T12:00:00")), Occurrence("Sasquatch", true, (-84.42722, 43.59611), DateTime("1977-09-15T12:00:00")), Occurrence("Sasquatch", true, (-87.73236, 46.61183), DateTime("1991-08-01T12:00:00")), Occurrence("Sasquatch", true, (-84.2114, 43.79834), DateTime("1972-11-15T12:00:00")), Occurrence("Sasquatch", true, (-83.60472, 42.30472), DateTime("2001-08-07T12:00:00")), Occurrence("Sasquatch", true, (-84.66833, 43.5975), DateTime("1990-10-20T12:00:00")), Occurrence("Sasquatch", true, (-85.60028, 42.39472), DateTime("2002-05-26T12:00:00")), Occurrence("Sasquatch", true, (-85.34194, 43.235), DateTime("2002-06-12T12:00:00")), Occurrence("Sasquatch", true, (-84.7602, 44.4355), DateTime("1980-08-12T12:00:00")), Occurrence("Sasquatch", true, (-86.16861, 42.86361), DateTime("2002-11-07T12:00:00")), Occurrence("Sasquatch", true, (-83.18583, 43.41444), DateTime("1999-02-15T12:00:00")), Occurrence("Sasquatch", true, (-83.27139, 43.94111), DateTime("1965-07-15T12:00:00")), Occurrence("Sasquatch", true, (-87.42407, 46.47182), DateTime("1996-07-14T12:00:00")), Occurrence("Sasquatch", true, (-84.35389, 41.93), DateTime("1977-05-15T12:00:00")), Occurrence("Sasquatch", true, (-83.92834, 43.92736), DateTime("2003-11-15T12:00:00")), Occurrence("Sasquatch", true, (-83.58, 42.40611), DateTime("2004-03-27T12:00:00")), Occurrence("Sasquatch", true, (-85.82096, 44.51436), DateTime("1998-08-10T12:00:00")), Occurrence("Sasquatch", true, (-85.05965, 42.323), DateTime("1974-09-16T12:00:00")), Occurrence("Sasquatch", true, (-84.05358, 44.36434), DateTime("2003-11-17T12:00:00")), Occurrence("Sasquatch", true, (-84.7802, 41.9773), DateTime("2006-04-11T12:00:00")), Occurrence("Sasquatch", true, (-84.72922, 44.29188), DateTime("1999-04-14T12:00:00")), Occurrence("Sasquatch", true, (-88.16701, 46.5244), DateTime("1971-07-15T12:00:00")), Occurrence("Sasquatch", true, (-87.98718, 46.01398), DateTime("1965-07-01T12:00:00")), Occurrence("Sasquatch", true, (-87.48289, 46.09045), DateTime("1990-10-01T12:00:00")), Occurrence("Sasquatch", true, (-84.87524, 45.91515), DateTime("1979-06-01T12:00:00")), Occurrence("Sasquatch", true, (-87.3289, 45.9642), DateTime("1982-10-01T12:00:00")), Occurrence("Sasquatch", true, (-84.7378, 42.3125), DateTime("1979-10-18T12:00:00")), Occurrence("Sasquatch", true, (-85.95865, 46.34575), DateTime("1977-01-01T12:00:00")), Occurrence("Sasquatch", true, (-85.589, 46.56725), DateTime("1986-07-01T12:00:00")), Occurrence("Sasquatch", true, (-84.40335, 44.41835), DateTime("2008-10-22T12:00:00")), Occurrence("Sasquatch", true, (-85.41, 43.21), DateTime("2008-10-06T12:00:00")), Occurrence("Sasquatch", true, (-86.5228, 46.3126), DateTime("1993-06-07T12:00:00")), Occurrence("Sasquatch", true, (-84.04025, 42.68505), DateTime("1978-07-01T12:00:00")), Occurrence("Sasquatch", true, (-84.71, 44.7), DateTime("1973-05-01T12:00:00")), Occurrence("Sasquatch", true, (-88.28403, 46.56913), DateTime("1970-09-01T12:00:00")), Occurrence("Sasquatch", true, (-85.97613, 46.18968), DateTime("2002-09-15T12:00:00")), Occurrence("Sasquatch", true, (-86.1437, 45.964), DateTime("1962-04-01T12:00:00")), Occurrence("Sasquatch", true, (-85.86292, 44.62845), DateTime("1985-05-15T12:00:00")), Occurrence("Sasquatch", true, (-84.425, 45.1475), DateTime("2008-10-16T12:00:00")), Occurrence("Sasquatch", true, (-84.12485, 44.76), DateTime("2008-10-12T12:00:00")), Occurrence("Sasquatch", true, (-83.845, 44.565), DateTime("2008-11-18T12:00:00")), Occurrence("Sasquatch", true, (-84.6, 44.17335), DateTime("2009-07-16T12:00:00")), Occurrence("Sasquatch", true, (-84.06493, 44.5256), DateTime("1997-10-01T12:00:00")), Occurrence("Sasquatch", true, (-84.355, 43.87), DateTime("1996-10-01T12:00:00")), Occurrence("Sasquatch", true, (-85.12935, 43.45135), DateTime("1986-09-01T12:00:00")), Occurrence("Sasquatch", true, (-84.9825, 43.1095), DateTime("1983-08-15T12:00:00")), Occurrence("Sasquatch", true, (-84.165, 44.94835), DateTime("2010-07-26T12:00:00")), Occurrence("Sasquatch", true, (-84.0415, 44.59665), DateTime("2010-10-09T12:00:00")), Occurrence("Sasquatch", true, (-84.91665, 46.37165), DateTime("2011-02-21T12:00:00")), Occurrence("Sasquatch", true, (-85.00165, 44.76665), DateTime("2011-05-23T12:00:00")), Occurrence("Sasquatch", true, (-84.605, 45.35665), DateTime("2009-07-17T12:00:00")), Occurrence("Sasquatch", true, (-84.22701, 42.068), DateTime("1980-11-16T12:00:00")), Occurrence("Sasquatch", true, (-83.85985, 45.40985), DateTime("1967-05-17T12:00:00")), Occurrence("Sasquatch", true, (-85.075, 44.525), DateTime("2011-06-29T12:00:00")), Occurrence("Sasquatch", true, (-87.02158, 45.87165), DateTime("1997-10-13T12:00:00")), Occurrence("Sasquatch", true, (-86.10172, 44.22671), DateTime("2009-11-15T12:00:00")), Occurrence("Sasquatch", true, (-85.0, 45.0), DateTime("2011-11-05T12:00:00")), Occurrence("Sasquatch", true, (-87.46171, 46.60424), DateTime("2002-11-15T12:00:00")), Occurrence("Sasquatch", true, (-86.21193, 46.19183), DateTime("2010-08-15T12:00:00")), Occurrence("Sasquatch", true, (-84.2995, 41.871), DateTime("1978-07-15T12:00:00")), Occurrence("Sasquatch", true, (-86.4565, 43.674), DateTime("2011-07-15T12:00:00")), Occurrence("Sasquatch", true, (-83.4885, 45.351), DateTime("2003-07-15T12:00:00")), Occurrence("Sasquatch", true, (-85.2165, 44.1305), DateTime("2009-05-04T12:00:00")), Occurrence("Sasquatch", true, (-85.92196, 44.0559), DateTime("2012-07-15T12:00:00")), Occurrence("Sasquatch", true, (-85.6885, 42.225), DateTime("1974-03-15T12:00:00")), Occurrence("Sasquatch", true, (-83.89001, 44.2725), DateTime("2013-04-11T12:00:00")), Occurrence("Sasquatch", true, (-86.19037, 44.38367), DateTime("1984-10-01T12:00:00")), Occurrence("Sasquatch", true, (-85.51546, 44.50587), DateTime("2000-10-21T12:00:00")), Occurrence("Sasquatch", true, (-89.91997, 46.3018), DateTime("2016-08-15T12:00:00")), Occurrence("Sasquatch", true, (-84.88741, 43.38621), DateTime("2017-10-28T12:00:00")), Occurrence("Sasquatch", true, (-82.53918, 43.39116), DateTime("2020-08-01T12:00:00")), Occurrence("Sasquatch", true, (-92.36145, 43.80075), DateTime("2002-05-19T12:00:00")), Occurrence("Sasquatch", true, (-93.02428, 47.27147), DateTime("2004-07-17T12:00:00")), Occurrence("Sasquatch", true, (-92.36145, 43.80075), DateTime("2005-10-08T12:00:00")), Occurrence("Sasquatch", true, (-92.53, 47.5754), DateTime("2006-11-10T12:00:00")), Occurrence("Sasquatch", true, (-93.06226, 45.1836), DateTime("2000-02-21T12:00:00")), Occurrence("Sasquatch", true, (-95.11484, 46.50385), DateTime("1992-08-15T12:00:00")), Occurrence("Sasquatch", true, (-94.98708, 47.43842), DateTime("2010-12-04T12:00:00")), Occurrence("Sasquatch", true, (-93.25262, 47.52522), DateTime("1970-11-01T12:00:00")), Occurrence("Sasquatch", true, (-93.0, 47.5), DateTime("2009-08-16T12:00:00")), Occurrence("Sasquatch", true, (-92.01759, 47.4284), DateTime("2012-09-03T12:00:00")), Occurrence("Sasquatch", true, (-94.27725, 45.8), DateTime("2018-03-17T12:00:00")), Occurrence("Sasquatch", true, (-92.92708, 47.83334), DateTime("2018-07-17T12:00:00")), Occurrence("Sasquatch", true, (-92.83774, 46.92417), DateTime("2019-07-25T12:00:00")), Occurrence("Sasquatch", true, (-91.97748, 47.87965), DateTime("2020-11-09T12:00:00")), Occurrence("Sasquatch", true, (-93.61481, 47.49753), DateTime("1999-09-15T12:00:00")), Occurrence("Sasquatch", true, (-94.05931, 47.27125), DateTime("2023-10-06T12:00:00")), Occurrence("Sasquatch", true, (-92.66002, 46.07803), DateTime("2024-05-09T12:00:00")), Occurrence("Sasquatch", true, (-91.432, 37.8597), DateTime("1977-08-15T12:00:00")), Occurrence("Sasquatch", true, (-92.97639, 38.04414), DateTime("1986-06-15T12:00:00")), Occurrence("Sasquatch", true, (-91.6533, 39.8397), DateTime("1997-06-15T12:00:00")), Occurrence("Sasquatch", true, (-91.2, 36.6), DateTime("1971-06-01T12:00:00")), Occurrence("Sasquatch", true, (-91.09014, 39.29007), DateTime("1991-03-31T12:00:00")), Occurrence("Sasquatch", true, (-91.093, 39.3735), DateTime("1972-07-15T12:00:00")), Occurrence("Sasquatch", true, (-92.20055, 37.82861), DateTime("1989-02-15T12:00:00")), Occurrence("Sasquatch", true, (-93.5577, 38.0944), DateTime("1982-07-15T12:00:00")), Occurrence("Sasquatch", true, (-93.8794, 37.9939), DateTime("1977-08-15T12:00:00")), Occurrence("Sasquatch", true, (-90.0329, 37.8602), DateTime("2000-05-31T12:00:00")), Occurrence("Sasquatch", true, (-90.7517, 38.039), DateTime("1956-10-15T12:00:00")), Occurrence("Sasquatch", true, (-90.675, 38.655), DateTime("1976-08-01T12:00:00")), Occurrence("Sasquatch", true, (-93.13545, 37.07354), DateTime("1988-06-01T12:00:00")), Occurrence("Sasquatch", true, (-93.71506, 37.11433), DateTime("1977-09-01T12:00:00")), Occurrence("Sasquatch", true, (-92.59781, 38.81124), DateTime("1975-10-15T12:00:00")), Occurrence("Sasquatch", true, (-92.173, 37.714), DateTime("1982-05-15T12:00:00")), Occurrence("Sasquatch", true, (-92.425, 36.615), DateTime("2004-12-05T12:00:00")), Occurrence("Sasquatch", true, (-93.4303, 37.0968), DateTime("2002-08-09T12:00:00")), Occurrence("Sasquatch", true, (-92.8254, 38.3085), DateTime("2004-11-20T12:00:00")), Occurrence("Sasquatch", true, (-91.6253, 38.28), DateTime("2003-04-11T12:00:00")), Occurrence("Sasquatch", true, (-92.9282, 39.7557), DateTime("2004-11-21T12:00:00")), Occurrence("Sasquatch", true, (-92.411, 38.305), DateTime("2004-12-05T12:00:00")), Occurrence("Sasquatch", true, (-93.614, 37.3317), DateTime("2004-12-05T12:00:00")), Occurrence("Sasquatch", true, (-93.8232, 36.8133), DateTime("2004-12-06T12:00:00")), Occurrence("Sasquatch", true, (-91.96238, 38.62), DateTime("2004-12-06T12:00:00")), Occurrence("Sasquatch", true, (-90.52987, 38.69428), DateTime("2005-10-15T12:00:00")), Occurrence("Sasquatch", true, (-93.894, 37.117), DateTime("1997-07-19T12:00:00")), Occurrence("Sasquatch", true, (-90.9525, 36.66708), DateTime("1998-04-25T12:00:00")), Occurrence("Sasquatch", true, (-93.65774, 36.67065), DateTime("1975-07-15T12:00:00")), Occurrence("Sasquatch", true, (-89.67815, 36.00565), DateTime("1960-08-15T12:00:00")), Occurrence("Sasquatch", true, (-90.39488, 38.22635), DateTime("1999-04-15T12:00:00")), Occurrence("Sasquatch", true, (-94.856, 39.859), DateTime("2007-07-17T12:00:00")), Occurrence("Sasquatch", true, (-89.6075, 37.286), DateTime("1994-11-11T12:00:00")), Occurrence("Sasquatch", true, (-92.7622, 36.94109), DateTime("1986-08-14T12:00:00")), Occurrence("Sasquatch", true, (-93.684, 37.664), DateTime("2007-04-15T12:00:00")), Occurrence("Sasquatch", true, (-89.55949, 37.236), DateTime("1969-07-16T12:00:00")), Occurrence("Sasquatch", true, (-93.82087, 37.87153), DateTime("2005-11-18T12:00:00")), Occurrence("Sasquatch", true, (-90.53249, 38.73802), DateTime("1976-10-20T12:00:00")), Occurrence("Sasquatch", true, (-92.09264, 36.97061), DateTime("1967-07-30T12:00:00")), Occurrence("Sasquatch", true, (-90.79886, 37.79465), DateTime("2005-08-25T12:00:00")), Occurrence("Sasquatch", true, (-89.98725, 36.06055), DateTime("1961-10-15T12:00:00")), Occurrence("Sasquatch", true, (-91.16042, 38.2081), DateTime("2009-10-15T12:00:00")), Occurrence("Sasquatch", true, (-92.36771, 38.9099), DateTime("2008-01-20T12:00:00")), Occurrence("Sasquatch", true, (-89.86899, 36.87593), DateTime("1986-01-14T12:00:00")), Occurrence("Sasquatch", true, (-94.52888, 37.03575), DateTime("2010-06-22T12:00:00")), Occurrence("Sasquatch", true, (-90.66216, 38.21285), DateTime("1983-10-25T12:00:00")), Occurrence("Sasquatch", true, (-94.60989, 36.51627), DateTime("2010-09-12T12:00:00")), Occurrence("Sasquatch", true, (-92.07335, 38.56724), DateTime("1999-06-30T12:00:00")), Occurrence("Sasquatch", true, (-92.3046, 36.8109), DateTime("1980-10-27T12:00:00")), Occurrence("Sasquatch", true, (-94.16049, 39.04035), DateTime("1991-10-19T12:00:00")), Occurrence("Sasquatch", true, (-94.11218, 37.85524), DateTime("2011-11-22T12:00:00")), Occurrence("Sasquatch", true, (-94.6028, 37.84203), DateTime("2012-09-18T12:00:00")), Occurrence("Sasquatch", true, (-91.3012, 37.39315), DateTime("1971-11-17T12:00:00")), Occurrence("Sasquatch", true, (-90.23058, 37.40025), DateTime("2012-10-15T12:00:00")), Occurrence("Sasquatch", true, (-92.11988, 37.02496), DateTime("1982-11-15T12:00:00")), Occurrence("Sasquatch", true, (-93.14626, 36.39835), DateTime("2013-10-15T12:00:00")), Occurrence("Sasquatch", true, (-94.19245, 38.5229), DateTime("2013-03-08T12:00:00")), Occurrence("Sasquatch", true, (-94.59565, 39.30745), DateTime("2013-04-27T12:00:00")), Occurrence("Sasquatch", true, (-94.1057, 38.5992), DateTime("2013-06-07T12:00:00")), Occurrence("Sasquatch", true, (-93.29459, 36.66887), DateTime("1994-08-23T12:00:00")), Occurrence("Sasquatch", true, (-94.02478, 40.39956), DateTime("1979-08-01T12:00:00")), Occurrence("Sasquatch", true, (-92.408, 38.437), DateTime("1973-06-13T12:00:00")), Occurrence("Sasquatch", true, (-94.40015, 39.60238), DateTime("2014-07-11T12:00:00")), Occurrence("Sasquatch", true, (-90.83465, 37.30427), DateTime("2014-07-16T12:00:00")), Occurrence("Sasquatch", true, (-94.22043, 38.99353), DateTime("2014-03-05T12:00:00")), Occurrence("Sasquatch", true, (-91.154, 36.469), DateTime("2012-05-16T12:00:00")), Occurrence("Sasquatch", true, (-92.32704, 38.93704), DateTime("2000-05-01T12:00:00")), Occurrence("Sasquatch", true, (-94.29428, 39.502), DateTime("2018-01-29T12:00:00")), Occurrence("Sasquatch", true, (-91.578, 37.422), DateTime("2013-07-15T12:00:00")), Occurrence("Sasquatch", true, (-94.271, 39.2475), DateTime("2012-05-19T12:00:00")), Occurrence("Sasquatch", true, (-90.177, 37.718), DateTime("1976-04-10T12:00:00")), Occurrence("Sasquatch", true, (-92.05, 37.7925), DateTime("2017-07-08T12:00:00")), Occurrence("Sasquatch", true, (-94.43649, 39.3875), DateTime("1996-06-08T12:00:00")), Occurrence("Sasquatch", true, (-93.4025, 39.1175), DateTime("2003-07-11T12:00:00")), Occurrence("Sasquatch", true, (-90.5545, 38.203), DateTime("2019-03-08T12:00:00")), Occurrence("Sasquatch", true, (-92.225, 38.485), DateTime("2014-04-27T12:00:00")), Occurrence("Sasquatch", true, (-94.332, 38.397), DateTime("1988-12-14T12:00:00")), Occurrence("Sasquatch", true, (-94.352, 38.3905), DateTime("1989-10-13T12:00:00")), Occurrence("Sasquatch", true, (-89.25555, 36.9897), DateTime("2016-08-01T12:00:00")), Occurrence("Sasquatch", true, (-94.14297, 38.46156), DateTime("2020-07-23T12:00:00")), Occurrence("Sasquatch", true, (-93.285, 37.5515), DateTime("2016-10-16T12:00:00")), Occurrence("Sasquatch", true, (-92.52242, 37.46392), DateTime("2020-10-05T12:00:00")), Occurrence("Sasquatch", true, (-90.277, 37.0505), DateTime("2016-04-01T12:00:00")), Occurrence("Sasquatch", true, (-90.71574, 31.1603), DateTime("1973-01-01T12:00:00")), Occurrence("Sasquatch", true, (-89.59135, 33.10925), DateTime("1950-01-01T12:00:00")), Occurrence("Sasquatch", true, (-89.6111, 30.2464), DateTime("1975-07-01T12:00:00")), Occurrence("Sasquatch", true, (-88.74805, 32.3372), DateTime("1977-04-30T12:00:00")), Occurrence("Sasquatch", true, (-88.40335, 33.50025), DateTime("1978-08-06T12:00:00")), Occurrence("Sasquatch", true, (-89.845, 34.31605), DateTime("1997-10-16T12:00:00")), Occurrence("Sasquatch", true, (-88.7496, 32.2714), DateTime("1975-08-14T12:00:00")), Occurrence("Sasquatch", true, (-89.0338, 30.97675), DateTime("2005-01-13T12:00:00")), Occurrence("Sasquatch", true, (-90.8022, 33.56555), DateTime("2005-01-30T12:00:00")), Occurrence("Sasquatch", true, (-91.08505, 31.39275), DateTime("1979-11-28T12:00:00")), Occurrence("Sasquatch", true, (-88.864, 32.1806), DateTime("2004-06-15T12:00:00")), Occurrence("Sasquatch", true, (-88.19894, 34.60905), DateTime("2006-01-05T12:00:00")), Occurrence("Sasquatch", true, (-88.77015, 32.036), DateTime("1987-10-10T12:00:00")), Occurrence("Sasquatch", true, (-88.77015, 32.036), DateTime("1987-10-10T12:00:00")), Occurrence("Sasquatch", true, (-90.19371, 32.40191), DateTime("1979-10-10T12:00:00")), Occurrence("Sasquatch", true, (-111.125, 45.22417), DateTime("1993-06-03T12:00:00")), Occurrence("Sasquatch", true, (-113.1236, 48.36139), DateTime("1982-10-02T12:00:00")), Occurrence("Sasquatch", true, (-112.7031, 47.04333), DateTime("1982-06-30T12:00:00")), Occurrence("Sasquatch", true, (-111.8861, 46.76472), DateTime("1977-08-16T12:00:00")), Occurrence("Sasquatch", true, (-113.8381, 46.97694), DateTime("1977-07-14T12:00:00")), Occurrence("Sasquatch", true, (-110.3308, 46.01833), DateTime("1989-05-20T12:00:00")), Occurrence("Sasquatch", true, (-104.1922, 47.70667), DateTime("1979-12-31T12:00:00")), Occurrence("Sasquatch", true, (-110.8069, 45.66722), DateTime("2001-08-22T12:00:00")), Occurrence("Sasquatch", true, (-112.702, 46.83285), DateTime("1994-07-12T12:00:00")), Occurrence("Sasquatch", true, (-111.9094, 47.12806), DateTime("2004-01-18T12:00:00")), Occurrence("Sasquatch", true, (-115.3903, 47.62167), DateTime("2004-03-14T12:00:00")), Occurrence("Sasquatch", true, (-114.0717, 47.06032), DateTime("2004-07-20T12:00:00")), Occurrence("Sasquatch", true, (-113.1198, 46.02962), DateTime("1991-10-11T12:00:00")), Occurrence("Sasquatch", true, (-106.8331, 45.0262), DateTime("2007-01-15T12:00:00")), Occurrence("Sasquatch", true, (-114.0125, 45.82285), DateTime("2005-09-20T12:00:00")), Occurrence("Sasquatch", true, (-112.4554, 45.9754), DateTime("2007-08-15T12:00:00")), Occurrence("Sasquatch", true, (-108.6873, 47.66724), DateTime("2011-01-08T12:00:00")), Occurrence("Sasquatch", true, (-110.7781, 46.76389), DateTime("2010-05-29T12:00:00")), Occurrence("Sasquatch", true, (-112.9707, 45.3705), DateTime("2012-06-24T12:00:00")), Occurrence("Sasquatch", true, (-113.9818, 47.98521), DateTime("2019-06-12T12:00:00")), Occurrence("Sasquatch", true, (-114.45, 47.25335), DateTime("2017-12-01T12:00:00")), Occurrence("Sasquatch", true, (-115.6545, 47.43904), DateTime("2020-04-15T12:00:00")), Occurrence("Sasquatch", true, (-109.8116, 48.18218), DateTime("2024-10-20T12:00:00")), Occurrence("Sasquatch", true, (-77.2914, 34.6894), DateTime("1965-10-01T12:00:00")), Occurrence("Sasquatch", true, (-82.443, 35.33975), DateTime("1983-04-15T12:00:00")), Occurrence("Sasquatch", true, (-83.28265, 35.2483), DateTime("1973-10-01T12:00:00")), Occurrence("Sasquatch", true, (-76.29115, 36.3715), DateTime("1982-10-01T12:00:00")), Occurrence("Sasquatch", true, (-80.26915, 35.2256), DateTime("1994-11-30T12:00:00")), Occurrence("Sasquatch", true, (-80.7704, 36.09945), DateTime("1971-10-01T12:00:00")), Occurrence("Sasquatch", true, (-78.4048, 35.5311), DateTime("2002-07-14T12:00:00")), Occurrence("Sasquatch", true, (-78.63611, 35.18637), DateTime("1976-11-15T12:00:00")), Occurrence("Sasquatch", true, (-78.09365, 36.21335), DateTime("1983-11-15T12:00:00")), Occurrence("Sasquatch", true, (-80.6282, 35.91965), DateTime("1977-08-15T12:00:00")), Occurrence("Sasquatch", true, (-79.03025, 36.31625), DateTime("1997-11-15T12:00:00")), Occurrence("Sasquatch", true, (-80.0616, 35.4449), DateTime("2004-06-12T12:00:00")), Occurrence("Sasquatch", true, (-77.50434, 34.53784), DateTime("1999-07-16T12:00:00")), Occurrence("Sasquatch", true, (-81.5917, 35.6267), DateTime("1972-11-18T12:00:00")), Occurrence("Sasquatch", true, (-82.829, 35.892), DateTime("2005-07-05T12:00:00")), Occurrence("Sasquatch", true, (-76.946, 35.998), DateTime("1989-11-11T12:00:00")), Occurrence("Sasquatch", true, (-82.287, 35.451), DateTime("1991-03-15T12:00:00")), Occurrence("Sasquatch", true, (-82.321, 35.618), DateTime("1991-11-17T12:00:00")), Occurrence("Sasquatch", true, (-79.75644, 35.30773), DateTime("1990-06-30T12:00:00")), Occurrence("Sasquatch", true, (-80.375, 35.75), DateTime("2007-04-09T12:00:00")), Occurrence("Sasquatch", true, (-77.23759, 34.40434), DateTime("2005-02-10T12:00:00")), Occurrence("Sasquatch", true, (-77.90525, 36.0089), DateTime("1979-07-18T12:00:00")), Occurrence("Sasquatch", true, (-81.30889, 36.31126), DateTime("1978-08-24T12:00:00")), Occurrence("Sasquatch", true, (-81.92929, 35.88561), DateTime("2010-11-09T12:00:00")), Occurrence("Sasquatch", true, (-79.21278, 35.18083), DateTime("1995-10-14T12:00:00")), Occurrence("Sasquatch", true, (-82.05008, 35.85107), DateTime("2009-09-30T12:00:00")), Occurrence("Sasquatch", true, (-82.22121, 35.75278), DateTime("2011-08-21T12:00:00")), Occurrence("Sasquatch", true, (-77.53445, 34.50917), DateTime("1983-10-02T12:00:00")), Occurrence("Sasquatch", true, (-82.56715, 35.41939), DateTime("2009-07-20T12:00:00")), Occurrence("Sasquatch", true, (-81.03185, 35.94647), DateTime("2013-06-12T12:00:00")), Occurrence("Sasquatch", true, (-77.85507, 34.78052), DateTime("2011-11-19T12:00:00")), Occurrence("Sasquatch", true, (-79.26708, 34.5287), DateTime("2015-10-13T12:00:00")), Occurrence("Sasquatch", true, (-82.488, 35.1685), DateTime("2011-09-10T12:00:00")), Occurrence("Sasquatch", true, (-83.52992, 35.33783), DateTime("2020-01-31T12:00:00")), Occurrence("Sasquatch", true, (-79.97967, 35.24749), DateTime("2020-06-18T12:00:00")), Occurrence("Sasquatch", true, (-81.08335, 36.0055), DateTime("2019-11-18T12:00:00")), Occurrence("Sasquatch", true, (-83.17152, 35.53467), DateTime("2021-05-30T12:00:00")), Occurrence("Sasquatch", true, (-79.1514, 36.13009), DateTime("2022-07-01T12:00:00")), Occurrence("Sasquatch", true, (-101.3166, 48.25422), DateTime("2000-04-21T12:00:00")), Occurrence("Sasquatch", true, (-102.701, 47.72964), DateTime("2004-02-22T12:00:00")), Occurrence("Sasquatch", true, (-101.8886, 47.71188), DateTime("2005-08-27T12:00:00")), Occurrence("Sasquatch", true, (-96.7432, 40.1399), DateTime("1974-09-30T12:00:00")), Occurrence("Sasquatch", true, (-97.97573, 42.76609), DateTime("1979-09-15T12:00:00")), Occurrence("Sasquatch", true, (-96.6824, 40.84792), DateTime("1980-06-30T12:00:00")), Occurrence("Sasquatch", true, (-95.88, 41.134), DateTime("1975-08-13T12:00:00")), Occurrence("Sasquatch", true, (-95.92, 41.238), DateTime("2005-08-13T12:00:00")), Occurrence("Sasquatch", true, (-98.22576, 41.55099), DateTime("2008-08-15T12:00:00")), Occurrence("Sasquatch", true, (-100.5501, 42.87331), DateTime("1957-09-18T12:00:00")), Occurrence("Sasquatch", true, (-103.398, 42.5893), DateTime("1996-07-05T12:00:00")), Occurrence("Sasquatch", true, (-95.92398, 41.23787), DateTime("2005-08-15T12:00:00")), Occurrence("Sasquatch", true, (-95.87319, 41.17193), DateTime("2012-06-01T12:00:00")), Occurrence("Sasquatch", true, (-95.92381, 41.23796), DateTime("2024-11-08T12:00:00")), Occurrence("Sasquatch", true, (-72.33093, 43.41549), DateTime("2016-06-07T12:00:00")), Occurrence("Sasquatch", true, (-74.4611, 40.478), DateTime("2005-12-11T12:00:00")), Occurrence("Sasquatch", true, (-74.6215, 40.7446), DateTime("2004-04-23T12:00:00")), Occurrence("Sasquatch", true, (-74.2918, 40.8959), DateTime("1971-10-16T12:00:00")), Occurrence("Sasquatch", true, (-74.321, 41.08335), DateTime("2005-12-10T12:00:00")), Occurrence("Sasquatch", true, (-74.68135, 40.16465), DateTime("2005-12-10T12:00:00")), Occurrence("Sasquatch", true, (-74.3249, 40.9934), DateTime("2005-12-10T12:00:00")), Occurrence("Sasquatch", true, (-74.3749, 39.7962), DateTime("2006-03-09T12:00:00")), Occurrence("Sasquatch", true, (-74.43445, 39.60835), DateTime("1998-07-15T12:00:00")), Occurrence("Sasquatch", true, (-74.59959, 41.14652), DateTime("1997-11-15T12:00:00")), Occurrence("Sasquatch", true, (-74.85561, 40.8192), DateTime("2007-03-31T12:00:00")), Occurrence("Sasquatch", true, (-74.72261, 40.18478), DateTime("1977-06-03T12:00:00")), Occurrence("Sasquatch", true, (-74.57013, 41.01941), DateTime("2013-02-15T12:00:00")), Occurrence("Sasquatch", true, (-74.80315, 41.13498), DateTime("1977-07-09T12:00:00")), Occurrence("Sasquatch", true, (-75.38251, 39.70852), DateTime("2012-12-29T12:00:00")), Occurrence("Sasquatch", true, (-74.86777, 41.16033), DateTime("2015-09-20T12:00:00")), Occurrence("Sasquatch", true, (-74.36187, 39.98216), DateTime("2016-11-21T12:00:00")), Occurrence("Sasquatch", true, (-74.54086, 39.7784), DateTime("2019-06-20T12:00:00")), Occurrence("Sasquatch", true, (-74.77675, 40.45815), DateTime("2008-07-25T12:00:00")), Occurrence("Sasquatch", true, (-74.09944, 40.18113), DateTime("1981-09-04T12:00:00")), Occurrence("Sasquatch", true, (-75.10519, 39.64144), DateTime("1998-05-15T12:00:00")), Occurrence("Sasquatch", true, (-105.7395, 33.27735), DateTime("2001-08-06T12:00:00")), Occurrence("Sasquatch", true, (-108.87, 36.126), DateTime("2002-06-15T12:00:00")), Occurrence("Sasquatch", true, (-106.8803, 35.98475), DateTime("1983-05-07T12:00:00")), Occurrence("Sasquatch", true, (-105.7947, 33.15405), DateTime("2004-07-26T12:00:00")), Occurrence("Sasquatch", true, (-108.8676, 35.63736), DateTime("2002-09-17T12:00:00")), Occurrence("Sasquatch", true, (-104.4801, 36.9934), DateTime("2005-01-23T12:00:00")), Occurrence("Sasquatch", true, (-107.3956, 36.72065), DateTime("2005-01-10T12:00:00")), Occurrence("Sasquatch", true, (-107.6021, 36.7474), DateTime("2004-12-15T12:00:00")), Occurrence("Sasquatch", true, (-109.0612, 36.39135), DateTime("2003-10-19T12:00:00")), Occurrence("Sasquatch", true, (-108.7608, 36.81315), DateTime("2002-03-16T12:00:00")), Occurrence("Sasquatch", true, (-107.9978, 35.58565), DateTime("2005-11-03T12:00:00")), Occurrence("Sasquatch", true, (-108.892, 36.08089), DateTime("2009-05-12T12:00:00")), Occurrence("Sasquatch", true, (-105.9678, 36.65339), DateTime("2011-02-20T12:00:00")), Occurrence("Sasquatch", true, (-108.2034, 35.37201), DateTime("2011-03-07T12:00:00")), Occurrence("Sasquatch", true, (-108.84, 36.0605), DateTime("2011-07-16T12:00:00")), Occurrence("Sasquatch", true, (-105.2526, 35.52162), DateTime("2013-10-18T12:00:00")), Occurrence("Sasquatch", true, (-106.9285, 33.82819), DateTime("1986-12-24T12:00:00")), Occurrence("Sasquatch", true, (-108.0932, 33.48375), DateTime("2024-06-30T12:00:00")), Occurrence("Sasquatch", true, (-119.6564, 39.29056), DateTime("1980-09-15T12:00:00")), Occurrence("Sasquatch", true, (-119.6665, 39.679), DateTime("1972-08-15T12:00:00")), Occurrence("Sasquatch", true, (-119.8458, 39.00056), DateTime("1984-09-15T12:00:00")), Occurrence("Sasquatch", true, (-118.325, 37.8583), DateTime("2004-10-15T12:00:00")), Occurrence("Sasquatch", true, (-76.75318, 42.32724), DateTime("1999-09-13T12:00:00")), Occurrence("Sasquatch", true, (-77.4028, 42.6153), DateTime("2006-10-07T12:00:00")), Occurrence("Sasquatch", true, (-75.0116, 42.36176), DateTime("2003-03-01T12:00:00")), Occurrence("Sasquatch", true, (-75.64853, 42.1174), DateTime("2001-10-22T12:00:00")), Occurrence("Sasquatch", true, (-74.14589, 44.26646), DateTime("1996-08-15T12:00:00")), Occurrence("Sasquatch", true, (-78.23962, 43.34806), DateTime("2003-01-15T12:00:00")), Occurrence("Sasquatch", true, (-77.93121, 42.09785), DateTime("1998-02-01T12:00:00")), Occurrence("Sasquatch", true, (-73.7171, 41.5036), DateTime("1980-08-21T12:00:00")), Occurrence("Sasquatch", true, (-75.3811, 42.32921), DateTime("2004-05-31T12:00:00")), Occurrence("Sasquatch", true, (-78.54224, 43.19501), DateTime("2002-09-21T12:00:00")), Occurrence("Sasquatch", true, (-78.82683, 42.15947), DateTime("2004-10-15T12:00:00")), Occurrence("Sasquatch", true, (-77.60525, 42.28045), DateTime("1980-04-21T12:00:00")), Occurrence("Sasquatch", true, (-74.8865, 42.56379), DateTime("1973-08-01T12:00:00")), Occurrence("Sasquatch", true, (-78.3253, 43.22649), DateTime("1997-04-15T12:00:00")), Occurrence("Sasquatch", true, (-73.87915, 41.94512), DateTime("2010-02-15T12:00:00")), Occurrence("Sasquatch", true, (-76.89331, 43.27314), DateTime("2003-09-20T12:00:00")), Occurrence("Sasquatch", true, (-73.73717, 41.29873), DateTime("2010-09-01T12:00:00")), Occurrence("Sasquatch", true, (-73.55858, 41.87219), DateTime("2013-11-09T12:00:00")), Occurrence("Sasquatch", true, (-74.23166, 43.46181), DateTime("2014-07-11T12:00:00")), Occurrence("Sasquatch", true, (-73.34116, 43.55915), DateTime("2018-08-07T12:00:00")), Occurrence("Sasquatch", true, (-78.7492, 42.06832), DateTime("2013-07-23T12:00:00")), Occurrence("Sasquatch", true, (-74.1468, 41.26455), DateTime("1994-09-14T12:00:00")), Occurrence("Sasquatch", true, (-73.87529, 44.22388), DateTime("2010-08-06T12:00:00")), Occurrence("Sasquatch", true, (-73.40212, 43.56058), DateTime("2019-06-12T12:00:00")), Occurrence("Sasquatch", true, (-77.29253, 42.33473), DateTime("2012-11-15T12:00:00")), Occurrence("Sasquatch", true, (-77.15908, 42.13954), DateTime("2022-05-17T12:00:00")), Occurrence("Sasquatch", true, (-73.52519, 44.48551), DateTime("2022-05-30T12:00:00")), Occurrence("Sasquatch", true, (-81.11642, 40.98596), DateTime("2000-08-01T12:00:00")), Occurrence("Sasquatch", true, (-81.27132, 39.88653), DateTime("1977-02-01T12:00:00")), Occurrence("Sasquatch", true, (-82.36887, 39.58157), DateTime("2000-07-11T12:00:00")), Occurrence("Sasquatch", true, (-84.18491, 40.24354), DateTime("1982-11-01T12:00:00")), Occurrence("Sasquatch", true, (-83.02854, 40.15002), DateTime("1989-08-15T12:00:00")), Occurrence("Sasquatch", true, (-80.88494, 41.72134), DateTime("2000-12-28T12:00:00")), Occurrence("Sasquatch", true, (-80.77387, 40.36957), DateTime("1981-11-01T12:00:00")), Occurrence("Sasquatch", true, (-82.69884, 40.38609), DateTime("1977-06-01T12:00:00")), Occurrence("Sasquatch", true, (-83.95184, 39.92104), DateTime("1993-09-15T12:00:00")), Occurrence("Sasquatch", true, (-83.94906, 39.85461), DateTime("1998-10-15T12:00:00")), Occurrence("Sasquatch", true, (-83.96562, 39.86096), DateTime("2000-10-15T12:00:00")), Occurrence("Sasquatch", true, (-83.96123, 39.89216), DateTime("2000-11-24T12:00:00")), Occurrence("Sasquatch", true, (-81.25768, 40.77789), DateTime("2001-02-24T12:00:00")), Occurrence("Sasquatch", true, (-82.29162, 39.78594), DateTime("1978-06-01T12:00:00")), Occurrence("Sasquatch", true, (-80.58332, 40.70386), DateTime("1982-06-15T12:00:00")), Occurrence("Sasquatch", true, (-81.35575, 40.74065), DateTime("1995-02-15T12:00:00")), Occurrence("Sasquatch", true, (-84.38103, 41.2625), DateTime("1998-05-24T12:00:00")), Occurrence("Sasquatch", true, (-81.51749, 40.27488), DateTime("1997-05-01T12:00:00")), Occurrence("Sasquatch", true, (-81.73172, 39.40877), DateTime("1978-07-04T12:00:00")), Occurrence("Sasquatch", true, (-81.33974, 41.39803), DateTime("2001-10-26T12:00:00")), Occurrence("Sasquatch", true, (-82.80257, 40.4764), DateTime("1978-01-01T12:00:00")), Occurrence("Sasquatch", true, (-81.3726, 41.47349), DateTime("1980-08-15T12:00:00")), Occurrence("Sasquatch", true, (-83.39134, 38.73687), DateTime("2002-05-26T12:00:00")), Occurrence("Sasquatch", true, (-84.06565, 40.73412), DateTime("1987-03-15T12:00:00")), Occurrence("Sasquatch", true, (-82.32803, 40.82327), DateTime("1991-09-15T12:00:00")), Occurrence("Sasquatch", true, (-82.23988, 40.59935), DateTime("1997-07-03T12:00:00")), Occurrence("Sasquatch", true, (-81.30896, 41.30265), DateTime("1962-06-06T12:00:00")), Occurrence("Sasquatch", true, (-82.54968, 38.79833), DateTime("1998-05-25T12:00:00")), Occurrence("Sasquatch", true, (-82.55177, 38.79381), DateTime("1998-09-03T12:00:00")), Occurrence("Sasquatch", true, (-82.52238, 39.39935), DateTime("1980-10-31T12:00:00")), Occurrence("Sasquatch", true, (-81.54855, 39.46019), DateTime("1984-07-04T12:00:00")), Occurrence("Sasquatch", true, (-83.28128, 38.83859), DateTime("1999-04-26T12:00:00")), Occurrence("Sasquatch", true, (-80.93665, 41.81835), DateTime("1991-07-01T12:00:00")), Occurrence("Sasquatch", true, (-82.24257, 39.45789), DateTime("1994-09-01T12:00:00")), Occurrence("Sasquatch", true, (-80.55217, 40.76533), DateTime("1980-06-01T12:00:00")), Occurrence("Sasquatch", true, (-80.57164, 40.6807), DateTime("1971-06-30T12:00:00")), Occurrence("Sasquatch", true, (-81.85331, 39.28537), DateTime("2002-05-16T12:00:00")), Occurrence("Sasquatch", true, (-81.51075, 40.67979), DateTime("1978-07-01T12:00:00")), Occurrence("Sasquatch", true, (-84.09158, 39.74961), DateTime("2002-06-01T12:00:00")), Occurrence("Sasquatch", true, (-84.54476, 41.34728), DateTime("1977-01-01T12:00:00")), Occurrence("Sasquatch", true, (-83.00142, 39.89203), DateTime("1997-06-01T12:00:00")), Occurrence("Sasquatch", true, (-81.63656, 40.17699), DateTime("1998-10-15T12:00:00")), Occurrence("Sasquatch", true, (-84.79429, 39.37509), DateTime("2002-07-14T12:00:00")), Occurrence("Sasquatch", true, (-84.80138, 39.37215), DateTime("2001-06-06T12:00:00")), Occurrence("Sasquatch", true, (-81.1438, 41.7164), DateTime("1981-07-01T12:00:00")), Occurrence("Sasquatch", true, (-83.6118, 40.6445), DateTime("2002-07-18T12:00:00")), Occurrence("Sasquatch", true, (-81.1351, 41.5325), DateTime("2002-08-04T12:00:00")), Occurrence("Sasquatch", true, (-80.58163, 41.81902), DateTime("1976-11-01T12:00:00")), Occurrence("Sasquatch", true, (-80.6937, 40.39103), DateTime("1997-09-30T12:00:00")), Occurrence("Sasquatch", true, (-80.78826, 40.2831), DateTime("1988-12-31T12:00:00")), Occurrence("Sasquatch", true, (-82.67252, 40.00915), DateTime("1968-08-01T12:00:00")), Occurrence("Sasquatch", true, (-80.9835, 41.1174), DateTime("1972-08-01T12:00:00")), Occurrence("Sasquatch", true, (-83.26393, 39.17257), DateTime("1999-12-22T12:00:00")), Occurrence("Sasquatch", true, (-84.62567, 39.70042), DateTime("1977-05-18T12:00:00")), Occurrence("Sasquatch", true, (-82.48699, 40.61236), DateTime("1998-09-01T12:00:00")), Occurrence("Sasquatch", true, (-83.12873, 38.83628), DateTime("1990-10-01T12:00:00")), Occurrence("Sasquatch", true, (-81.0758, 40.74451), DateTime("1978-08-21T12:00:00")), Occurrence("Sasquatch", true, (-80.76735, 41.36755), DateTime("2000-02-01T12:00:00")), Occurrence("Sasquatch", true, (-81.67339, 39.38745), DateTime("1971-08-01T12:00:00")), Occurrence("Sasquatch", true, (-81.19895, 40.75872), DateTime("1992-01-15T12:00:00")), Occurrence("Sasquatch", true, (-82.93085, 38.79215), DateTime("2004-06-25T12:00:00")), Occurrence("Sasquatch", true, (-81.62379, 41.23638), DateTime("1998-10-01T12:00:00")), Occurrence("Sasquatch", true, (-83.5556, 40.04792), DateTime("1983-05-01T12:00:00")), Occurrence("Sasquatch", true, (-82.26236, 40.60787), DateTime("2004-08-29T12:00:00")), Occurrence("Sasquatch", true, (-83.0363, 39.10611), DateTime("2000-05-01T12:00:00")), Occurrence("Sasquatch", true, (-82.97854, 38.74899), DateTime("1986-10-01T12:00:00")), Occurrence("Sasquatch", true, (-82.1013, 39.64193), DateTime("2003-05-11T12:00:00")), Occurrence("Sasquatch", true, (-82.0101, 41.03), DateTime("2003-05-01T12:00:00")), Occurrence("Sasquatch", true, (-80.57593, 40.68935), DateTime("2001-07-16T12:00:00")), Occurrence("Sasquatch", true, (-81.98721, 39.90416), DateTime("2003-07-26T12:00:00")), Occurrence("Sasquatch", true, (-84.45905, 39.49695), DateTime("1986-06-01T12:00:00")), Occurrence("Sasquatch", true, (-80.64831, 40.77972), DateTime("2001-11-01T12:00:00")), Occurrence("Sasquatch", true, (-82.29486, 40.85035), DateTime("1963-07-01T12:00:00")), Occurrence("Sasquatch", true, (-81.65929, 39.3731), DateTime("1990-07-01T12:00:00")), Occurrence("Sasquatch", true, (-83.11422, 39.49265), DateTime("1980-07-01T12:00:00")), Occurrence("Sasquatch", true, (-81.39101, 39.54739), DateTime("1978-11-01T12:00:00")), Occurrence("Sasquatch", true, (-81.17155, 41.13356), DateTime("2003-10-10T12:00:00")), Occurrence("Sasquatch", true, (-82.44401, 40.92276), DateTime("1958-11-01T12:00:00")), Occurrence("Sasquatch", true, (-81.4311, 41.10765), DateTime("1978-09-01T12:00:00")), Occurrence("Sasquatch", true, (-84.21719, 40.80725), DateTime("2003-11-22T12:00:00")), Occurrence("Sasquatch", true, (-84.14493, 39.89172), DateTime("2003-09-03T12:00:00")), Occurrence("Sasquatch", true, (-82.2244, 39.4484), DateTime("1980-07-01T12:00:00")), Occurrence("Sasquatch", true, (-83.13585, 39.20212), DateTime("2002-12-01T12:00:00")), Occurrence("Sasquatch", true, (-82.70263, 39.74107), DateTime("2000-06-29T12:00:00")), Occurrence("Sasquatch", true, (-82.66616, 38.54852), DateTime("1980-08-25T12:00:00")), Occurrence("Sasquatch", true, (-81.96419, 41.06648), DateTime("2001-09-25T12:00:00")), Occurrence("Sasquatch", true, (-82.47604, 39.17029), DateTime("2000-05-25T12:00:00")), Occurrence("Sasquatch", true, (-82.41166, 39.14299), DateTime("1987-10-01T12:00:00")), Occurrence("Sasquatch", true, (-81.69818, 40.08946), DateTime("1996-10-25T12:00:00")), Occurrence("Sasquatch", true, (-82.28814, 40.05998), DateTime("1984-01-15T12:00:00")), Occurrence("Sasquatch", true, (-82.32669, 39.48219), DateTime("1979-05-01T12:00:00")), Occurrence("Sasquatch", true, (-81.15622, 40.7343), DateTime("1978-08-01T12:00:00")), Occurrence("Sasquatch", true, (-83.9374, 40.6559), DateTime("2004-03-25T12:00:00")), Occurrence("Sasquatch", true, (-81.26217, 40.54605), DateTime("1976-08-01T12:00:00")), Occurrence("Sasquatch", true, (-81.77677, 41.02572), DateTime("1976-09-01T12:00:00")), Occurrence("Sasquatch", true, (-81.79669, 41.06019), DateTime("2000-10-01T12:00:00")), Occurrence("Sasquatch", true, (-80.6616, 40.42591), DateTime("2004-05-01T12:00:00")), Occurrence("Sasquatch", true, (-81.20629, 41.44442), DateTime("1978-02-05T12:00:00")), Occurrence("Sasquatch", true, (-82.82576, 40.46339), DateTime("1978-06-20T12:00:00")), Occurrence("Sasquatch", true, (-80.89096, 41.42579), DateTime("2004-08-07T12:00:00")), Occurrence("Sasquatch", true, (-81.5117, 40.1218), DateTime("2004-08-18T12:00:00")), Occurrence("Sasquatch", true, (-81.61014, 39.92781), DateTime("2004-08-17T12:00:00")), Occurrence("Sasquatch", true, (-82.82214, 40.5896), DateTime("2002-08-15T12:00:00")), Occurrence("Sasquatch", true, (-83.51394, 39.96627), DateTime("2003-02-18T12:00:00")), Occurrence("Sasquatch", true, (-81.81317, 41.12012), DateTime("1992-09-20T12:00:00")), Occurrence("Sasquatch", true, (-81.22075, 41.57231), DateTime("2005-02-24T12:00:00")), Occurrence("Sasquatch", true, (-83.0556, 40.26494), DateTime("1976-07-15T12:00:00")), Occurrence("Sasquatch", true, (-82.87663, 40.50945), DateTime("2005-01-13T12:00:00")), Occurrence("Sasquatch", true, (-82.71107, 38.60551), DateTime("1991-02-24T12:00:00")), Occurrence("Sasquatch", true, (-81.18352, 40.71737), DateTime("2005-05-30T12:00:00")), Occurrence("Sasquatch", true, (-83.0337, 40.08159), DateTime("1987-05-15T12:00:00")), Occurrence("Sasquatch", true, (-81.5745, 41.29621), DateTime("1995-01-04T12:00:00")), Occurrence("Sasquatch", true, (-80.51186, 41.05304), DateTime("1998-07-01T12:00:00")), Occurrence("Sasquatch", true, (-81.56232, 40.10801), DateTime("2003-05-15T12:00:00")), Occurrence("Sasquatch", true, (-81.56255, 41.2584), DateTime("2005-09-14T12:00:00")), Occurrence("Sasquatch", true, (-83.80582, 38.81772), DateTime("1986-07-27T12:00:00")), Occurrence("Sasquatch", true, (-84.36874, 39.63662), DateTime("2005-02-15T12:00:00")), Occurrence("Sasquatch", true, (-80.77592, 41.09087), DateTime("2001-09-30T12:00:00")), Occurrence("Sasquatch", true, (-81.32809, 40.36831), DateTime("1988-09-15T12:00:00")), Occurrence("Sasquatch", true, (-80.97507, 40.95818), DateTime("2009-08-12T12:00:00")), Occurrence("Sasquatch", true, (-81.1124, 41.15384), DateTime("1994-02-12T12:00:00")), Occurrence("Sasquatch", true, (-82.14285, 38.9264), DateTime("2011-02-22T12:00:00")), Occurrence("Sasquatch", true, (-81.39331, 40.47672), DateTime("2008-06-20T12:00:00")), Occurrence("Sasquatch", true, (-80.95952, 41.81287), DateTime("2011-07-15T12:00:00")), Occurrence("Sasquatch", true, (-81.60576, 41.23739), DateTime("2011-06-04T12:00:00")), Occurrence("Sasquatch", true, (-81.58699, 40.28488), DateTime("1983-11-28T12:00:00")), Occurrence("Sasquatch", true, (-80.53528, 40.63606), DateTime("1973-08-30T12:00:00")), Occurrence("Sasquatch", true, (-84.04518, 40.04342), DateTime("2009-02-06T12:00:00")), Occurrence("Sasquatch", true, (-81.24778, 40.30824), DateTime("2020-03-04T12:00:00")), Occurrence("Sasquatch", true, (-82.17295, 40.61286), DateTime("2012-06-28T12:00:00")), Occurrence("Sasquatch", true, (-81.08803, 40.40192), DateTime("2021-02-03T12:00:00")), Occurrence("Sasquatch", true, (-81.22853, 41.5621), DateTime("2004-07-01T12:00:00")), Occurrence("Sasquatch", true, (-82.17295, 40.61286), DateTime("2012-06-21T12:00:00")), Occurrence("Sasquatch", true, (-81.50933, 40.10348), DateTime("2013-05-05T12:00:00")), Occurrence("Sasquatch", true, (-81.31219, 40.79438), DateTime("2011-09-09T12:00:00")), Occurrence("Sasquatch", true, (-81.07013, 40.01983), DateTime("2014-05-23T12:00:00")), Occurrence("Sasquatch", true, (-84.17227, 39.13595), DateTime("2015-01-22T12:00:00")), Occurrence("Sasquatch", true, (-80.93318, 40.01784), DateTime("1994-11-05T12:00:00")), Occurrence("Sasquatch", true, (-80.75612, 40.29771), DateTime("2020-08-14T12:00:00")), Occurrence("Sasquatch", true, (-82.11172, 41.40985), DateTime("1985-08-15T12:00:00")), Occurrence("Sasquatch", true, (-81.13733, 40.40611), DateTime("2020-02-29T12:00:00")), Occurrence("Sasquatch", true, (-80.84042, 40.92344), DateTime("2015-10-20T12:00:00")), Occurrence("Sasquatch", true, (-82.905, 38.965), DateTime("2017-01-21T12:00:00")), Occurrence("Sasquatch", true, (-83.05098, 41.29247), DateTime("2017-10-28T12:00:00")), Occurrence("Sasquatch", true, (-80.69776, 40.94825), DateTime("2013-11-12T12:00:00")), Occurrence("Sasquatch", true, (-82.8342, 39.0895), DateTime("2013-06-01T12:00:00")), Occurrence("Sasquatch", true, (-84.10731, 38.99484), DateTime("2018-04-21T12:00:00")), Occurrence("Sasquatch", true, (-80.93864, 40.30527), DateTime("2020-02-16T12:00:00")), Occurrence("Sasquatch", true, (-82.83647, 39.6279), DateTime("2020-01-20T12:00:00")), Occurrence("Sasquatch", true, (-82.35291, 39.59607), DateTime("2020-10-31T12:00:00")), Occurrence("Sasquatch", true, (-82.26463, 39.63255), DateTime("2020-02-15T12:00:00")), Occurrence("Sasquatch", true, (-82.26972, 40.8557), DateTime("2021-04-24T12:00:00")), Occurrence("Sasquatch", true, (-81.62295, 41.23925), DateTime("2019-05-28T12:00:00")), Occurrence("Sasquatch", true, (-82.33575, 40.65099), DateTime("2020-08-18T12:00:00")), Occurrence("Sasquatch", true, (-81.14328, 40.49662), DateTime("2024-02-07T12:00:00")), Occurrence("Sasquatch", true, (-84.4577, 39.7062), DateTime("2023-12-23T12:00:00")), Occurrence("Sasquatch", true, (-96.30222, 34.29861), DateTime("1992-06-17T12:00:00")), Occurrence("Sasquatch", true, (-95.70208, 35.70166), DateTime("1997-09-28T12:00:00")), Occurrence("Sasquatch", true, (-96.75361, 33.89444), DateTime("1997-07-15T12:00:00")), Occurrence("Sasquatch", true, (-97.479, 35.74111), DateTime("1997-07-07T12:00:00")), Occurrence("Sasquatch", true, (-95.01167, 34.39639), DateTime("2000-01-28T12:00:00")), Occurrence("Sasquatch", true, (-94.65639, 34.44333), DateTime("2000-07-01T12:00:00")), Occurrence("Sasquatch", true, (-98.31556, 34.9575), DateTime("1992-03-01T12:00:00")), Occurrence("Sasquatch", true, (-94.84861, 34.61361), DateTime("2000-01-28T12:00:00")), Occurrence("Sasquatch", true, (-94.70667, 34.78833), DateTime("2004-12-14T12:00:00")), Occurrence("Sasquatch", true, (-96.972, 34.495), DateTime("1996-10-31T12:00:00")), Occurrence("Sasquatch", true, (-94.83, 35.92806), DateTime("2001-03-26T12:00:00")), Occurrence("Sasquatch", true, (-97.1225, 36.02306), DateTime("1997-12-30T12:00:00")), Occurrence("Sasquatch", true, (-98.575, 35.50556), DateTime("1999-10-03T12:00:00")), Occurrence("Sasquatch", true, (-96.66528, 34.86111), DateTime("2002-02-06T12:00:00")), Occurrence("Sasquatch", true, (-98.34056, 35.10278), DateTime("2002-04-29T12:00:00")), Occurrence("Sasquatch", true, (-97.45694, 35.64389), DateTime("1982-01-15T12:00:00")), Occurrence("Sasquatch", true, (-97.03333, 35.97389), DateTime("1997-11-15T12:00:00")), Occurrence("Sasquatch", true, (-94.55944, 34.59583), DateTime("2002-06-27T12:00:00")), Occurrence("Sasquatch", true, (-95.80417, 36.91528), DateTime("2003-10-20T12:00:00")), Occurrence("Sasquatch", true, (-96.968, 35.86972), DateTime("2003-01-31T12:00:00")), Occurrence("Sasquatch", true, (-95.97, 35.27056), DateTime("2003-02-11T12:00:00")), Occurrence("Sasquatch", true, (-98.13028, 35.33389), DateTime("2003-06-13T12:00:00")), Occurrence("Sasquatch", true, (-95.62278, 34.11306), DateTime("2004-12-21T12:00:00")), Occurrence("Sasquatch", true, (-96.60222, 35.26808), DateTime("1974-11-04T12:00:00")), Occurrence("Sasquatch", true, (-95.74556, 36.18889), DateTime("2003-10-09T12:00:00")), Occurrence("Sasquatch", true, (-97.33528, 35.27639), DateTime("2003-11-29T12:00:00")), Occurrence("Sasquatch", true, (-97.21555, 35.42014), DateTime("2004-03-26T12:00:00")), Occurrence("Sasquatch", true, (-94.7325, 34.689), DateTime("2004-04-30T12:00:00")), Occurrence("Sasquatch", true, (-95.60667, 35.7575), DateTime("2004-05-03T12:00:00")), Occurrence("Sasquatch", true, (-95.26167, 34.92333), DateTime("2004-05-14T12:00:00")), Occurrence("Sasquatch", true, (-97.5625, 35.24194), DateTime("2004-09-24T12:00:00")), Occurrence("Sasquatch", true, (-99.1702, 35.3011), DateTime("1973-09-28T12:00:00")), Occurrence("Sasquatch", true, (-97.07361, 33.82444), DateTime("2004-12-22T12:00:00")), Occurrence("Sasquatch", true, (-98.62833, 34.62944), DateTime("2005-01-10T12:00:00")), Occurrence("Sasquatch", true, (-95.65417, 34.81417), DateTime("2005-02-10T12:00:00")), Occurrence("Sasquatch", true, (-97.00389, 35.68583), DateTime("2005-07-07T12:00:00")), Occurrence("Sasquatch", true, (-95.97023, 35.36895), DateTime("1986-08-25T12:00:00")), Occurrence("Sasquatch", true, (-96.21, 34.25), DateTime("2004-10-12T12:00:00")), Occurrence("Sasquatch", true, (-94.68028, 34.36778), DateTime("2009-03-25T12:00:00")), Occurrence("Sasquatch", true, (-95.94727, 35.2933), DateTime("2009-06-19T12:00:00")), Occurrence("Sasquatch", true, (-96.12164, 36.62116), DateTime("2009-08-07T12:00:00")), Occurrence("Sasquatch", true, (-96.36707, 36.03501), DateTime("2009-09-08T12:00:00")), Occurrence("Sasquatch", true, (-96.63857, 34.21174), DateTime("2009-10-04T12:00:00")), Occurrence("Sasquatch", true, (-98.61497, 34.76134), DateTime("2010-01-25T12:00:00")), Occurrence("Sasquatch", true, (-94.78227, 36.4168), DateTime("1979-09-06T12:00:00")), Occurrence("Sasquatch", true, (-95.79677, 36.13222), DateTime("1966-08-15T12:00:00")), Occurrence("Sasquatch", true, (-94.38045, 34.4082), DateTime("2012-03-18T12:00:00")), Occurrence("Sasquatch", true, (-94.66875, 35.0271), DateTime("2012-05-15T12:00:00")), Occurrence("Sasquatch", true, (-98.99414, 34.38638), DateTime("1987-03-19T12:00:00")), Occurrence("Sasquatch", true, (-94.71512, 36.94679), DateTime("2001-03-16T12:00:00")), Occurrence("Sasquatch", true, (-95.0585, 35.325), DateTime("2000-06-10T12:00:00")), Occurrence("Sasquatch", true, (-94.4435, 34.021), DateTime("2010-08-14T12:00:00")), Occurrence("Sasquatch", true, (-97.67827, 35.53925), DateTime("2019-04-15T12:00:00")), Occurrence("Sasquatch", true, (-121.9123, 45.65125), DateTime("1995-07-10T12:00:00")), Occurrence("Sasquatch", true, (-123.3471, 45.63606), DateTime("1984-07-31T12:00:00")), Occurrence("Sasquatch", true, (-122.8889, 45.63893), DateTime("1994-10-15T12:00:00")), Occurrence("Sasquatch", true, (-123.7027, 45.06215), DateTime("2000-10-30T12:00:00")), Occurrence("Sasquatch", true, (-123.3604, 44.55505), DateTime("1980-10-04T12:00:00")), Occurrence("Sasquatch", true, (-122.3876, 45.4237), DateTime("1971-06-25T12:00:00")), Occurrence("Sasquatch", true, (-121.9524, 44.27795), DateTime("2000-07-15T12:00:00")), Occurrence("Sasquatch", true, (-123.5469, 45.5891), DateTime("1998-08-02T12:00:00")), Occurrence("Sasquatch", true, (-118.2742, 45.3233), DateTime("1991-07-15T12:00:00")), Occurrence("Sasquatch", true, (-123.3768, 45.59669), DateTime("1997-11-10T12:00:00")), Occurrence("Sasquatch", true, (-122.533, 45.12545), DateTime("1995-07-15T12:00:00")), Occurrence("Sasquatch", true, (-117.991, 45.84175), DateTime("2001-03-05T12:00:00")), Occurrence("Sasquatch", true, (-124.2, 40.1), DateTime("1980-02-15T12:00:00")), Occurrence("Sasquatch", true, (-118.0811, 45.99215), DateTime("2001-03-20T12:00:00")), Occurrence("Sasquatch", true, (-118.9491, 44.39104), DateTime("1976-08-25T12:00:00")), Occurrence("Sasquatch", true, (-118.42, 45.5), DateTime("1976-06-15T12:00:00")), Occurrence("Sasquatch", true, (-124.53, 42.82), DateTime("1986-08-14T12:00:00")), Occurrence("Sasquatch", true, (-122.9903, 45.48204), DateTime("2000-10-15T12:00:00")), Occurrence("Sasquatch", true, (-123.866, 45.75449), DateTime("1997-09-13T12:00:00")), Occurrence("Sasquatch", true, (-122.6397, 44.8633), DateTime("1976-07-15T12:00:00")), Occurrence("Sasquatch", true, (-124.3, 42.07), DateTime("2001-03-17T12:00:00")), Occurrence("Sasquatch", true, (-124.3, 42.08), DateTime("2001-06-04T12:00:00")), Occurrence("Sasquatch", true, (-121.5835, 45.3725), DateTime("1970-10-14T12:00:00")), Occurrence("Sasquatch", true, (-123.175, 43.225), DateTime("1980-09-05T12:00:00")), Occurrence("Sasquatch", true, (-123.875, 43.54165), DateTime("1995-11-14T12:00:00")), Occurrence("Sasquatch", true, (-121.9139, 45.33175), DateTime("2001-11-29T12:00:00")), Occurrence("Sasquatch", true, (-122.1884, 45.55364), DateTime("2002-01-09T12:00:00")), Occurrence("Sasquatch", true, (-123.3833, 42.375), DateTime("1975-07-01T12:00:00")), Occurrence("Sasquatch", true, (-122.4163, 45.3894), DateTime("1978-08-29T12:00:00")), Occurrence("Sasquatch", true, (-123.449, 42.39031), DateTime("2002-06-08T12:00:00")), Occurrence("Sasquatch", true, (-122.0505, 44.23861), DateTime("1977-03-19T12:00:00")), Occurrence("Sasquatch", true, (-123.4166, 44.58335), DateTime("2002-08-24T12:00:00")), Occurrence("Sasquatch", true, (-121.8735, 45.63923), DateTime("2002-09-24T12:00:00")), Occurrence("Sasquatch", true, (-118.875, 45.46571), DateTime("2002-12-17T12:00:00")), Occurrence("Sasquatch", true, (-123.975, 44.19167), DateTime("1984-08-17T12:00:00")), Occurrence("Sasquatch", true, (-121.726, 44.42565), DateTime("2002-10-24T12:00:00")), Occurrence("Sasquatch", true, (-118.1253, 45.9957), DateTime("1976-06-30T12:00:00")), Occurrence("Sasquatch", true, (-121.4755, 44.2157), DateTime("1994-04-15T12:00:00")), Occurrence("Sasquatch", true, (-121.8955, 43.5705), DateTime("1980-08-15T12:00:00")), Occurrence("Sasquatch", true, (-122.1, 43.6165), DateTime("2003-11-08T12:00:00")), Occurrence("Sasquatch", true, (-123.694, 45.0608), DateTime("2003-12-08T12:00:00")), Occurrence("Sasquatch", true, (-118.415, 44.825), DateTime("1973-11-15T12:00:00")), Occurrence("Sasquatch", true, (-122.4888, 45.0837), DateTime("1984-08-15T12:00:00")), Occurrence("Sasquatch", true, (-122.3352, 45.5145), DateTime("1979-10-15T12:00:00")), Occurrence("Sasquatch", true, (-122.1629, 42.8673), DateTime("1983-07-01T12:00:00")), Occurrence("Sasquatch", true, (-123.1611, 43.3029), DateTime("2002-10-15T12:00:00")), Occurrence("Sasquatch", true, (-123.6416, 42.24165), DateTime("2002-07-20T12:00:00")), Occurrence("Sasquatch", true, (-124.0598, 43.2547), DateTime("1949-08-15T12:00:00")), Occurrence("Sasquatch", true, (-122.475, 42.6), DateTime("2004-07-03T12:00:00")), Occurrence("Sasquatch", true, (-121.6796, 45.274), DateTime("2001-09-08T12:00:00")), Occurrence("Sasquatch", true, (-122.1814, 43.3622), DateTime("2004-08-28T12:00:00")), Occurrence("Sasquatch", true, (-122.0802, 43.08929), DateTime("2004-09-19T12:00:00")), Occurrence("Sasquatch", true, (-123.311, 43.5251), DateTime("1991-10-15T12:00:00")), Occurrence("Sasquatch", true, (-118.3692, 44.9723), DateTime("2004-09-15T12:00:00")), Occurrence("Sasquatch", true, (-121.1537, 44.8464), DateTime("1983-06-15T12:00:00")), Occurrence("Sasquatch", true, (-117.2022, 45.0018), DateTime("1996-05-20T12:00:00")), Occurrence("Sasquatch", true, (-118.6016, 45.5789), DateTime("1985-12-15T12:00:00")), Occurrence("Sasquatch", true, (-123.9513, 46.19945), DateTime("1993-09-15T12:00:00")), Occurrence("Sasquatch", true, (-124.1214, 43.9311), DateTime("1978-12-18T12:00:00")), Occurrence("Sasquatch", true, (-123.5381, 42.1533), DateTime("1976-09-01T12:00:00")), Occurrence("Sasquatch", true, (-124.0133, 46.2262), DateTime("1978-02-15T12:00:00")), Occurrence("Sasquatch", true, (-122.095, 44.7679), DateTime("2003-06-15T12:00:00")), Occurrence("Sasquatch", true, (-121.6384, 44.56625), DateTime("2005-07-09T12:00:00")), Occurrence("Sasquatch", true, (-123.4034, 42.354), DateTime("2005-06-15T12:00:00")), Occurrence("Sasquatch", true, (-122.1954, 43.31815), DateTime("1956-07-15T12:00:00")), Occurrence("Sasquatch", true, (-121.9165, 45.33), DateTime("1993-06-15T12:00:00")), Occurrence("Sasquatch", true, (-123.972, 45.145), DateTime("1995-08-14T12:00:00")), Occurrence("Sasquatch", true, (-124.2148, 42.28445), DateTime("1974-11-15T12:00:00")), Occurrence("Sasquatch", true, (-122.585, 44.915), DateTime("1995-10-15T12:00:00")), Occurrence("Sasquatch", true, (-118.5654, 45.6605), DateTime("1994-09-15T12:00:00")), Occurrence("Sasquatch", true, (-123.5585, 43.2073), DateTime("2002-08-20T12:00:00")), Occurrence("Sasquatch", true, (-123.2725, 42.02106), DateTime("1975-10-25T12:00:00")), Occurrence("Sasquatch", true, (-123.6956, 45.06881), DateTime("1982-10-20T12:00:00")), Occurrence("Sasquatch", true, (-121.8388, 45.31061), DateTime("2008-08-25T12:00:00")), Occurrence("Sasquatch", true, (-121.9584, 45.0295), DateTime("1996-01-15T12:00:00")), Occurrence("Sasquatch", true, (-122.2347, 44.95023), DateTime("2008-08-10T12:00:00")), Occurrence("Sasquatch", true, (-123.6216, 42.16024), DateTime("2006-11-15T12:00:00")), Occurrence("Sasquatch", true, (-121.7084, 45.8417), DateTime("2009-10-05T12:00:00")), Occurrence("Sasquatch", true, (-122.1322, 44.40946), DateTime("2012-08-31T12:00:00")), Occurrence("Sasquatch", true, (-121.9104, 43.48257), DateTime("1978-08-15T12:00:00")), Occurrence("Sasquatch", true, (-124.43, 43.0), DateTime("2004-10-29T12:00:00")), Occurrence("Sasquatch", true, (-118.0883, 45.43806), DateTime("1982-08-24T12:00:00")), Occurrence("Sasquatch", true, (-123.1691, 45.85606), DateTime("2018-06-24T12:00:00")), Occurrence("Sasquatch", true, (-121.5449, 45.54478), DateTime("1982-07-31T12:00:00")), Occurrence("Sasquatch", true, (-123.0697, 45.46429), DateTime("1997-06-15T12:00:00")), Occurrence("Sasquatch", true, (-122.339, 42.12363), DateTime("2011-10-21T12:00:00")), Occurrence("Sasquatch", true, (-124.1031, 43.85608), DateTime("2019-10-03T12:00:00")), Occurrence("Sasquatch", true, (-77.8768, 41.7655), DateTime("2004-05-09T12:00:00")), Occurrence("Sasquatch", true, (-78.65621, 41.9548), DateTime("1963-10-01T12:00:00")), Occurrence("Sasquatch", true, (-79.56702, 40.05148), DateTime("1994-10-15T12:00:00")), Occurrence("Sasquatch", true, (-78.42314, 40.97015), DateTime("1978-08-21T12:00:00")), Occurrence("Sasquatch", true, (-79.8765, 40.357), DateTime("1985-06-15T12:00:00")), Occurrence("Sasquatch", true, (-80.54177, 41.91826), DateTime("1977-10-15T12:00:00")), Occurrence("Sasquatch", true, (-76.804, 41.4065), DateTime("2005-07-01T12:00:00")), Occurrence("Sasquatch", true, (-77.27178, 39.76366), DateTime("1961-07-01T12:00:00")), Occurrence("Sasquatch", true, (-79.9167, 40.5833), DateTime("2006-01-30T12:00:00")), Occurrence("Sasquatch", true, (-78.377, 41.01865), DateTime("1921-01-14T12:00:00")), Occurrence("Sasquatch", true, (-79.6575, 40.5258), DateTime("2006-09-02T12:00:00")), Occurrence("Sasquatch", true, (-80.0107, 40.6166), DateTime("2008-01-27T12:00:00")), Occurrence("Sasquatch", true, (-79.7668, 40.5278), DateTime("2007-11-03T12:00:00")), Occurrence("Sasquatch", true, (-78.87788, 40.36382), DateTime("1978-07-26T12:00:00")), Occurrence("Sasquatch", true, (-75.06665, 40.4225), DateTime("2007-09-17T12:00:00")), Occurrence("Sasquatch", true, (-80.25475, 40.52825), DateTime("2007-07-22T12:00:00")), Occurrence("Sasquatch", true, (-75.37814, 40.37726), DateTime("2007-10-24T12:00:00")), Occurrence("Sasquatch", true, (-79.16817, 40.32247), DateTime("1967-09-14T12:00:00")), Occurrence("Sasquatch", true, (-75.205, 41.115), DateTime("2008-08-15T12:00:00")), Occurrence("Sasquatch", true, (-78.5826, 41.12782), DateTime("2008-09-13T12:00:00")), Occurrence("Sasquatch", true, (-78.66863, 41.97226), DateTime("1973-09-12T12:00:00")), Occurrence("Sasquatch", true, (-78.85725, 40.29074), DateTime("2011-11-15T12:00:00")), Occurrence("Sasquatch", true, (-74.53322, 41.02176), DateTime("1988-10-15T12:00:00")), Occurrence("Sasquatch", true, (-74.85745, 40.1316), DateTime("2014-02-25T12:00:00")), Occurrence("Sasquatch", true, (-80.26563, 41.21365), DateTime("1978-10-15T12:00:00")), Occurrence("Sasquatch", true, (-80.50751, 41.05), DateTime("2015-08-15T12:00:00")), Occurrence("Sasquatch", true, (-78.87955, 41.51954), DateTime("2010-06-05T12:00:00")), Occurrence("Sasquatch", true, (-75.327, 40.8495), DateTime("2017-11-17T12:00:00")), Occurrence("Sasquatch", true, (-77.62891, 41.94126), DateTime("2021-10-11T12:00:00")), Occurrence("Sasquatch", true, (-78.80971, 40.45896), DateTime("2022-10-05T12:00:00")), Occurrence("Sasquatch", true, (-77.81768, 40.86024), DateTime("2025-02-19T12:00:00")), Occurrence("Sasquatch", true, (-71.5, 41.45), DateTime("1974-09-20T12:00:00")), Occurrence("Sasquatch", true, (-71.65183, 41.432), DateTime("1978-07-15T12:00:00")), Occurrence("Sasquatch", true, (-71.6568, 41.98067), DateTime("1998-10-15T12:00:00")), Occurrence("Sasquatch", true, (-79.65835, 36.86345), DateTime("1985-08-15T12:00:00")), Occurrence("Sasquatch", true, (-80.3891, 34.59), DateTime("2003-10-17T12:00:00")), Occurrence("Sasquatch", true, (-78.9211, 33.72), DateTime("1974-04-18T12:00:00")), Occurrence("Sasquatch", true, (-81.61264, 32.98597), DateTime("2005-11-25T12:00:00")), Occurrence("Sasquatch", true, (-83.11639, 34.65375), DateTime("2005-12-05T12:00:00")), Occurrence("Sasquatch", true, (-80.156, 33.007), DateTime("1970-06-24T12:00:00")), Occurrence("Sasquatch", true, (-80.074, 34.374), DateTime("2006-03-13T12:00:00")), Occurrence("Sasquatch", true, (-82.38998, 34.52414), DateTime("1981-07-11T12:00:00")), Occurrence("Sasquatch", true, (-80.316, 33.096), DateTime("2007-01-14T12:00:00")), Occurrence("Sasquatch", true, (-81.359, 33.245), DateTime("1978-06-08T12:00:00")), Occurrence("Sasquatch", true, (-79.1246, 34.08725), DateTime("1998-09-01T12:00:00")), Occurrence("Sasquatch", true, (-81.70052, 34.53654), DateTime("1991-12-06T12:00:00")), Occurrence("Sasquatch", true, (-82.56786, 34.45025), DateTime("1975-07-01T12:00:00")), Occurrence("Sasquatch", true, (-81.56005, 34.9533), DateTime("2003-04-15T12:00:00")), Occurrence("Sasquatch", true, (-79.8102, 33.0932), DateTime("2021-03-15T12:00:00")), Occurrence("Sasquatch", true, (-80.44109, 32.37152), DateTime("2022-08-02T12:00:00")), Occurrence("Sasquatch", true, (-81.34067, 34.23791), DateTime("2024-11-02T12:00:00")), Occurrence("Sasquatch", true, (-102.3971, 43.35851), DateTime("2002-12-04T12:00:00")), Occurrence("Sasquatch", true, (-101.7312, 43.4471), DateTime("2003-11-01T12:00:00")), Occurrence("Sasquatch", true, (-103.4966, 43.89875), DateTime("2006-11-04T12:00:00")), Occurrence("Sasquatch", true, (-99.1903, 43.37663), DateTime("2006-11-14T12:00:00")), Occurrence("Sasquatch", true, (-84.28315, 35.2597), DateTime("2000-08-03T12:00:00")), Occurrence("Sasquatch", true, (-89.63499, 35.537), DateTime("1994-12-01T12:00:00")), Occurrence("Sasquatch", true, (-86.465, 35.11417), DateTime("2003-07-16T12:00:00")), Occurrence("Sasquatch", true, (-89.48666, 36.09583), DateTime("2005-01-10T12:00:00")), Occurrence("Sasquatch", true, (-87.19556, 35.20416), DateTime("2004-11-22T12:00:00")), Occurrence("Sasquatch", true, (-87.25375, 35.94), DateTime("1994-10-15T12:00:00")), Occurrence("Sasquatch", true, (-84.3046, 35.1013), DateTime("1986-10-14T12:00:00")), Occurrence("Sasquatch", true, (-86.5101, 35.988), DateTime("1988-08-15T12:00:00")), Occurrence("Sasquatch", true, (-84.0475, 35.5559), DateTime("2004-12-14T12:00:00")), Occurrence("Sasquatch", true, (-87.38542, 36.12318), DateTime("1987-07-11T12:00:00")), Occurrence("Sasquatch", true, (-84.48414, 35.18597), DateTime("2006-07-10T12:00:00")), Occurrence("Sasquatch", true, (-84.0458, 35.3538), DateTime("1987-03-14T12:00:00")), Occurrence("Sasquatch", true, (-86.7074, 35.6753), DateTime("1980-06-10T12:00:00")), Occurrence("Sasquatch", true, (-83.53575, 35.68449), DateTime("1970-04-01T12:00:00")), Occurrence("Sasquatch", true, (-86.46987, 35.10615), DateTime("1987-10-01T12:00:00")), Occurrence("Sasquatch", true, (-87.4769, 36.1124), DateTime("1987-07-10T12:00:00")), Occurrence("Sasquatch", true, (-83.3032, 35.4745), DateTime("2008-08-30T12:00:00")), Occurrence("Sasquatch", true, (-89.25397, 36.26451), DateTime("1978-06-17T12:00:00")), Occurrence("Sasquatch", true, (-86.60155, 36.30155), DateTime("1966-04-15T12:00:00")), Occurrence("Sasquatch", true, (-86.5104, 36.5802), DateTime("1986-05-24T12:00:00")), Occurrence("Sasquatch", true, (-84.66167, 36.19746), DateTime("2009-12-14T12:00:00")), Occurrence("Sasquatch", true, (-86.15759, 36.25466), DateTime("2010-07-16T12:00:00")), Occurrence("Sasquatch", true, (-84.88466, 35.97231), DateTime("2005-06-01T12:00:00")), Occurrence("Sasquatch", true, (-85.07263, 35.30146), DateTime("2011-09-09T12:00:00")), Occurrence("Sasquatch", true, (-82.38587, 36.15588), DateTime("2012-11-11T12:00:00")), Occurrence("Sasquatch", true, (-84.34, 36.3065), DateTime("1986-06-14T12:00:00")), Occurrence("Sasquatch", true, (-89.03873, 36.16488), DateTime("2007-06-15T12:00:00")), Occurrence("Sasquatch", true, (-89.17284, 36.02328), DateTime("2021-03-20T12:00:00")), Occurrence("Sasquatch", true, (-87.39061, 35.22149), DateTime("2021-06-12T12:00:00")), Occurrence("Sasquatch", true, (-84.31027, 35.39631), DateTime("2024-10-26T12:00:00")), Occurrence("Sasquatch", true, (-98.03333, 32.7), DateTime("2003-10-17T12:00:00")), Occurrence("Sasquatch", true, (-100.5, 36.0), DateTime("2000-07-05T12:00:00")), Occurrence("Sasquatch", true, (-95.32, 32.13972), DateTime("2003-10-22T12:00:00")), Occurrence("Sasquatch", true, (-94.76362, 31.30853), DateTime("1968-10-18T12:00:00")), Occurrence("Sasquatch", true, (-97.5, 32.15), DateTime("1979-08-25T12:00:00")), Occurrence("Sasquatch", true, (-95.5425, 32.7943), DateTime("1996-12-22T12:00:00")), Occurrence("Sasquatch", true, (-95.37666, 30.75), DateTime("1996-12-31T12:00:00")), Occurrence("Sasquatch", true, (-95.52722, 30.61667), DateTime("1975-07-04T12:00:00")), Occurrence("Sasquatch", true, (-94.86958, 32.58125), DateTime("1976-10-01T12:00:00")), Occurrence("Sasquatch", true, (-97.8375, 33.29083), DateTime("2003-10-10T12:00:00")), Occurrence("Sasquatch", true, (-95.01264, 31.90791), DateTime("2003-10-22T12:00:00")), Occurrence("Sasquatch", true, (-97.04361, 33.48028), DateTime("1990-05-30T12:00:00")), Occurrence("Sasquatch", true, (-94.3, 32.68), DateTime("1979-04-15T12:00:00")), Occurrence("Sasquatch", true, (-95.48833, 31.35833), DateTime("1980-06-30T12:00:00")), Occurrence("Sasquatch", true, (-98.055, 31.11611), DateTime("1977-08-15T12:00:00")), Occurrence("Sasquatch", true, (-95.60834, 30.23333), DateTime("1983-07-15T12:00:00")), Occurrence("Sasquatch", true, (-102.6922, 31.27278), DateTime("2000-02-15T12:00:00")), Occurrence("Sasquatch", true, (-94.89778, 30.73861), DateTime("1964-04-15T12:00:00")), Occurrence("Sasquatch", true, (-95.06667, 33.67056), DateTime("1987-11-15T12:00:00")), Occurrence("Sasquatch", true, (-95.16028, 33.64555), DateTime("1982-04-15T12:00:00")), Occurrence("Sasquatch", true, (-94.63458, 31.91708), DateTime("1998-01-11T12:00:00")), Occurrence("Sasquatch", true, (-99.18778, 33.16972), DateTime("1988-10-15T12:00:00")), Occurrence("Sasquatch", true, (-95.58334, 30.52361), DateTime("2001-09-11T12:00:00")), Occurrence("Sasquatch", true, (-95.76861, 33.48), DateTime("1996-12-15T12:00:00")), Occurrence("Sasquatch", true, (-95.80556, 32.57306), DateTime("2004-08-30T12:00:00")), Occurrence("Sasquatch", true, (-94.965, 32.27444), DateTime("2003-10-08T12:00:00")), Occurrence("Sasquatch", true, (-103.7439, 30.77722), DateTime("2003-10-08T12:00:00")), Occurrence("Sasquatch", true, (-98.35, 33.13333), DateTime("2003-10-21T12:00:00")), Occurrence("Sasquatch", true, (-95.19722, 33.845), DateTime("2003-11-16T12:00:00")), Occurrence("Sasquatch", true, (-94.59222, 32.68945), DateTime("2003-11-29T12:00:00")), Occurrence("Sasquatch", true, (-95.8775, 33.46333), DateTime("2003-12-08T12:00:00")), Occurrence("Sasquatch", true, (-97.54944, 32.17194), DateTime("2003-12-10T12:00:00")), Occurrence("Sasquatch", true, (-94.90528, 32.35306), DateTime("2003-12-12T12:00:00")), Occurrence("Sasquatch", true, (-94.41528, 30.775), DateTime("2003-12-12T12:00:00")), Occurrence("Sasquatch", true, (-95.82056, 33.26222), DateTime("2003-12-16T12:00:00")), Occurrence("Sasquatch", true, (-96.10222, 32.94722), DateTime("2003-12-24T12:00:00")), Occurrence("Sasquatch", true, (-94.37444, 32.04361), DateTime("2003-12-28T12:00:00")), Occurrence("Sasquatch", true, (-102.3881, 31.06278), DateTime("2005-02-01T12:00:00")), Occurrence("Sasquatch", true, (-96.00306, 33.19944), DateTime("2003-12-29T12:00:00")), Occurrence("Sasquatch", true, (-94.7375, 32.33528), DateTime("2003-12-30T12:00:00")), Occurrence("Sasquatch", true, (-96.84806, 33.69), DateTime("2003-12-31T12:00:00")), Occurrence("Sasquatch", true, (-95.83639, 33.82083), DateTime("2004-01-13T12:00:00")), Occurrence("Sasquatch", true, (-100.4161, 31.45417), DateTime("2004-11-19T12:00:00")), Occurrence("Sasquatch", true, (-95.90694, 33.61666), DateTime("2004-01-30T12:00:00")), Occurrence("Sasquatch", true, (-96.78917, 33.71472), DateTime("2004-02-19T12:00:00")), Occurrence("Sasquatch", true, (-94.35722, 33.28333), DateTime("2004-02-19T12:00:00")), Occurrence("Sasquatch", true, (-94.16666, 32.8), DateTime("2004-02-22T12:00:00")), Occurrence("Sasquatch", true, (-95.27361, 33.66666), DateTime("2002-11-02T12:00:00")), Occurrence("Sasquatch", true, (-94.2, 32.62194), DateTime("2004-02-27T12:00:00")), Occurrence("Sasquatch", true, (-94.52, 32.62389), DateTime("2004-02-27T12:00:00")), Occurrence("Sasquatch", true, (-94.15, 32.58333), DateTime("2004-02-28T12:00:00")), Occurrence("Sasquatch", true, (-95.61056, 32.69028), DateTime("2004-03-25T12:00:00")), Occurrence("Sasquatch", true, (-94.85, 30.26667), DateTime("2004-05-04T12:00:00")), Occurrence("Sasquatch", true, (-98.08611, 30.38667), DateTime("2004-04-24T12:00:00")), Occurrence("Sasquatch", true, (-94.2, 32.05806), DateTime("2004-04-11T12:00:00")), Occurrence("Sasquatch", true, (-94.79333, 30.26861), DateTime("2004-06-03T12:00:00")), Occurrence("Sasquatch", true, (-94.82, 30.10305), DateTime("2004-06-15T12:00:00")), Occurrence("Sasquatch", true, (-94.86667, 30.08333), DateTime("2004-07-22T12:00:00")), Occurrence("Sasquatch", true, (-94.9, 32.51667), DateTime("2004-08-16T12:00:00")), Occurrence("Sasquatch", true, (-94.25694, 33.07639), DateTime("2004-08-10T12:00:00")), Occurrence("Sasquatch", true, (-94.83334, 29.88528), DateTime("2004-08-19T12:00:00")), Occurrence("Sasquatch", true, (-95.09167, 30.475), DateTime("2004-09-12T12:00:00")), Occurrence("Sasquatch", true, (-96.29222, 29.17805), DateTime("2004-09-12T12:00:00")), Occurrence("Sasquatch", true, (-96.25, 29.38333), DateTime("2002-04-29T12:00:00")), Occurrence("Sasquatch", true, (-96.71, 29.02611), DateTime("2004-09-22T12:00:00")), Occurrence("Sasquatch", true, (-101.3903, 32.24083), DateTime("2004-10-03T12:00:00")), Occurrence("Sasquatch", true, (-93.61667, 30.72028), DateTime("2004-09-26T12:00:00")), Occurrence("Sasquatch", true, (-95.21667, 32.18333), DateTime("2004-10-03T12:00:00")), Occurrence("Sasquatch", true, (-97.83334, 32.78611), DateTime("2004-11-20T12:00:00")), Occurrence("Sasquatch", true, (-94.86667, 30.41667), DateTime("2004-11-26T12:00:00")), Occurrence("Sasquatch", true, (-94.68333, 32.01667), DateTime("2004-11-26T12:00:00")), Occurrence("Sasquatch", true, (-94.72334, 33.03333), DateTime("2004-11-27T12:00:00")), Occurrence("Sasquatch", true, (-95.6, 32.16139), DateTime("2004-12-03T12:00:00")), Occurrence("Sasquatch", true, (-94.14306, 32.01083), DateTime("2005-01-18T12:00:00")), Occurrence("Sasquatch", true, (-94.85, 30.01667), DateTime("2005-01-17T12:00:00")), Occurrence("Sasquatch", true, (-96.01666, 28.97944), DateTime("2005-01-17T12:00:00")), Occurrence("Sasquatch", true, (-95.63, 30.6), DateTime("2005-01-28T12:00:00")), Occurrence("Sasquatch", true, (-95.00833, 30.40833), DateTime("2005-02-02T12:00:00")), Occurrence("Sasquatch", true, (-93.94, 30.41667), DateTime("1983-12-24T12:00:00")), Occurrence("Sasquatch", true, (-95.3, 30.63333), DateTime("2004-01-08T12:00:00")), Occurrence("Sasquatch", true, (-95.32, 30.31667), DateTime("2002-04-17T12:00:00")), Occurrence("Sasquatch", true, (-98.09234, 32.04417), DateTime("2005-03-19T12:00:00")), Occurrence("Sasquatch", true, (-94.70139, 30.71139), DateTime("2005-04-18T12:00:00")), Occurrence("Sasquatch", true, (-94.32139, 33.09625), DateTime("2005-04-21T12:00:00")), Occurrence("Sasquatch", true, (-95.28653, 30.3343), DateTime("2005-05-02T12:00:00")), Occurrence("Sasquatch", true, (-97.05903, 33.77528), DateTime("2004-12-27T12:00:00")), Occurrence("Sasquatch", true, (-94.47903, 31.0232), DateTime("2005-06-15T12:00:00")), Occurrence("Sasquatch", true, (-93.972, 30.83315), DateTime("2003-01-15T12:00:00")), Occurrence("Sasquatch", true, (-93.7, 30.8), DateTime("1981-11-25T12:00:00")), Occurrence("Sasquatch", true, (-98.3298, 32.8269), DateTime("1969-07-20T12:00:00")), Occurrence("Sasquatch", true, (-95.6669, 31.6212), DateTime("2001-06-15T12:00:00")), Occurrence("Sasquatch", true, (-95.46671, 32.85232), DateTime("2006-02-01T12:00:00")), Occurrence("Sasquatch", true, (-95.23958, 33.36867), DateTime("2004-10-20T12:00:00")), Occurrence("Sasquatch", true, (-95.59745, 31.1683), DateTime("2007-12-20T12:00:00")), Occurrence("Sasquatch", true, (-93.8117, 30.12615), DateTime("2007-08-13T12:00:00")), Occurrence("Sasquatch", true, (-101.667, 34.93243), DateTime("2006-10-21T12:00:00")), Occurrence("Sasquatch", true, (-98.68465, 29.56835), DateTime("2008-09-15T12:00:00")), Occurrence("Sasquatch", true, (-95.37101, 31.82347), DateTime("1981-04-30T12:00:00")), Occurrence("Sasquatch", true, (-95.10654, 30.302), DateTime("1980-04-19T12:00:00")), Occurrence("Sasquatch", true, (-94.45095, 31.2371), DateTime("1979-08-15T12:00:00")), Occurrence("Sasquatch", true, (-96.12524, 31.93425), DateTime("2009-08-25T12:00:00")), Occurrence("Sasquatch", true, (-95.12381, 30.43703), DateTime("1990-05-18T12:00:00")), Occurrence("Sasquatch", true, (-96.63, 32.375), DateTime("1988-04-15T12:00:00")), Occurrence("Sasquatch", true, (-96.66, 32.36), DateTime("1972-07-15T12:00:00")), Occurrence("Sasquatch", true, (-95.17966, 30.31363), DateTime("2007-11-15T12:00:00")), Occurrence("Sasquatch", true, (-95.35257, 32.19202), DateTime("2011-04-03T12:00:00")), Occurrence("Sasquatch", true, (-97.61, 32.675), DateTime("2011-06-30T12:00:00")), Occurrence("Sasquatch", true, (-97.61, 32.675), DateTime("2011-08-27T12:00:00")), Occurrence("Sasquatch", true, (-95.12872, 32.24271), DateTime("1972-07-15T12:00:00")), Occurrence("Sasquatch", true, (-97.77225, 29.32862), DateTime("1993-04-15T12:00:00")), Occurrence("Sasquatch", true, (-98.15854, 29.52533), DateTime("2015-01-09T12:00:00")), Occurrence("Sasquatch", true, (-96.05, 33.445), DateTime("2015-07-15T12:00:00")), Occurrence("Sasquatch", true, (-98.225, 33.675), DateTime("2015-06-17T12:00:00")), Occurrence("Sasquatch", true, (-97.2836, 30.40335), DateTime("2014-12-08T12:00:00")), Occurrence("Sasquatch", true, (-98.325, 33.275), DateTime("2016-07-02T12:00:00")), Occurrence("Sasquatch", true, (-100.6767, 35.93985), DateTime("2014-07-14T12:00:00")), Occurrence("Sasquatch", true, (-95.38226, 31.55668), DateTime("2017-03-15T12:00:00")), Occurrence("Sasquatch", true, (-95.48672, 32.31565), DateTime("2015-10-30T12:00:00")), Occurrence("Sasquatch", true, (-94.95061, 31.86794), DateTime("2017-11-15T12:00:00")), Occurrence("Sasquatch", true, (-97.67403, 30.51559), DateTime("2017-06-23T12:00:00")), Occurrence("Sasquatch", true, (-94.0765, 33.211), DateTime("1982-02-06T12:00:00")), Occurrence("Sasquatch", true, (-94.32404, 30.19144), DateTime("2019-04-16T12:00:00")), Occurrence("Sasquatch", true, (-94.32321, 34.03789), DateTime("2019-05-30T12:00:00")), Occurrence("Sasquatch", true, (-94.1679, 31.1659), DateTime("2019-11-18T12:00:00")), Occurrence("Sasquatch", true, (-97.84, 32.64), DateTime("2019-06-13T12:00:00")), Occurrence("Sasquatch", true, (-98.03284, 32.66908), DateTime("2020-10-23T12:00:00")), Occurrence("Sasquatch", true, (-94.44, 33.01), DateTime("2000-10-01T12:00:00")), Occurrence("Sasquatch", true, (-97.93719, 30.77532), DateTime("2017-06-24T12:00:00")), Occurrence("Sasquatch", true, (-95.29713, 32.88683), DateTime("2024-03-15T12:00:00")), Occurrence("Sasquatch", true, (-94.73586, 30.44669), DateTime("2024-10-09T12:00:00")), Occurrence("Sasquatch", true, (-111.3481, 37.8058), DateTime("1994-05-19T12:00:00")), Occurrence("Sasquatch", true, (-111.6992, 40.3857), DateTime("1996-05-04T12:00:00")), Occurrence("Sasquatch", true, (-110.9315, 40.028), DateTime("1977-09-15T12:00:00")), Occurrence("Sasquatch", true, (-111.75, 41.5), DateTime("1962-05-01T12:00:00")), Occurrence("Sasquatch", true, (-109.9, 40.5), DateTime("2004-12-25T12:00:00")), Occurrence("Sasquatch", true, (-112.35, 38.225), DateTime("2006-08-15T12:00:00")), Occurrence("Sasquatch", true, (-111.4988, 41.43135), DateTime("1977-10-19T12:00:00")), Occurrence("Sasquatch", true, (-112.5, 38.0), DateTime("1997-11-20T12:00:00")), Occurrence("Sasquatch", true, (-111.5447, 40.0445), DateTime("2005-09-14T12:00:00")), Occurrence("Sasquatch", true, (-111.5281, 41.5343), DateTime("1999-09-20T12:00:00")), Occurrence("Sasquatch", true, (-111.0837, 40.92128), DateTime("2004-10-15T12:00:00")), Occurrence("Sasquatch", true, (-109.5143, 40.86765), DateTime("2008-12-07T12:00:00")), Occurrence("Sasquatch", true, (-113.7382, 37.182), DateTime("2002-02-13T12:00:00")), Occurrence("Sasquatch", true, (-112.0179, 41.7086), DateTime("2006-10-21T12:00:00")), Occurrence("Sasquatch", true, (-111.5333, 41.96181), DateTime("2005-01-05T12:00:00")), Occurrence("Sasquatch", true, (-111.8038, 40.91689), DateTime("2004-03-04T12:00:00")), Occurrence("Sasquatch", true, (-111.2586, 40.29942), DateTime("2022-09-20T12:00:00")), Occurrence("Sasquatch", true, (-77.36115, 38.52019), DateTime("1957-07-01T12:00:00")), Occurrence("Sasquatch", true, (-79.77946, 38.05408), DateTime("1992-07-01T12:00:00")), Occurrence("Sasquatch", true, (-80.82856, 37.29854), DateTime("1997-03-29T12:00:00")), Occurrence("Sasquatch", true, (-78.53718, 38.36911), DateTime("1993-07-01T12:00:00")), Occurrence("Sasquatch", true, (-80.38748, 37.02759), DateTime("1998-05-30T12:00:00")), Occurrence("Sasquatch", true, (-81.09017, 37.22647), DateTime("1984-04-08T12:00:00")), Occurrence("Sasquatch", true, (-80.13276, 37.2423), DateTime("2002-04-04T12:00:00")), Occurrence("Sasquatch", true, (-76.6658, 37.72693), DateTime("1978-08-01T12:00:00")), Occurrence("Sasquatch", true, (-77.97089, 38.02516), DateTime("1998-12-15T12:00:00")), Occurrence("Sasquatch", true, (-78.55758, 36.63931), DateTime("1970-05-16T12:00:00")), Occurrence("Sasquatch", true, (-79.052, 37.585), DateTime("2003-12-07T12:00:00")), Occurrence("Sasquatch", true, (-79.82829, 37.06266), DateTime("2004-12-21T12:00:00")), Occurrence("Sasquatch", true, (-77.6257, 37.44378), DateTime("2006-06-02T12:00:00")), Occurrence("Sasquatch", true, (-80.98215, 36.74465), DateTime("1992-12-22T12:00:00")), Occurrence("Sasquatch", true, (-79.57, 37.54), DateTime("1972-11-18T12:00:00")), Occurrence("Sasquatch", true, (-80.5378, 37.3557), DateTime("1990-08-11T12:00:00")), Occurrence("Sasquatch", true, (-77.23238, 38.741), DateTime("1973-06-13T12:00:00")), Occurrence("Sasquatch", true, (-80.48, 36.745), DateTime("2007-09-29T12:00:00")), Occurrence("Sasquatch", true, (-78.33453, 38.73048), DateTime("1970-09-16T12:00:00")), Occurrence("Sasquatch", true, (-77.90815, 37.047), DateTime("2011-05-03T12:00:00")), Occurrence("Sasquatch", true, (-78.6205, 38.9766), DateTime("2002-02-16T12:00:00")), Occurrence("Sasquatch", true, (-77.34673, 38.48342), DateTime("2003-09-13T12:00:00")), Occurrence("Sasquatch", true, (-79.36079, 36.5587), DateTime("1976-10-15T12:00:00")), Occurrence("Sasquatch", true, (-77.67422, 39.14588), DateTime("1970-05-15T12:00:00")), Occurrence("Sasquatch", true, (-81.48593, 36.62492), DateTime("2011-10-14T12:00:00")), Occurrence("Sasquatch", true, (-77.354, 37.248), DateTime("1981-09-19T12:00:00")), Occurrence("Sasquatch", true, (-78.20517, 38.98773), DateTime("2013-04-23T12:00:00")), Occurrence("Sasquatch", true, (-78.48832, 38.90323), DateTime("2014-04-03T12:00:00")), Occurrence("Sasquatch", true, (-79.55045, 37.38661), DateTime("2015-09-09T12:00:00")), Occurrence("Sasquatch", true, (-80.6585, 35.8525), DateTime("2015-08-17T12:00:00")), Occurrence("Sasquatch", true, (-80.3755, 36.9846), DateTime("2016-08-02T12:00:00")), Occurrence("Sasquatch", true, (-81.11751, 37.0048), DateTime("2019-04-10T12:00:00")), Occurrence("Sasquatch", true, (-79.85085, 37.29734), DateTime("2019-10-15T12:00:00")), Occurrence("Sasquatch", true, (-76.70926, 37.33226), DateTime("2020-10-22T12:00:00")), Occurrence("Sasquatch", true, (-77.52767, 38.61792), DateTime("1994-11-15T12:00:00")), Occurrence("Sasquatch", true, (-76.82308, 37.12985), DateTime("2021-12-20T12:00:00")), Occurrence("Sasquatch", true, (-81.39125, 36.84531), DateTime("2022-11-05T12:00:00")), Occurrence("Sasquatch", true, (-77.7695, 38.22033), DateTime("2024-08-09T12:00:00")), Occurrence("Sasquatch", true, (-81.9738, 37.16412), DateTime("2024-11-08T12:00:00")), Occurrence("Sasquatch", true, (-72.7051, 43.4654), DateTime("2005-10-08T12:00:00")), Occurrence("Sasquatch", true, (-122.6228, 46.05333), DateTime("1984-09-01T12:00:00")), Occurrence("Sasquatch", true, (-121.2802, 47.3178), DateTime("2000-10-08T12:00:00")), Occurrence("Sasquatch", true, (-122.3003, 47.0274), DateTime("2000-10-07T12:00:00")), Occurrence("Sasquatch", true, (-121.5478, 46.295), DateTime("1991-07-15T12:00:00")), Occurrence("Sasquatch", true, (-117.7619, 48.65528), DateTime("1984-07-08T12:00:00")), Occurrence("Sasquatch", true, (-124.7312, 48.1609), DateTime("1984-07-18T12:00:00")), Occurrence("Sasquatch", true, (-122.4089, 45.8581), DateTime("1989-06-14T12:00:00")), Occurrence("Sasquatch", true, (-117.9458, 46.37944), DateTime("1991-09-15T12:00:00")), Occurrence("Sasquatch", true, (-117.9592, 46.48917), DateTime("2000-01-24T12:00:00")), Occurrence("Sasquatch", true, (-123.1175, 46.1903), DateTime("1984-07-14T12:00:00")), Occurrence("Sasquatch", true, (-122.9179, 47.7079), DateTime("1981-09-15T12:00:00")), Occurrence("Sasquatch", true, (-123.3893, 46.9782), DateTime("1995-07-01T12:00:00")), Occurrence("Sasquatch", true, (-121.4142, 47.425), DateTime("1982-11-26T12:00:00")), Occurrence("Sasquatch", true, (-123.5894, 47.33694), DateTime("1994-10-01T12:00:00")), Occurrence("Sasquatch", true, (-123.8886, 47.2475), DateTime("1997-10-15T12:00:00")), Occurrence("Sasquatch", true, (-121.5708, 45.81611), DateTime("1982-10-15T12:00:00")), Occurrence("Sasquatch", true, (-122.0111, 47.8925), DateTime("1995-04-17T12:00:00")), Occurrence("Sasquatch", true, (-123.8793, 46.7818), DateTime("1996-11-01T12:00:00")), Occurrence("Sasquatch", true, (-123.3769, 47.9261), DateTime("2001-01-04T12:00:00")), Occurrence("Sasquatch", true, (-117.8106, 48.78389), DateTime("1981-07-02T12:00:00")), Occurrence("Sasquatch", true, (-123.8792, 47.41306), DateTime("1997-07-03T12:00:00")), Occurrence("Sasquatch", true, (-123.4822, 47.0033), DateTime("1972-08-31T12:00:00")), Occurrence("Sasquatch", true, (-121.9258, 47.2831), DateTime("1984-10-17T12:00:00")), Occurrence("Sasquatch", true, (-122.1806, 47.29944), DateTime("1973-04-18T12:00:00")), Occurrence("Sasquatch", true, (-121.7713, 47.1826), DateTime("1990-06-18T12:00:00")), Occurrence("Sasquatch", true, (-122.3454, 47.5279), DateTime("1991-06-22T12:00:00")), Occurrence("Sasquatch", true, (-122.7063, 47.7613), DateTime("1988-06-25T12:00:00")), Occurrence("Sasquatch", true, (-121.2303, 45.75806), DateTime("1991-04-13T12:00:00")), Occurrence("Sasquatch", true, (-123.0966, 47.1305), DateTime("1960-07-18T12:00:00")), Occurrence("Sasquatch", true, (-123.3261, 48.0985), DateTime("1982-07-03T12:00:00")), Occurrence("Sasquatch", true, (-121.9572, 48.0028), DateTime("2000-09-20T12:00:00")), Occurrence("Sasquatch", true, (-122.8858, 47.27667), DateTime("1993-10-15T12:00:00")), Occurrence("Sasquatch", true, (-117.4214, 48.75528), DateTime("1998-09-12T12:00:00")), Occurrence("Sasquatch", true, (-117.4161, 48.74111), DateTime("1991-05-10T12:00:00")), Occurrence("Sasquatch", true, (-117.3347, 48.65083), DateTime("1996-10-26T12:00:00")), Occurrence("Sasquatch", true, (-122.6869, 46.94913), DateTime("1990-05-03T12:00:00")), Occurrence("Sasquatch", true, (-121.4642, 47.01278), DateTime("1997-11-28T12:00:00")), Occurrence("Sasquatch", true, (-122.782, 47.3704), DateTime("1979-12-07T12:00:00")), Occurrence("Sasquatch", true, (-122.6869, 46.94917), DateTime("1967-08-16T12:00:00")), Occurrence("Sasquatch", true, (-122.1767, 46.71833), DateTime("1991-06-08T12:00:00")), Occurrence("Sasquatch", true, (-121.4642, 47.01278), DateTime("1995-06-10T12:00:00")), Occurrence("Sasquatch", true, (-122.2778, 48.36861), DateTime("1986-08-09T12:00:00")), Occurrence("Sasquatch", true, (-122.0144, 45.66194), DateTime("1969-03-05T12:00:00")), Occurrence("Sasquatch", true, (-122.1379, 46.385), DateTime("1967-10-18T12:00:00")), Occurrence("Sasquatch", true, (-122.2083, 46.27583), DateTime("1971-08-27T12:00:00")), Occurrence("Sasquatch", true, (-122.1572, 46.15194), DateTime("1997-11-20T12:00:00")), Occurrence("Sasquatch", true, (-122.0194, 45.62778), DateTime("1978-04-29T12:00:00")), Occurrence("Sasquatch", true, (-122.2375, 45.74639), DateTime("1972-05-22T12:00:00")), Occurrence("Sasquatch", true, (-121.9425, 48.2475), DateTime("1958-05-14T12:00:00")), Occurrence("Sasquatch", true, (-122.0958, 48.11556), DateTime("1980-01-11T12:00:00")), Occurrence("Sasquatch", true, (-121.3819, 48.1472), DateTime("1980-06-28T12:00:00")), Occurrence("Sasquatch", true, (-122.0447, 47.9817), DateTime("1988-07-13T12:00:00")), Occurrence("Sasquatch", true, (-121.6647, 47.7853), DateTime("2000-02-06T12:00:00")), Occurrence("Sasquatch", true, (-122.4133, 46.803), DateTime("1977-07-29T12:00:00")), Occurrence("Sasquatch", true, (-122.7669, 46.985), DateTime("1984-05-16T12:00:00")), Occurrence("Sasquatch", true, (-122.1694, 46.9974), DateTime("1996-08-16T12:00:00")), Occurrence("Sasquatch", true, (-120.6694, 46.71444), DateTime("1996-08-30T12:00:00")), Occurrence("Sasquatch", true, (-121.0939, 46.97944), DateTime("1997-10-25T12:00:00")), Occurrence("Sasquatch", true, (-120.8681, 46.24639), DateTime("1941-10-15T12:00:00")), Occurrence("Sasquatch", true, (-121.7753, 45.69833), DateTime("1980-04-15T12:00:00")), Occurrence("Sasquatch", true, (-121.6769, 48.21167), DateTime("1975-05-25T12:00:00")), Occurrence("Sasquatch", true, (-123.82, 47.93722), DateTime("1948-05-15T12:00:00")), Occurrence("Sasquatch", true, (-122.1852, 47.1772), DateTime("1975-10-11T12:00:00")), Occurrence("Sasquatch", true, (-122.1833, 47.2416), DateTime("1975-10-13T12:00:00")), Occurrence("Sasquatch", true, (-122.1656, 48.8178), DateTime("1977-08-27T12:00:00")), Occurrence("Sasquatch", true, (-122.2963, 46.5672), DateTime("2000-10-11T12:00:00")), Occurrence("Sasquatch", true, (-122.2739, 46.55861), DateTime("2000-04-15T12:00:00")), Occurrence("Sasquatch", true, (-122.2739, 46.55861), DateTime("2000-04-15T12:00:00")), Occurrence("Sasquatch", true, (-122.2988, 46.5579), DateTime("1996-02-25T12:00:00")), Occurrence("Sasquatch", true, (-122.2825, 47.4549), DateTime("1973-05-19T12:00:00")), Occurrence("Sasquatch", true, (-121.7692, 48.1278), DateTime("1977-12-29T12:00:00")), Occurrence("Sasquatch", true, (-120.1211, 48.36361), DateTime("1976-01-30T12:00:00")), Occurrence("Sasquatch", true, (-119.3172, 46.23361), DateTime("1967-03-15T12:00:00")), Occurrence("Sasquatch", true, (-122.4369, 46.61583), DateTime("1999-04-15T12:00:00")), Occurrence("Sasquatch", true, (-121.3314, 48.2681), DateTime("1980-05-24T12:00:00")), Occurrence("Sasquatch", true, (-120.2955, 47.35305), DateTime("2004-10-17T12:00:00")), Occurrence("Sasquatch", true, (-118.0711, 46.03944), DateTime("2001-03-11T12:00:00")), Occurrence("Sasquatch", true, (-118.0519, 46.0675), DateTime("2001-03-08T12:00:00")), Occurrence("Sasquatch", true, (-122.382, 46.9382), DateTime("2001-04-25T12:00:00")), Occurrence("Sasquatch", true, (-123.6288, 46.9705), DateTime("1982-06-02T12:00:00")), Occurrence("Sasquatch", true, (-119.7084, 48.95835), DateTime("1996-05-26T12:00:00")), Occurrence("Sasquatch", true, (-122.5322, 45.7811), DateTime("1984-01-15T12:00:00")), Occurrence("Sasquatch", true, (-121.3055, 46.0722), DateTime("2001-06-11T12:00:00")), Occurrence("Sasquatch", true, (-121.2543, 48.5149), DateTime("2001-09-09T12:00:00")), Occurrence("Sasquatch", true, (-121.2309, 47.3338), DateTime("1965-07-30T12:00:00")), Occurrence("Sasquatch", true, (-121.5863, 46.67111), DateTime("2001-09-01T12:00:00")), Occurrence("Sasquatch", true, (-122.69, 46.96515), DateTime("2004-10-10T12:00:00")), Occurrence("Sasquatch", true, (-122.1652, 46.766), DateTime("1992-01-01T12:00:00")), Occurrence("Sasquatch", true, (-121.51, 47.0466), DateTime("1995-05-26T12:00:00")), Occurrence("Sasquatch", true, (-121.6738, 48.86), DateTime("1984-10-20T12:00:00")), Occurrence("Sasquatch", true, (-122.4988, 46.3261), DateTime("2002-05-09T12:00:00")), Occurrence("Sasquatch", true, (-121.9008, 47.6068), DateTime("1999-06-15T12:00:00")), Occurrence("Sasquatch", true, (-123.1875, 46.1911), DateTime("1952-07-01T12:00:00")), Occurrence("Sasquatch", true, (-122.5855, 46.3758), DateTime("2002-05-18T12:00:00")), Occurrence("Sasquatch", true, (-122.1983, 46.7002), DateTime("1994-07-15T12:00:00")), Occurrence("Sasquatch", true, (-121.5344, 47.0183), DateTime("1982-08-15T12:00:00")), Occurrence("Sasquatch", true, (-121.3114, 47.6181), DateTime("1977-08-14T12:00:00")), Occurrence("Sasquatch", true, (-122.9627, 46.6622), DateTime("2001-05-13T12:00:00")), Occurrence("Sasquatch", true, (-121.9063, 45.8083), DateTime("2002-08-03T12:00:00")), Occurrence("Sasquatch", true, (-122.028, 46.3105), DateTime("1999-10-20T12:00:00")), Occurrence("Sasquatch", true, (-121.745, 48.53944), DateTime("2002-08-04T12:00:00")), Occurrence("Sasquatch", true, (-121.9658, 47.288), DateTime("1992-04-01T12:00:00")), Occurrence("Sasquatch", true, (-122.4275, 46.5347), DateTime("2002-09-14T12:00:00")), Occurrence("Sasquatch", true, (-123.2135, 47.8306), DateTime("2004-10-13T12:00:00")), Occurrence("Sasquatch", true, (-121.6279, 47.0019), DateTime("2002-11-16T12:00:00")), Occurrence("Sasquatch", true, (-121.5867, 46.67389), DateTime("1969-11-19T12:00:00")), Occurrence("Sasquatch", true, (-121.5863, 46.6711), DateTime("1969-11-15T12:00:00")), Occurrence("Sasquatch", true, (-120.9855, 45.9358), DateTime("2003-03-18T12:00:00")), Occurrence("Sasquatch", true, (-122.2156, 48.76075), DateTime("2003-04-23T12:00:00")), Occurrence("Sasquatch", true, (-123.5439, 46.33425), DateTime("2003-04-24T12:00:00")), Occurrence("Sasquatch", true, (-117.2776, 48.83558), DateTime("2003-07-17T12:00:00")), Occurrence("Sasquatch", true, (-122.7919, 47.94056), DateTime("2003-05-08T12:00:00")), Occurrence("Sasquatch", true, (-120.4474, 46.4984), DateTime("2003-07-21T12:00:00")), Occurrence("Sasquatch", true, (-123.6081, 46.35639), DateTime("1978-11-11T12:00:00")), Occurrence("Sasquatch", true, (-122.3985, 45.8331), DateTime("2003-11-05T12:00:00")), Occurrence("Sasquatch", true, (-123.8763, 47.4259), DateTime("1978-06-21T12:00:00")), Occurrence("Sasquatch", true, (-121.0909, 46.80505), DateTime("2003-11-07T12:00:00")), Occurrence("Sasquatch", true, (-123.2022, 47.4028), DateTime("1992-08-15T12:00:00")), Occurrence("Sasquatch", true, (-121.6352, 47.8573), DateTime("1998-04-01T12:00:00")), Occurrence("Sasquatch", true, (-122.8294, 46.0471), DateTime("2001-07-15T12:00:00")), Occurrence("Sasquatch", true, (-117.9793, 46.0573), DateTime("2003-11-19T12:00:00")), Occurrence("Sasquatch", true, (-122.5344, 47.763), DateTime("2004-11-16T12:00:00")), Occurrence("Sasquatch", true, (-124.072, 46.81045), DateTime("1999-10-15T12:00:00")), Occurrence("Sasquatch", true, (-122.2187, 47.39), DateTime("1986-12-25T12:00:00")), Occurrence("Sasquatch", true, (-121.9256, 46.3105), DateTime("2004-11-08T12:00:00")), Occurrence("Sasquatch", true, (-122.4076, 45.8911), DateTime("1993-02-15T12:00:00")), Occurrence("Sasquatch", true, (-121.8943, 47.87725), DateTime("2004-07-03T12:00:00")), Occurrence("Sasquatch", true, (-122.2356, 47.0958), DateTime("1998-09-15T12:00:00")), Occurrence("Sasquatch", true, (-122.4078, 48.68985), DateTime("1980-09-07T12:00:00")), Occurrence("Sasquatch", true, (-121.95, 46.05), DateTime("2004-11-29T12:00:00")), Occurrence("Sasquatch", true, (-117.3606, 47.62769), DateTime("2005-02-15T12:00:00")), Occurrence("Sasquatch", true, (-121.5287, 47.485), DateTime("2005-04-20T12:00:00")), Occurrence("Sasquatch", true, (-121.6009, 43.74251), DateTime("2004-06-15T12:00:00")), Occurrence("Sasquatch", true, (-122.2917, 47.18556), DateTime("1974-06-27T12:00:00")), Occurrence("Sasquatch", true, (-120.0745, 48.321), DateTime("1987-03-15T12:00:00")), Occurrence("Sasquatch", true, (-122.54, 47.79), DateTime("2000-09-01T12:00:00")), Occurrence("Sasquatch", true, (-122.8833, 47.28069), DateTime("2005-09-26T12:00:00")), Occurrence("Sasquatch", true, (-123.8161, 46.98621), DateTime("2005-12-01T12:00:00")), Occurrence("Sasquatch", true, (-121.8668, 48.35552), DateTime("1980-05-10T12:00:00")), Occurrence("Sasquatch", true, (-122.2339, 45.74715), DateTime("2005-11-17T12:00:00")), Occurrence("Sasquatch", true, (-122.3055, 47.14385), DateTime("1983-05-11T12:00:00")), Occurrence("Sasquatch", true, (-123.9718, 47.3631), DateTime("2004-07-29T12:00:00")), Occurrence("Sasquatch", true, (-121.9749, 47.7393), DateTime("2005-06-23T12:00:00")), Occurrence("Sasquatch", true, (-120.7772, 48.19923), DateTime("2006-07-25T12:00:00")), Occurrence("Sasquatch", true, (-122.4966, 47.74897), DateTime("2006-11-03T12:00:00")), Occurrence("Sasquatch", true, (-119.187, 48.32956), DateTime("2006-09-28T12:00:00")), Occurrence("Sasquatch", true, (-122.3076, 46.84565), DateTime("2006-08-15T12:00:00")), Occurrence("Sasquatch", true, (-122.3219, 47.45411), DateTime("2008-01-28T12:00:00")), Occurrence("Sasquatch", true, (-122.0282, 47.01562), DateTime("2001-05-01T12:00:00")), Occurrence("Sasquatch", true, (-119.7085, 48.9588), DateTime("2007-05-23T12:00:00")), Occurrence("Sasquatch", true, (-122.645, 48.39936), DateTime("2007-10-20T12:00:00")), Occurrence("Sasquatch", true, (-123.3749, 46.60207), DateTime("2006-11-18T12:00:00")), Occurrence("Sasquatch", true, (-123.2902, 47.00625), DateTime("1982-06-04T12:00:00")), Occurrence("Sasquatch", true, (-120.6599, 48.31199), DateTime("2007-08-23T12:00:00")), Occurrence("Sasquatch", true, (-122.3045, 46.52352), DateTime("2003-08-15T12:00:00")), Occurrence("Sasquatch", true, (-121.5763, 46.67816), DateTime("1994-09-24T12:00:00")), Occurrence("Sasquatch", true, (-123.2182, 47.49865), DateTime("2007-11-16T12:00:00")), Occurrence("Sasquatch", true, (-123.1742, 46.98278), DateTime("2008-04-05T12:00:00")), Occurrence("Sasquatch", true, (-122.1183, 46.75468), DateTime("1987-07-05T12:00:00")), Occurrence("Sasquatch", true, (-122.3234, 47.4506), DateTime("2008-07-01T12:00:00")), Occurrence("Sasquatch", true, (-123.8343, 47.50319), DateTime("2008-07-14T12:00:00")), Occurrence("Sasquatch", true, (-122.1979, 47.75034), DateTime("1974-10-16T12:00:00")), Occurrence("Sasquatch", true, (-121.7666, 47.43534), DateTime("2000-08-14T12:00:00")), Occurrence("Sasquatch", true, (-123.8165, 46.4205), DateTime("2008-04-12T12:00:00")), Occurrence("Sasquatch", true, (-121.6548, 47.48176), DateTime("1990-12-03T12:00:00")), Occurrence("Sasquatch", true, (-121.25, 46.85), DateTime("2007-08-18T12:00:00")), Occurrence("Sasquatch", true, (-123.7727, 46.94102), DateTime("1995-01-15T12:00:00")), Occurrence("Sasquatch", true, (-121.9418, 47.13485), DateTime("2002-07-15T12:00:00")), Occurrence("Sasquatch", true, (-121.1859, 47.70178), DateTime("2009-08-04T12:00:00")), Occurrence("Sasquatch", true, (-122.3431, 46.2965), DateTime("2006-11-18T12:00:00")), Occurrence("Sasquatch", true, (-121.7427, 47.57576), DateTime("1991-10-15T12:00:00")), Occurrence("Sasquatch", true, (-122.2719, 46.84748), DateTime("2010-05-22T12:00:00")), Occurrence("Sasquatch", true, (-122.3898, 45.90052), DateTime("1995-08-15T12:00:00")), Occurrence("Sasquatch", true, (-122.215, 48.308), DateTime("2009-06-15T12:00:00")), Occurrence("Sasquatch", true, (-121.6962, 48.32675), DateTime("2010-10-22T12:00:00")), Occurrence("Sasquatch", true, (-124.2306, 47.2838), DateTime("2002-08-01T12:00:00")), Occurrence("Sasquatch", true, (-122.2214, 47.17295), DateTime("1976-09-15T12:00:00")), Occurrence("Sasquatch", true, (-121.5298, 47.12045), DateTime("2008-06-07T12:00:00")), Occurrence("Sasquatch", true, (-122.4331, 46.88234), DateTime("1990-07-30T12:00:00")), Occurrence("Sasquatch", true, (-122.7746, 46.63477), DateTime("1978-08-05T12:00:00")), Occurrence("Sasquatch", true, (-121.6314, 45.96112), DateTime("2004-08-14T12:00:00")), Occurrence("Sasquatch", true, (-123.3678, 48.08955), DateTime("1983-09-24T12:00:00")), Occurrence("Sasquatch", true, (-122.5958, 47.10637), DateTime("1986-09-15T12:00:00")), Occurrence("Sasquatch", true, (-122.2638, 48.92928), DateTime("1995-07-05T12:00:00")), Occurrence("Sasquatch", true, (-122.7515, 46.78571), DateTime("2012-03-20T12:00:00")), Occurrence("Sasquatch", true, (-124.3863, 47.94001), DateTime("2011-09-04T12:00:00")), Occurrence("Sasquatch", true, (-121.4813, 45.86883), DateTime("2010-09-15T12:00:00")), Occurrence("Sasquatch", true, (-121.6708, 48.03114), DateTime("2011-09-01T12:00:00")), Occurrence("Sasquatch", true, (-122.202, 46.53686), DateTime("2012-06-02T12:00:00")), Occurrence("Sasquatch", true, (-123.7194, 47.08824), DateTime("2004-07-15T12:00:00")), Occurrence("Sasquatch", true, (-122.4212, 47.05072), DateTime("2012-09-12T12:00:00")), Occurrence("Sasquatch", true, (-121.429, 48.05305), DateTime("2012-11-07T12:00:00")), Occurrence("Sasquatch", true, (-122.5368, 47.09762), DateTime("2008-01-02T12:00:00")), Occurrence("Sasquatch", true, (-122.2763, 48.10255), DateTime("2010-06-10T12:00:00")), Occurrence("Sasquatch", true, (-122.1375, 48.11308), DateTime("2012-12-11T12:00:00")), Occurrence("Sasquatch", true, (-122.911, 48.00503), DateTime("1986-09-15T12:00:00")), Occurrence("Sasquatch", true, (-122.528, 47.78212), DateTime("2003-06-15T12:00:00")), Occurrence("Sasquatch", true, (-121.9883, 45.63921), DateTime("1985-06-08T12:00:00")), Occurrence("Sasquatch", true, (-122.3482, 47.064), DateTime("2012-10-10T12:00:00")), Occurrence("Sasquatch", true, (-124.0556, 47.0562), DateTime("2013-09-30T12:00:00")), Occurrence("Sasquatch", true, (-121.9995, 48.93228), DateTime("1986-10-17T12:00:00")), Occurrence("Sasquatch", true, (-121.8135, 48.09853), DateTime("1989-06-01T12:00:00")), Occurrence("Sasquatch", true, (-121.9557, 46.77641), DateTime("2014-03-01T12:00:00")), Occurrence("Sasquatch", true, (-120.9783, 47.1902), DateTime("2014-05-12T12:00:00")), Occurrence("Sasquatch", true, (-123.3212, 47.41184), DateTime("2002-05-15T12:00:00")), Occurrence("Sasquatch", true, (-118.4262, 48.6254), DateTime("2013-09-15T12:00:00")), Occurrence("Sasquatch", true, (-119.8345, 48.57028), DateTime("2008-07-19T12:00:00")), Occurrence("Sasquatch", true, (-122.4349, 46.32793), DateTime("2014-06-01T12:00:00")), Occurrence("Sasquatch", true, (-117.5429, 48.03062), DateTime("2015-08-30T12:00:00")), Occurrence("Sasquatch", true, (-122.741, 47.34805), DateTime("2015-11-11T12:00:00")), Occurrence("Sasquatch", true, (-122.4428, 47.07405), DateTime("2016-05-29T12:00:00")), Occurrence("Sasquatch", true, (-118.609, 48.93221), DateTime("1993-10-15T12:00:00")), Occurrence("Sasquatch", true, (-121.8326, 46.43362), DateTime("1998-10-15T12:00:00")), Occurrence("Sasquatch", true, (-120.8206, 47.77559), DateTime("2016-10-02T12:00:00")), Occurrence("Sasquatch", true, (-121.0161, 47.20113), DateTime("2016-01-27T12:00:00")), Occurrence("Sasquatch", true, (-124.195, 47.82243), DateTime("2017-02-25T12:00:00")), Occurrence("Sasquatch", true, (-121.4105, 48.52395), DateTime("1973-07-15T12:00:00")), Occurrence("Sasquatch", true, (-121.9103, 46.47816), DateTime("2013-11-12T12:00:00")), Occurrence("Sasquatch", true, (-118.1611, 47.96136), DateTime("2016-05-15T12:00:00")), Occurrence("Sasquatch", true, (-122.2018, 48.92982), DateTime("2018-09-15T12:00:00")), Occurrence("Sasquatch", true, (-122.5935, 46.364), DateTime("2006-07-15T12:00:00")), Occurrence("Sasquatch", true, (-122.3347, 48.90147), DateTime("2017-01-21T12:00:00")), Occurrence("Sasquatch", true, (-122.9329, 46.20128), DateTime("1991-10-27T12:00:00")), Occurrence("Sasquatch", true, (-121.6267, 45.75957), DateTime("2020-01-04T12:00:00")), Occurrence("Sasquatch", true, (-124.166, 47.0709), DateTime("2016-10-01T12:00:00")), Occurrence("Sasquatch", true, (-124.3985, 47.72142), DateTime("1977-10-15T12:00:00")), Occurrence("Sasquatch", true, (-122.8357, 46.34586), DateTime("1995-08-19T12:00:00")), Occurrence("Sasquatch", true, (-122.7197, 47.52877), DateTime("2021-08-27T12:00:00")), Occurrence("Sasquatch", true, (-117.7324, 47.97637), DateTime("2021-10-22T12:00:00")), Occurrence("Sasquatch", true, (-123.3173, 46.94365), DateTime("2022-01-15T12:00:00")), Occurrence("Sasquatch", true, (-122.4643, 47.0577), DateTime("1978-07-15T12:00:00")), Occurrence("Sasquatch", true, (-121.5189, 45.77766), DateTime("2019-07-10T12:00:00")), Occurrence("Sasquatch", true, (-123.1117, 46.61282), DateTime("2007-01-19T12:00:00")), Occurrence("Sasquatch", true, (-121.5784, 46.68562), DateTime("2023-11-04T12:00:00")), Occurrence("Sasquatch", true, (-122.9382, 46.81312), DateTime("2024-02-04T12:00:00")), Occurrence("Sasquatch", true, (-123.0283, 46.86546), DateTime("2024-04-15T12:00:00")), Occurrence("Sasquatch", true, (-124.3092, 47.85303), DateTime("2024-10-13T12:00:00")), Occurrence("Sasquatch", true, (-88.51969, 44.8491), DateTime("1981-08-15T12:00:00")), Occurrence("Sasquatch", true, (-91.71295, 45.5), DateTime("1997-11-07T12:00:00")), Occurrence("Sasquatch", true, (-90.0411, 44.6543), DateTime("2000-03-28T12:00:00")), Occurrence("Sasquatch", true, (-89.6965, 45.89832), DateTime("1984-07-27T12:00:00")), Occurrence("Sasquatch", true, (-88.16359, 45.33418), DateTime("1992-11-19T12:00:00")), Occurrence("Sasquatch", true, (-90.51659, 45.78177), DateTime("1997-11-29T12:00:00")), Occurrence("Sasquatch", true, (-89.67523, 45.22849), DateTime("1979-08-12T12:00:00")), Occurrence("Sasquatch", true, (-88.7829, 45.56326), DateTime("1983-07-15T12:00:00")), Occurrence("Sasquatch", true, (-90.51145, 45.7743), DateTime("2002-11-24T12:00:00")), Occurrence("Sasquatch", true, (-89.16425, 45.5051), DateTime("1979-05-25T12:00:00")), Occurrence("Sasquatch", true, (-90.444, 45.775), DateTime("2004-07-14T12:00:00")), Occurrence("Sasquatch", true, (-92.4573, 45.1097), DateTime("2004-06-16T12:00:00")), Occurrence("Sasquatch", true, (-90.7221, 44.3801), DateTime("2005-02-05T12:00:00")), Occurrence("Sasquatch", true, (-89.9905, 45.0902), DateTime("2006-06-25T12:00:00")), Occurrence("Sasquatch", true, (-91.3171, 44.4049), DateTime("2006-12-06T12:00:00")), Occurrence("Sasquatch", true, (-91.49319, 46.10445), DateTime("2008-04-28T12:00:00")), Occurrence("Sasquatch", true, (-90.42001, 45.73271), DateTime("2008-07-12T12:00:00")), Occurrence("Sasquatch", true, (-87.73608, 45.02046), DateTime("1979-08-01T12:00:00")), Occurrence("Sasquatch", true, (-92.03925, 44.75668), DateTime("2006-07-27T12:00:00")), Occurrence("Sasquatch", true, (-88.03413, 45.64867), DateTime("2013-04-28T12:00:00")), Occurrence("Sasquatch", true, (-90.43515, 45.672), DateTime("2013-07-12T12:00:00")), Occurrence("Sasquatch", true, (-87.9604, 45.3865), DateTime("1979-10-20T12:00:00")), Occurrence("Sasquatch", true, (-91.59938, 45.58858), DateTime("1975-07-15T12:00:00")), Occurrence("Sasquatch", true, (-89.08323, 45.05855), DateTime("2016-01-12T12:00:00")), Occurrence("Sasquatch", true, (-89.3179, 43.0625), DateTime("2016-01-18T12:00:00")), Occurrence("Sasquatch", true, (-87.6779, 45.15), DateTime("2004-06-20T12:00:00")), Occurrence("Sasquatch", true, (-88.0896, 45.64585), DateTime("2014-11-19T12:00:00")), Occurrence("Sasquatch", true, (-92.12408, 45.63061), DateTime("2018-07-30T12:00:00")), Occurrence("Sasquatch", true, (-90.02283, 45.63092), DateTime("2019-07-09T12:00:00")), Occurrence("Sasquatch", true, (-88.29105, 43.26699), DateTime("2021-07-18T12:00:00")), Occurrence("Sasquatch", true, (-90.35122, 45.94371), DateTime("2002-04-21T12:00:00")), Occurrence("Sasquatch", true, (-80.37878, 39.52122), DateTime("1978-12-01T12:00:00")), Occurrence("Sasquatch", true, (-80.11329, 39.54114), DateTime("1999-04-20T12:00:00")), Occurrence("Sasquatch", true, (-79.3434, 38.87813), DateTime("1998-01-28T12:00:00")), Occurrence("Sasquatch", true, (-79.42547, 38.95242), DateTime("1997-09-23T12:00:00")), Occurrence("Sasquatch", true, (-82.59822, 38.12764), DateTime("1983-09-01T12:00:00")), Occurrence("Sasquatch", true, (-80.60419, 38.32548), DateTime("1987-07-15T12:00:00")), Occurrence("Sasquatch", true, (-81.16211, 39.21833), DateTime("2001-11-12T12:00:00")), Occurrence("Sasquatch", true, (-79.43762, 39.0417), DateTime("1987-07-04T12:00:00")), Occurrence("Sasquatch", true, (-80.68192, 40.1333), DateTime("2004-12-12T12:00:00")), Occurrence("Sasquatch", true, (-81.85806, 39.01972), DateTime("2005-03-13T12:00:00")), Occurrence("Sasquatch", true, (-80.7582, 37.6541), DateTime("2001-09-05T12:00:00")), Occurrence("Sasquatch", true, (-80.03149, 38.6685), DateTime("1989-11-24T12:00:00")), Occurrence("Sasquatch", true, (-81.29745, 37.58135), DateTime("2005-12-03T12:00:00")), Occurrence("Sasquatch", true, (-77.9407, 39.5392), DateTime("2006-07-04T12:00:00")), Occurrence("Sasquatch", true, (-79.5375, 39.6995), DateTime("2005-10-05T12:00:00")), Occurrence("Sasquatch", true, (-81.70641, 38.2128), DateTime("2006-07-29T12:00:00")), Occurrence("Sasquatch", true, (-82.59348, 38.35727), DateTime("2006-08-10T12:00:00")), Occurrence("Sasquatch", true, (-78.49429, 39.5226), DateTime("2006-10-08T12:00:00")), Occurrence("Sasquatch", true, (-79.95418, 39.03496), DateTime("2006-03-18T12:00:00")), Occurrence("Sasquatch", true, (-81.1271, 37.32091), DateTime("2006-07-15T12:00:00")), Occurrence("Sasquatch", true, (-80.01335, 37.5313), DateTime("1994-10-15T12:00:00")), Occurrence("Sasquatch", true, (-79.3762, 38.835), DateTime("2007-01-13T12:00:00")), Occurrence("Sasquatch", true, (-80.51374, 38.33109), DateTime("2007-06-30T12:00:00")), Occurrence("Sasquatch", true, (-79.3686, 38.835), DateTime("2007-07-02T12:00:00")), Occurrence("Sasquatch", true, (-79.47325, 38.8926), DateTime("2007-07-08T12:00:00")), Occurrence("Sasquatch", true, (-79.4016, 38.8409), DateTime("2007-06-18T12:00:00")), Occurrence("Sasquatch", true, (-80.64685, 37.50965), DateTime("2007-08-12T12:00:00")), Occurrence("Sasquatch", true, (-78.94501, 39.335), DateTime("2003-11-27T12:00:00")), Occurrence("Sasquatch", true, (-81.5722, 38.2383), DateTime("1990-08-01T12:00:00")), Occurrence("Sasquatch", true, (-81.095, 37.7), DateTime("2007-09-28T12:00:00")), Occurrence("Sasquatch", true, (-79.01405, 39.26188), DateTime("2004-11-25T12:00:00")), Occurrence("Sasquatch", true, (-80.9075, 37.7929), DateTime("2008-03-29T12:00:00")), Occurrence("Sasquatch", true, (-80.3616, 37.9937), DateTime("2007-07-27T12:00:00")), Occurrence("Sasquatch", true, (-80.17, 37.445), DateTime("1979-08-10T12:00:00")), Occurrence("Sasquatch", true, (-81.68124, 37.2875), DateTime("1969-08-01T12:00:00")), Occurrence("Sasquatch", true, (-79.4593, 39.10023), DateTime("2008-12-28T12:00:00")), Occurrence("Sasquatch", true, (-82.28279, 38.16391), DateTime("2009-02-14T12:00:00")), Occurrence("Sasquatch", true, (-80.71875, 37.9208), DateTime("2009-05-15T12:00:00")), Occurrence("Sasquatch", true, (-80.23375, 39.1611), DateTime("1974-05-04T12:00:00")), Occurrence("Sasquatch", true, (-80.27, 38.98), DateTime("2009-09-11T12:00:00")), Occurrence("Sasquatch", true, (-80.1177, 38.1882), DateTime("1969-11-24T12:00:00")), Occurrence("Sasquatch", true, (-81.4625, 38.2639), DateTime("2009-11-28T12:00:00")), Occurrence("Sasquatch", true, (-81.08506, 38.0695), DateTime("2007-11-28T12:00:00")), Occurrence("Sasquatch", true, (-82.43855, 38.35806), DateTime("1961-06-15T12:00:00")), Occurrence("Sasquatch", true, (-80.6754, 38.12852), DateTime("2014-09-05T12:00:00")), Occurrence("Sasquatch", true, (-79.55928, 38.8609), DateTime("2005-01-13T12:00:00")), Occurrence("Sasquatch", true, (-79.1347, 38.44367), DateTime("2002-08-08T12:00:00")), Occurrence("Sasquatch", true, (-80.6385, 38.2845), DateTime("2015-11-21T12:00:00")), Occurrence("Sasquatch", true, (-81.8074, 37.34592), DateTime("2009-10-15T12:00:00")), Occurrence("Sasquatch", true, (-81.8075, 38.10263), DateTime("2008-05-12T12:00:00")), Occurrence("Sasquatch", true, (-110.0042, 44.50132), DateTime("1997-07-24T12:00:00")), Occurrence("Sasquatch", true, (-109.7935, 44.45584), DateTime("1997-11-02T12:00:00")), Occurrence("Sasquatch", true, (-109.6824, 44.49817), DateTime("1978-05-15T12:00:00")), Occurrence("Sasquatch", true, (-109.5113, 44.48134), DateTime("2000-07-14T12:00:00")), Occurrence("Sasquatch", true, (-110.4165, 46.79165), DateTime("2002-07-19T12:00:00")), Occurrence("Sasquatch", true, (-110.4165, 46.79165), DateTime("2002-07-19T12:00:00")), Occurrence("Sasquatch", true, (-110.5, 44.58333), DateTime("1972-06-06T12:00:00")), Occurrence("Sasquatch", true, (-111.05, 41.25), DateTime("1984-01-15T12:00:00")), Occurrence("Sasquatch", true, (-110.5, 41.2), DateTime("2005-11-15T12:00:00")), Occurrence("Sasquatch", true, (-108.9245, 42.9919), DateTime("2007-05-31T12:00:00"))])
We can plot the layer and the occurrences we have retrieved so far:
Code for the figure
heatmap(
SpeciesDistributionToolkit.trim(layer);
colormap = :Greens,
axis = (; aspect = DataAspect()),
)
scatter!(presences; color = :orange, markersize = 4)
lines!(POL, color=:black)
Some of these occurrences are outside of the masked region in the layer. For this reason, we will use the non-mutating mask
method on the GBIF records:
Code for the figure
f, ax, plt = heatmap(
SpeciesDistributionToolkit.trim(layer);
colormap = :Greens,
axis = (; aspect = DataAspect()),
)
scatter!(mask(presences, POL); color = :orange, markersize = 8)
lines!(POL, color=:black)
hidespines!(ax)
hidedecorations!(ax)
A note about vectors of occurrences
The reason why mask
called on a GBIF result is not mutating the result is that GBIF results also store the query that was used. For this reason, it makes little sense to modify this object. The non-mutating mask
returns a vector of Occurrence
, which for most purposes can be used in-place of the result - this is because GBIF records are AbstractOccurrence
, and vectors of these are handled correctly by the package.
OccurrencesInterface.Occurrence Type
Occurrence
This is a sub-type of AbstractOccurrence
, with the following types:
what
- species name, defaults to""
presence
- a boolean to mark the presence of the species, defaults totrue
where
- a tuple giving the location as longitude,latitude in WGS84, ormissing
, defaults tomissing
when
- aDateTime
giving the date of observation, ormissing
, defaults tomissing
When the interface is properly implemented for any type that is a sub-type of AbstractOccurrence
, there is an Occurrence
object can be created directly with e.g. Occurrence(observation)
. There is, similarly, an automatically implemented convert
method.
SimpleSDMLayers.mask Function
mask(layer::SDMLayer, template::SDMLayer)
Returns a copy of the first layer masked according to the second layer. See also mask!
.
SimpleSDMLayers.mask(layer::L, feature::T) where {L<:Union{<:SDMLayer,Vector{<:SDMLayer}}, T <: Union{Feature, FeatureCollection, Polygon, MultiPolygon}}
Returns a copy of the layer by the polygon.
sourceSimpleSDMLayers.mask(occ::T, poly::P) where {T <: AbstractOccurrenceCollection, P<:Union{Polygon,MultiPolygon}}
Returns a copy of the occurrences that are within the polygon.
sourceSimpleSDMLayers.mask! Function
mask!(layer::SDMLayer, template::SDMLayer)
Updates the positions in the first layer to be those that have a value in the second layer.
sourceSimpleSDMLayers.mask!(layer::SDMLayer, poly::T) where T<:Union{Polygon,MultiPolygon}
Turns off all the cells outside the polygon (or within holes in the polygon). This modifies the object.
sourceMissing docstring.
Missing docstring for SimpleSDMLayers.trim
. Check Documenter's build log for details.