From 3978b34564e71630cbd9b7b814122196da23f50f Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Fri, 30 May 2025 15:58:45 -0600 Subject: [PATCH 1/4] document handling duplicates for WQP TDS --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cda8d60..7ad1f29 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,9 @@ where `{parameter}` is the name of the parameter whose data is to be retrieved, | **nmose-roswell** | X | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | | **nwis** | X | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | | **pvacd** | X | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | -| **wqp** | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X | +| **wqp** | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X* | X | + +*TDS data from WQP may contain duplicates. Duplicates are identified when they have the same ActivityIdentifier. If duplicates are identified, only one is kept as identified by its USGS pCode. The order of preference for pCodes is: 70300, 70301, 70303. ### Output Type The `--output-type` option is required and used to set the output type: From 411b410b940349e7a9901a95c414bff40a372240 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 2 Jun 2025 08:39:07 -0600 Subject: [PATCH 2/4] usgs p code hyperlinks --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ad1f29..1a4c1dc 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ where `{parameter}` is the name of the parameter whose data is to be retrieved, | **pvacd** | X | - | - | - | - | - | - | - | - | - | - | - | - | - | - | - | | **wqp** | X | X | X | X | X | X | X | X | X | X | X | X | X | X | X* | X | -*TDS data from WQP may contain duplicates. Duplicates are identified when they have the same ActivityIdentifier. If duplicates are identified, only one is kept as identified by its USGS pCode. The order of preference for pCodes is: 70300, 70301, 70303. +*TDS data from WQP may contain duplicates. Duplicates are identified when they have the same ActivityIdentifier. If duplicates are identified, only one is kept as identified by its USGS pCode. The order of preference for the pCodes is: [70300](https://help.waterdata.usgs.gov/code/parameter_cd_nm_query?parm_nm_cd=70300&fmt=html), [70301](https://help.waterdata.usgs.gov/code/parameter_cd_nm_query?parm_nm_cd=70301&fmt=html), [70303](https://help.waterdata.usgs.gov/code/parameter_cd_nm_query?parm_nm_cd=70303&fmt=html). ### Output Type The `--output-type` option is required and used to set the output type: From 89c614e81fc89e6a54173a820a63a401acff7e10 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 2 Jun 2025 11:33:15 -0600 Subject: [PATCH 3/4] document output-format --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1a4c1dc..e34155b 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,10 @@ A log of the inputs and processes, called `die.log`, is also saved to the output | source_parameter_units | the unit of measurement from the source | string | Y | | conversion_factor | the factor applied to the result to convert the measurement to standardized units | float or int | Y | +### Output Format + +The `--output-format` option is used to determine the file format for the summary and sites tables. The available options are `csv` and `geojson`. If not specified, it defaults to `csv`. + ### Source Inclusion & Exclusion The Data Integration Engine enables the user to obtain groundwater level and groundwater quality data from a variety of sources. Data from sources are automatically included in the output if available unless specifically excluded. The following flags are available to exclude specific data sources: From 2c82e378a6556183e3de9830c908b85df565a1d7 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Mon, 2 Jun 2025 11:33:31 -0600 Subject: [PATCH 4/4] bump to version 0.9.7 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c847cd6..fe2af85 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name="nmuwd", - version="0.9.6", + version="0.9.7", author="Jake Ross", description="New Mexico Water Data Integration Engine", long_description=long_description,