Skip to content
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

69 review rc doc add citation #99

Merged
merged 3 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
CITATION.cff

cff-version: "1.2.0"
authors:
- family-names: Bousquin
given-names: Justin
orcid: "https://orcid.org/0000-0001-5797-4322"
- family-names: Mullin
given-names: Cristina A.
orcid: "https://orcid.org/0000-0002-0615-6087"
doi: 10.5281/zenodo.13356847
message: If you use this package, please cite our article in the
Journal of Open Source Software.
preferred-citation:
authors:
- family-names: Bousquin
given-names: Justin
orcid: "https://orcid.org/0000-0001-5797-4322"
- family-names: Mullin
given-names: Cristina A.
orcid: "https://orcid.org/0000-0002-0615-6087"
date-published: 2024-10-22
doi: 10.21105/joss.07305
issn: 2475-9066
issue: 102
journal: Journal of Open Source Software
publisher:
name: Open Journals
start: 7305
title: "harmonize-wq: Standardize, clean and wrangle Water Quality
Portal data into more analytic-ready formats"
type: article
url: "https://joss.theoj.org/papers/10.21105/joss.07305"
volume: 9
title: "harmonize-wq: Standardize, clean and wrangle Water Quality
Portal data into more analytic-ready formats"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[![test](https://github.com/USEPA/harmonize-wq/actions/workflows/test.yml/badge.svg)](https://github.com/USEPA/harmonize-wq/actions/workflows/test.yml)
[![Python Version from PEP 621 TOML](https://img.shields.io/python/required-version-toml?tomlFilePath=https://raw.githubusercontent.com/USEPA/harmonize-wq/main/pyproject.toml)](https://www.python.org/downloads/)
[![pyOpenSci Peer-Reviewed](https://pyopensci.org/badges/peer-reviewed.svg)](https://github.com/pyOpenSci/software-review/issues/157)
[![DOI](https://joss.theoj.org/papers/10.21105/joss.07305/status.svg)](https://doi.org/10.21105/joss.07305)

# harmonize-wq
Standardize, clean, and wrangle Water Quality Portal data into more analytic-ready formats
Expand Down
4 changes: 2 additions & 2 deletions demos/Harmonize_CapeCod_Detailed.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1478,7 +1478,7 @@
"# Optional params: units='m', char_val='Depth, Secchi disk depth', out_col='Secchi', report=False)\n",
"\n",
"# We start by demonstrating on secchi disk depth (units default to m, keep intermediate fields, see report)\n",
"df = harmonize.harmonize(df, 'Depth, Secchi disk depth', intermediate_columns=True, report=True)"
"df = harmonize.harmonize(df, \"Depth, Secchi disk depth\", errors=\"ignore\", intermediate_columns=True, report=True)"
]
},
{
Expand Down Expand Up @@ -4110,7 +4110,7 @@
],
"source": [
"# pH, this time looking at a report\n",
"df = harmonize.harmonize(df, 'pH', report=True)"
"df = harmonize.harmonize(df, \"pH\", errors=\"ignore\", report=True)"
]
},
{
Expand Down
Loading