Skip to content

Commit 16190f4

Browse files
authored
Merge pull request #16 from ethanwhite/docs
Documentation and metadata fixes
2 parents 3ea49e5 + caae60c commit 16190f4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,17 @@ $ pip install neonutilities
1515

1616
```
1717
import neonutilities as nu
18+
import os
1819
1920
bird = nu.load_by_product(dpid="DP1.10003.001",
2021
site="RMNP",
2122
package="expanded",
2223
release="RELEASE-2024",
2324
token=os.environ.get("NEON_TOKEN"))
24-
25+
2526
nu.by_tile_aop(dpid="DP3.30015.001",
2627
site="WREF",
27-
year=2022,
28+
year=2021,
2829
easting=[571000,578000],
2930
northing=[5079000,5080000],
3031
savepath="filepath on your machine",
@@ -53,4 +54,3 @@ Disclaimer
5354
---
5455

5556
Information and documents contained within this repository are available as-is. Codes or documents, or their use, may not be supported or maintained under any program or service and may not be compatible with data currently available from the NEON Data Portal.
56-

pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ authors = [
1313
description="A package for accessing and wrangling data generated and published by the National Ecological Observatory Network."
1414
readme = "README.md"
1515
requires-python = ">=3.9"
16+
urls.Documentation = "https://neon-utilities-python.readthedocs.io/en/latest/"
17+
urls.Source = "https://github.com/NEONScience/NEON-utilities-python/"
1618
dependencies = [
1719
"importlib-resources",
1820
"pandas",

src/neonutilities/unzip_and_stack.py

+1
Original file line numberDiff line numberDiff line change
@@ -1110,6 +1110,7 @@ def stack_by_table(filepath,
11101110
Example
11111111
------------------
11121112
To stack PAR data (DP1.00024.001) downloaded from the NEON data portal
1113+
11131114
>>> pardat = stack_by_table("/filepath/NEON_par.zip")
11141115
11151116
Notes

0 commit comments

Comments
 (0)