Metadata-Version: 2.1
Name: pylipd
Version: 1.0.0
Summary: Python utilities for handling LiPD data
Home-page: https://github.com/linkedearth/pylipd
Download-URL: https://github.com/linkedearth/pylipd/tarball/1.0.0
Author: Varun Ratnakar
Author-email: varunratnakar@gmail.com
License: Apache 2-0 License
Project-URL: Bug Tracker, https://github.com/linkedearth/pylipd/issues
Keywords: Paleoclimate, Data Analysis, LiPD
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9.0
Description-Content-Type: text/markdown
License-File: LICENSE

# PyLiPD
Python LiPD utilities

## Installation
    pip install pylipd

## Usage

### Loading local LiPD files
    from pylipd.lipd import LiPD
    lipd = LiPD()
    lipd.load(["MD98_2181.Stott.2007.lpd", "Ant-WAIS-Divide.Severinghaus.2012.lpd", "Asi-TDAXJP.PAGES2k.2013.lpd"])

### Loading LiPD data from GraphDB server
    from pylipd.lipd import LiPD
    lipd = LiPD()
    lipd.set_endpoint("https://linkedearth.graphdb.mint.isi.edu/repositories/LiPDVerse2")
    lipd.load_remote_datasets(["MD98_2181.Stott.2007", "Ant-WAIS-Divide.Severinghaus.2012", "Asi-TDAXJP.PAGES2k.2013"])
