Metadata-Version: 2.1
Name: opedia
Version: 0.1.4
Summary: Opedia is an open source database service to integrate, visualize, and analyze ocean datasets such as satellite data, in-situ observations, and model outputs.
Home-page: https://github.com/mdashkezari/opedia
Author: Mohammad D. Ashkezari
Author-email: demo.80@gmail.com
License: UNKNOWN
Keywords: ocean oceanography database dataset satellite model in-situ remote sensing machine learning data visualization
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Description-Content-Type: text/markdown

# Opedia
Opedia is an open source database service to integrate, visualize, and analyze ocean datasets such as satellite data, in-situ observations, and model outputs. The project is supported by [Simons Foundation](https://www.simonsfoundation.org/).

# System Requirements
* [Anaconda Distribution Pyhton 2.7](https://www.anaconda.com/download/)
* Make sure python is in system path.
* Additional python modules:
	- pyodbc
	- dropbox
	- geopandas

# Installation
1.  **Set up database drivers (only required on macOS).**<br>
	 install [homebrew](https://brew.sh/); a package manager for macOS.<br>
	 ODBC driver provides the connection to the Opedia database.

	```
	$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
	$ brew install unixodbc
	$ brew install freetds --with-unixodbc
	```
2. **Install [Anaconda Distribution Python 2.7](https://www.anaconda.com/download/).**<br>
Make sure python is added to the system path.  Anaconda distribution covers the majority of python modules used by Opedia. There are a few more required modules; run the following commands to install them.

	```
	$ conda update --all
	$ conda install pyodbc
	$ conda install dropbox
	$ conda install -c conda-forge geopandas
	```


