A native python wrapper for the NEON ecological database api
Project description
Py-NEONutilities
This project is a heavy work in progress to write a native python wrapper for the NEON data platform.
It aims to provide the functionality of the NEONutilities R package
without the overhead of having to manage rpy
.
Installation
You can install this package from pypi with pip install py-neonUtils
Please see the pypi branch for downloads.
Usage:
Observational Data
from neonUtilities.NeonObservational import NeonObservational
import pandas as pd
neonobj = NeonObservational(dpID="DP1.10003.001", site=["WOOD"], dates=["2015-07",["2017-07","2017-12"]], package="basic")
#Download data from 2015-07 and the range of 2017-07 to 2017-12.
neonobj.download()
neonobj.stackByTable()
df = neonobj.to_pandas()
Instrumental Data
from neonUtilities.NeonObservational import NeonObservational
import pandas as pd
neonobj = NeonInstrumental(dpID="DP1.10003.001", site=["WOOD"], dates=["2015-07",["2017-07","2017-12"]], avg=30, package="basic")
neonobj.download()
neonobj.stackByTable()
df = neonobj.to_pandas()
This module offers a lot of flexibility with month-chunk downloads. You can provide:
- A single string to download that chunk for all sites
- A list of strings to download those chunks for all sites
- Either a nested list or a nested tuple of dates to download that range inclusive,inclusive
- Any combination of 2 and 3
- A dictionary with sites as keys and number any date definition above to download different month chunks for different sites.
Progress
- Observational data
- Download data zips
- Table stacking
- Support for READMEs, EML and variables files
- Instrumental data
- Download specific average intervals
- AOP data
- EC data
- Taxon data manip
- API token
- package for pypi (check the pypi branch)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file py-neonUtilities-0.5.4.tar.gz
.
File metadata
- Download URL: py-neonUtilities-0.5.4.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1.post20200604 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f438ee8759fec5c99438b9929b89c90b7bde10d10f30ff2ed001e8ffd322c45e |
|
MD5 | 17c1cc632f4d86d4614e04be11f0787f |
|
BLAKE2b-256 | 1dab7b65d457fa7934105dae432e22dd93a3119f56aade1b7d532eff3a11af6b |