-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The most basic functionality is present; graphs may be created from t…
…he cli
- Loading branch information
1 parent
3303474
commit 90b3bc5
Showing
8 changed files
with
117 additions
and
18 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/env python | ||
|
||
import plotting.arguments as arguments | ||
import plotting.line as line_graphs | ||
import plotting.plot as plots | ||
|
||
|
||
def get_plot(plot_arguments: arguments.PlotArguments) -> plots.Plot: | ||
if plot_arguments.plot_type.lower() == 'line': | ||
if plot_arguments.group is None: | ||
return line_graphs.LinePlot(plot_arguments) | ||
return line_graphs.AnimatedLinePlot(plot_arguments) | ||
raise Exception("{} is not a valid plot type".format(plot_arguments.plot_type)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
attrs==20.3.0 | ||
certifi==2020.11.8 | ||
cftime==1.2.1 | ||
click==7.1.2 | ||
click-plugins==1.1.1 | ||
cligj==0.7.0 | ||
cycler==0.10.0 | ||
Cython==0.29.21 | ||
Fiona==1.8.17 | ||
geopandas==0.8.1 | ||
kiwisolver==1.3.1 | ||
matplotlib==3.3.2 | ||
munch==2.5.0 | ||
netCDF4==1.5.4 | ||
numpy==1.19.4 | ||
pandas==1.1.4 | ||
Pillow==8.0.1 | ||
plotly==4.12.0 | ||
pyparsing==2.4.7 | ||
pyproj==3.0.0.post1 | ||
python-dateutil==2.8.1 | ||
pytz==2020.4 | ||
retrying==1.3.3 | ||
scipy==1.5.4 | ||
Shapely==1.7.1 | ||
six==1.15.0 | ||
xarray==0.16.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from setuptools import setup | ||
from setuptools import find_packages | ||
|
||
setup( | ||
name='Plot4OF', | ||
version='0.1', | ||
packages=find_packages(), | ||
url='https://github.com/christophertubbs/Plot4OF', | ||
license='GPL 3.0', | ||
author='Christopher Tubbs', | ||
author_email='[email protected]', | ||
description='Plots for Old Farts - A simple tool for generating basic graphs without the manual use of code or tools like excel ' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters