Skip to content

Commit

Permalink
all EcoFOCIpy
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunwbell committed Feb 7, 2024
1 parent ee9d46e commit ebd8ad7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# EcoFOCIpy
python tools for the EcoFOCI PMEL research Program

Examples and Notebook Archives can be found within this package or also at [ecofoci_code_lab](https://noaa-pmel.github.io/ecofoci_code_lab/content/code_gallery/ecofocipy.html)
Examples and Notebook Archives can be found within this package or also at [ecofoci_code_lab](https://noaa-pmel.github.io/ecofoci_code_lab/content/code_gallery/EcoFOCIpy.html)

## Basic Description

Expand Down
4 changes: 2 additions & 2 deletions notebooks/EcoFOCIpy_sbe_ctd_btlfile_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"outputs": [],
"source": [
"sample_data_dir = '/Users/bell/ecoraid/2019/CTDcasts/hly1901/' #root path to cruise directory\n",
"ecofocipy_dir = '/Users/bell/Programs/EcoFOCIpy/'"
"EcoFOCIpy_dir = '/Users/bell/Programs/EcoFOCIpy/'"
]
},
{
Expand Down Expand Up @@ -133,7 +133,7 @@
"cruise_name = 'HE1901' #no hyphens\n",
"cruise_meta_file = sample_data_dir+'logs/HE1901.yaml'\n",
"inst_meta_file = sample_data_dir+'logs/FOCI_standard_CTD.yaml' #<- copy to each deployment for simplicity?\n",
"group_meta_file = ecofocipy_dir+'staticdata/institutional_meta_example.yaml'\n",
"group_meta_file = EcoFOCIpy_dir+'staticdata/institutional_meta_example.yaml'\n",
"###############################################################\n",
"\n",
"#init and load data\n",
Expand Down
4 changes: 2 additions & 2 deletions notebooks/EcoFOCIpy_sbe_ctd_btlfile_example_simple.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"outputs": [],
"source": [
"sample_data_dir = '/Users/bell/ecoraid/2021/CTDcasts/dy2103/' #root path to cruise directory\n",
"ecofocipy_dir = '/Users/bell/Programs/EcoFOCIpy/'"
"EcoFOCIpy_dir = '/Users/bell/Programs/EcoFOCIpy/'"
]
},
{
Expand All @@ -53,7 +53,7 @@
"cruise_name = 'DY2103' #no hyphens\n",
"cruise_meta_file = sample_data_dir+'logs/DY2103.yaml'\n",
"inst_meta_file = sample_data_dir+'logs/FOCI_standard_CTDplusrinko.yaml' #<- copy to each deployment for simplicity?\n",
"group_meta_file = ecofocipy_dir+'staticdata/institutional_meta_example.yaml'\n",
"group_meta_file = EcoFOCIpy_dir+'staticdata/institutional_meta_example.yaml'\n",
"###############################################################\n",
"\n",
"#init and load data\n",
Expand Down
4 changes: 2 additions & 2 deletions notebooks/EcoFOCIpy_sbe_ctd_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"outputs": [],
"source": [
"sample_data_dir = '/Users/bell/ecoraid/2021/CTDcasts/dy2103/' #root path to cruise directory\n",
"ecofocipy_dir = '/Users/bell/Programs/EcoFOCIpy/'"
"EcoFOCIpy_dir = '/Users/bell/Programs/EcoFOCIpy/'"
]
},
{
Expand Down Expand Up @@ -159,7 +159,7 @@
"cruise_name = 'DY2103' #no hyphens\n",
"cruise_meta_file = sample_data_dir+'logs/DY2103.yaml'\n",
"inst_meta_file = sample_data_dir+'logs/FOCI_standard_CTDplusrinko.yaml'\n",
"group_meta_file = ecofocipy_dir+'staticdata/institutional_meta_example.yaml'\n",
"group_meta_file = EcoFOCIpy_dir+'staticdata/institutional_meta_example.yaml'\n",
"inst_shortname = '' #keep as placeholder for now\n",
"###############################################################\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ max-line-length = 95

[flake8]
max-line-length = 95
application-import-names = ecofocipy
application-import-names = EcoFOCIpy
import-order-style = google
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021 ecofocipy
# Copyright (c) 2021 EcoFOCIpy
"""Setup script for installing EcoFOCIpy."""

import sys
Expand All @@ -7,7 +7,7 @@

if sys.version_info[0] < 3:
error = """
ecofocipy requires the Python 3.8 or above, but will install on
EcoFOCIpy requires the Python 3.8 or above, but will install on
all versions of python3.
Python {py} detected.
Expand Down
2 changes: 1 addition & 1 deletion src/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


def get_version():
"""Get ecofocipy's version.
"""Get EcoFOCIpy's version.
Either get it from package metadata, or get it using version control information if
a development install.
Expand Down

0 comments on commit ebd8ad7

Please sign in to comment.