Skip to content

Commit 33b2322

Browse files
committed
Version 0.3.0
1 parent 89430b1 commit 33b2322

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# python-databasin 0.2.2
1+
# python-databasin 0.3.0
22

33
[![Build Status](https://travis-ci.org/consbio/python-databasin.png?branch=master)](https://travis-ci.org/consbio/python-databasin) [![Coverage Status](https://coveralls.io/repos/consbio/python-databasin/badge.svg?branch=master&service=github)](https://coveralls.io/github/consbio/python-databasin?branch=master)
44

@@ -28,3 +28,12 @@ dataset.make_public()
2828
print(dataset.id)
2929
print(dataset.title)
3030
```
31+
32+
You can also upload Esri layer packages (`.lpk`). As with NetCDF's, layer packages for now must have the all metadata
33+
required by Data Basin to successfully import:
34+
35+
```python
36+
dataset = c.import_lpk('/path/to/lpk_with_metadata.lpk')
37+
print(dataset.id)
38+
print(dataset.title)
39+
```

databasin/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.2'
1+
__version__ = '0.3.0'

0 commit comments

Comments
 (0)