-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get generalized line stations #12
Comments
CalCOFI staion LatLong.xlsx - Google Sheets
|
From: @evsatt Hey Ben, CalCOFI in
|
Classification | Conformal cylindrical |
---|---|
Available forms | Forward and inverse, spherical and ellipsoidal |
Defined area | Only valid for the west coast of USA and Mexico |
Alias | calcofi |
Domain | 2D |
Input type | Geodetic coordinates |
Output type | Projected coordinates |
Cal Coop Ocean Fish Invest Lines/Stations
The CalCOFI pseudo-projection is the line and station coordinate system of the California Cooperative Oceanic Fisheries Investigations program, known as CalCOFI, for sampling offshore of the west coast of the U.S. and Mexico.
small setStarting with CalCOFI staion LatLong.xlsx - Google Sheets librarian::shelf(
glue, here, dplyr, mapview, readr, sf)
stations_csv <- here("data-raw/CalCOFI station LatLong.csv")
stations <- read_csv(stations_csv) %>%
rename_with(tolower) %>%
select(order, line, sta, lon = `lon dec`, lat = `lat dec`) %>%
mutate(
line_sta = glue("{line} {sta}") %>% as.character(),
offshore = ifelse(sta > 60, T, F)) %>%
st_as_sf(
coords = c("lon", "lat"), crs=4326, remove = F)
mapviewOptions(fgb = FALSE)
mapview(stations, zcol = "offshore")
usethis::use_data(stations, overwrite = TRUE) |
See:
|
Noticing at http://cce.lternet.edu/data/gmt-mapper, other station identifier columns to include besides California Current Ecosystem (CCE): |
Hi @superjai, The stations data are ready for documentation. Please see After devtools::load_all()
stations
names(stations) %>% paste(collapse = "\n- ") %>% cat()
|
TODO for @bbest:
|
From: Shonna Dovel [email protected]
Date: Thu, Mar 17, 2022 at 2:39 PM
Subject: Re: [CalCOFI] Question regarding station data from our server
To: Erin Satterthwaite [email protected], Ben [email protected]
Cc: Renae Logston [email protected], Kelsey Vogel [email protected]
Hi Ben and Erin,
While the CalCOFI website is being updated, the CCE-LTER site has a few ways to map the CalCOFI grid.
http://cce.lternet.edu/data/gmt-mapper
Please see the attachment for the desired Lat/Longs for the 66 station cast. Please let me know if you need the SCCOOS and northern lines as well.
Cheers,
Shonna
GMT Map
More Links
This interface uses GMT v4.1.1 with the following data files:
Bathymetry and Coastline Files
Station and Feature Files
Cruise Data - Cruise specific points can be found on their respective cruise pages.
The text was updated successfully, but these errors were encountered: