Skip to content
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ $ pip install neonutilities

```
import neonutilities as nu
import os

bird = nu.load_by_product(dpid="DP1.10003.001",
site="RMNP",
package="expanded",
release="RELEASE-2024",
token=os.environ.get("NEON_TOKEN"))

nu.by_tile_aop(dpid="DP3.30015.001",
site="WREF",
year=2022,
year=2021,
easting=[571000,578000],
northing=[5079000,5080000],
savepath="filepath on your machine",
Expand Down Expand Up @@ -53,4 +54,3 @@ Disclaimer
---

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.

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ authors = [
description="A package for accessing and wrangling data generated and published by the National Ecological Observatory Network."
readme = "README.md"
requires-python = ">=3.9"
urls.Documentation = "https://neon-utilities-python.readthedocs.io/en/latest/"
urls.Source = "https://github.com/NEONScience/NEON-utilities-python/"
dependencies = [
"importlib-resources",
"pandas",
Expand Down
1 change: 1 addition & 0 deletions src/neonutilities/unzip_and_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -1098,6 +1098,7 @@ def stack_by_table(filepath,
Example
------------------
To stack PAR data (DP1.00024.001) downloaded from the NEON data portal

>>> pardat = stack_by_table("/filepath/NEON_par.zip")

Created on Tue Mar 5 2024
Expand Down