data-raw/make_nep_stations.R

library(tibble)

nep_tide_stations<- tribble(
  ~code, ~location, ~state, ~NEP,

  9410840, 'Santa Monica', 'CA', 'Santa Monica Bay',
  9412110, 'Port San Luis', 'CA', 'Morro Bay',
  9414750, 'Alameda', 'CA', 'San Francisco Bay',
  9415102, 'Martinez-Amorco Pier', 'CA', 'San Francisco Bay',
  9437540, 'Garibaldi', 'OR', 'Tillamook Bay',
  9439040, 'Astoria', 'OR', 'Lower COlumbia',
  9439099, 'Wauna', 'OR', 'Lower COlumbia',
  9439201, 'St Helens', 'OR', 'Lower COlumbia',
  9443090, 'Neah Bay', 'WA', 'Puget Sound',
  9444090, 'Port Angeles', 'WA', 'Puget Sound',
  9444900, 'Port Townsend', 'WA', 'Puget Sound',
  9447130, 'Seattle', 'WA', 'Puget Sound',
  9446484, 'Tacoma', 'WA', 'Puget Sound',
  8418150, 'Portland', 'ME','Casco Bay',
  8419870, 'Seavey Island', 'ME', 'Piscatiqua',
  8443970, 'Boston', 'MA', 'Massachusetts Bays',
  8447930, 'Woods Hole', 'MA', 'Buzzards Bay',
  8452660, 'Newport', 'RI', 'Narragansett Bay',
  8454000, 'Providence', 'RI',  'Narragansett Bay',
  8454049, 'Quonset Point', 'RI', 'Narragansett Bay',
  8461490, 'New London', 'CT', 'Long Island Sound',
  8465705, 'New Haven', 'CT', 'Long Island Sound',
  8467150, 'Bridgeport', 'CT', 'Long Island Sound',
  8516945, 'Kings Point', 'NY', 'Long Island Sound',
  8510560, 'Montauk', 'NY', 'Peconic Bay',
  8518750, 'The Battery', 'NY', 'New York New Jersey Harbor',
  8519483, 'Bergen Point West Reach', 'NY',  'New York New Jersey Harbor',
  8539094, 'Burlington, Delaware River', 'NJ', 'Delaware Bay',
  8551762, 'Delaware City', 'DE', 'Delaware Bay',
  8537121, 'Ship John Shoal', 'NJ', 'Delaware Bay',
  8555889, 'Brandywine Shoal Light', 'DE', 'Delaware Inland Bays',
  8557380, 'Lewes', 'DE', 'Inland Bays',
  8570283, 'Ocean City Inlet', 'MD', 'Maryland Coastal Bays',
  8651370, 'Duck', 'NC', 'Albemarle-Pamlico',
  8652587, 'Oregon Inlet Marina', 'NC', 'Albemarle-Pamlico',
  8654467, 'USCG Station Hatteras', 'NC', 'Albemarle-Pamlico',
  8721604, 'Trident Pier, Port Canaveral', 'FL', 'Indian Rier Lagoon',
  8725520, 'Fort Myers', 'FL', 'Coastal and Heartland',
  8726384, 'Port Manatee', 'FL', 'Tampa Bay',
  8726520, 'St. Petersburg, Tampa Bay', 'FL', 'Tampa Bay',
  8726607, 'Old Port Tampa', 'FL', 'Tampa Bay',
  8726674, 'East Bay', 'FL', 'Tampa Bay',
  8736897, 'Coast Guard Sector Mobile', 'AL', 'Mobile Bay',
  8735180, 'Dauphin Island', 'AL', 'Mobile Bay',
  8760721, 'Pilottown', 'LA', 'Barataria-Terrebonne',
  8761305, 'Shell Beach', 'LA', 'Barataria-Terrebonne',
  8761724, 'Grand Isle', 'LA', 'Barataria-Terrebonne',
  8761927, 'New Canal Station', 'LA', 'Barataria-Terrebonne',
  8761955, 'Carrollton', 'LA', 'Barataria-Terrebonne',
  8762075, 'Port Fourchon, Belle Pass', 'LA', 'Barataria-Terrebonne',
  8762482, 'West Bank 1, Bayou Gauche', 'LA', 'Barataria-Terrebonne',
  8770613, 'Morgans Point, Barbours Cut', 'TX', 'Galveston Bay',
  8771013, 'Eagle Point, Galveston Bay', 'TX', 'Galveston Bay',
  8771450, 'Galveston Pier 21', 'TX', 'Galveston Bay',
  8771486, 'Galveston Railroad Bridge', 'TX', 'Galveston Bay',
  8775237, 'Port Aransas', 'TX', 'Coastal Bend Bays',
  8775244, 'Nueces Bay', 'TX', 'Coastal Bend Bays',
  8776604, 'Baffin Bay', 'TX', 'Coastal Bend Bays',
  8777812, 'Rincon Del San Jose', 'TX', 'Coastal Bend Bays',
  9755371,  'San Juan, La Puntilla, San Juan Bay', 'PR', 'San Juan Bay'
  )

usethis::use_data( nep_tide_stations, overwrite = TRUE)
ccb60/SLRSIM documentation built on Jan. 21, 2022, 1:31 a.m.