Beaver Island ArchiveSearch

Dataset

BLM General Land Office patent records for the Beaver Island area

Also GLO records · General Land Office patents · BLM GLO Records

Draft — sources verified, prose evolving

TypeDataset
WithinBeaver Island archipelago

Summary

The project holds the BLM General Land Office patent layer for the Beaver Island area: 352 patent documents, 665 legal-location rows, and 352 patent PDFs, covering issue dates from February 1, 1849 through June 13, 1974. The rows preserve the recorded grantee spelling, accession and document numbers, patent class, authority, act or treaty, statutory reference, land office, patent-wide acreage, cancellation and reservation fields, and PLSS legal description.

This is transactional evidence of federal land conveyances. It is not a census of residents, a complete chain of title, or a current ownership database. A patentee might never have occupied the parcel, and later private conveyances require county deed, probate, tax, and related records.

Acquisition and preservation

BLM launched a modernized GLO system in July 2026. General public use no longer requires an account. The public Salesforce page supplies a short-lived guest bearer to its embedded search application; scripts/retrieve_glo_patents.py follows that normal browser flow rather than retaining credentials or bypassing authentication.

The script searches patents for Charlevoix, paginates all 1,201 returned records, and retains only legal locations that match sections already present in the project’s held BLM PLSS island grid: Michigan Meridian 19, Townships 37N–40N, Ranges 8W–12W. It then retrieves each patent’s detail record and image URL, removes all temporary bearer and image-delivery query tokens from persisted metadata, writes the normalized CSV and sanitized raw JSON with provenance, and downloads the patent PDFs.

The complete reproducible acquisition is:

uv run python scripts/retrieve_glo_patents.py --download-pdfs
uv run python scripts/ingest_glo_records.py --apply --refresh

PLSS joins and precision

All 665 legal-location rows join a held island-area section. Of those, 170 can also be joined to exact held quarter-quarter geometry. The remaining 495 are deliberately section-only because they describe government lots, fractional subdivisions, or other forms for which the source does not support an exact quarter-quarter geometry.

The importer normalizes the BLM subdivision notation to the Michigan PLSS geometry convention, including quarter sections and half-quarter forms. It does not spread a government lot across every quarter-quarter polygon or otherwise invent spatial precision. Each generated source-row article links to the normalized CSV, its locally held patent PDF, its section article, and—only when supported—its exact quarter-quarter article.

Evidence visible in the collection

The earliest issue date, February 1, 1849, includes sale-cash patents to names such as James F. Cabel, David McKay, Randolph Dinsmore, Alva Cabel, Marvin Aldrich, Eri J. Moore, Thomas O. Bennett, and Patrick Lunney. These records make early federal conveyances searchable by name, date, authority, and parcel, but do not by themselves establish island residence.

One held patent is independently resolvable to James Jesse Strang. Accession MI1960__.176, issued November 1, 1849 under the sale-cash-entry authority, covers lots 4 and 5 in T39N R10W Section 23 and reports 71.05 acres. The patent image names “James J. Strang, of Walworth County, Wisconsin,” so this link rests on the document rather than surname or geographic proximity alone.

Twenty-six patent documents populate BLM’s tribe field: 20 Chippewa and 6 Ottawa. Those source labels and grantee spellings are retained as recorded. They should be connected to specific people, communities, treaties, or allotment histories only where additional evidence supports the identification; the source’s historical terminology is not silently treated as a modern community identity.

What remains open

  • GLO tract books and surveyors’ field notes are not yet held. They may clarify entry history, relinquishments, cancellations, and survey observations that a final patent does not show.
  • County deed indexes and deeds are needed to trace conveyances after federal patent, while probate and tax records may establish inheritance, occupancy, and local ownership episodes.
  • Most grantee strings remain intentionally unresolved. Identity work must use names, dates, locations, associates, and documentary evidence rather than surname-only matching.
  • These records cannot answer who lives on a parcel now or produce a complete list of everyone who ever lived or owned property in the archipelago.

See also

Sources

  1. Bureau of Land Management, General Land Office Records public search system.
    The public July 2026 search flow returned 1,201 Charlevoix County patent hits. Exact filtering against the project's held island-section grid retained 352 patents with 665 legal-location rows.
  2. Project-preserved BLM patent detail responses for the Beaver Island area.
    Sanitized detail records for all 352 retained patents. Short-lived bearer and image-delivery tokens are not preserved.
    federal · glo · beaver_island_patents
  3. Project-normalized BLM GLO patent legal-location table.
    665 location rows with source identifiers, transaction metadata, legal descriptions, and paths to 352 locally held patent PDFs.
    federal · glo · beaver_island_patent_locations
  4. Reproducible public-record retrieval and normalization script.
    Captures the short-lived guest token issued through the normal public browser flow, paginates the public search API, filters exact held sections, retrieves details, sanitizes tokens, and downloads patent images.
    scripts · retrieve_glo_patents