Skip to content

Commit

Permalink
Merge pull request #15 from ayushanand18/readme-update
Browse files Browse the repository at this point in the history
update: Updating README and Docs
  • Loading branch information
7yl4r authored Jan 23, 2023
2 parents 695f793 + 491d7b4 commit 894db6e
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 9 deletions.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
# PyDwcViz
A python package to help with Darwin-Core Data analysis and visualization.
A python package that makes Darwin-Core Data analysis and visualization easy.

## Installation
### Install latest development version from GitHub
```python
pip install git+git://github.com/marinebon/py-dwc-viz.git
```

## Modules
Module | Description
-------|------------
`diversity`|Generate biodiversity indices for species analysis.
`map`|Visualize DwC data easily on maps
`stats`|Visualize distribution of records and environmental parameters.
`taxon`|Visualize taxonomic distributions.

## Documentation
The documentation can be found at [GitHub Pages](https://marinebon.github.io/py-dwc-viz).

## Authors
Open-sourced and Built with ❤️ by MBON volunteers
17 changes: 10 additions & 7 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,29 @@ Contents
.. toctree::
:maxdepth: 2

taxon
stats
diversity
map
stats
taxon

Modules
#######
:ref:`taxon`
:ref:`diversity`
----------------------
Generate biodiversity indices for species analysis.

Visualize taxanomic distributions from OBIS data in various forms.
:ref:`map`
-----------
Visualize DwC data easily on maps.

:ref:`stats`
----------------------

Visualize distribution of records and environmental parameters from OBIS data in various forms.

:ref:`diversity`
:ref:`taxon`
----------------------
Visualize taxanomic distributions from OBIS data in various forms.

Generate biodiversity indices for species analysis.

Indices and tables
==================
Expand Down
10 changes: 10 additions & 0 deletions docs/map.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _map:

Map
=====

Visualize DwC data easily on maps.

.. py:module:: pydwcviz.map
.. autofunction:: points
2 changes: 1 addition & 1 deletion pydwcviz/map/map.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def points(df, crs="epsg:4326", figsize=(20,10)):
Generate a point map from DwC data
:param df: [DataFrame] A DwC data DataFrame with at least decimalLongitude, and decimalLatitude
as column labels
as column labels
:param crs: [String] Define the CRS for the map
:param figsize: [Tuple] Define the figsize of the plot
Expand Down

0 comments on commit 894db6e

Please sign in to comment.