South Pointe Drive–Frenchman's Creek Bridge

The South Pointe Drive–Frenchman's Creek Bridge is a bridge located on South Pointe Drive over Frenchman's Creek in Grosse Ile, Michigan. It was listed on the National Register of Historic Places in 2000.[1]

South Pointe Drive–Frenchman's Creek Bridge
LocationSouth Pointe Dr. over Frenchman's Creek, Grosse Ile, Michigan
Coordinates42°6′9″N 83°10′20″W
Area0.9 acres (0.36 ha)
Built1939
ArchitectWayne County Road Commission
Architectural styleT-beam
MPSHighway Bridges of Michigan MPS
NRHP reference No.00000117[1]
Added to NRHPFebruary 18, 2000

History

In the mid-1930s, the Wayne County Road Commission took ownership of a timber trestle bridge spanning Frenchman's Creek.[2] The commission planned to replace the deck planking of the bridge, but a preliminary inspection showed that the entire structure was substantially weakened due to dry rot, and an immediate replacement was required.[2] Being short of funds, the road commission tapped the labor force of the Works Progress Administration.

The bridge designed is a concrete T-beam with 40-foot span.[2] Wood forms from another WPA project were used to shape the deck, and the construction of the new bridge was completed in 1939.[2] The original bridge had a decorative balustrade along each side.[2]

gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
gollark: Anyway², I'll switch over my backup stuff and use the existing incremental tar thing for smallish compressible directories and rsync for large-scale apiary data.
gollark: Wow, my server just got an "out of disk space" warning for /tmp.

See also

  •  Michigan portal
  •  National Register of Historic Places portal

References

  1. "National Register Information System". National Register of Historic Places. National Park Service. March 13, 2009. Retrieved September 6, 2010.
  2. Staff (May 16, 2002). "S. Pointe Dr.–Swan Island Canal Bridge". Michigan's Historic Bridges. Michigan Department of Transportation. Retrieved September 6, 2010.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.