Skip to content

Commit

Permalink
remove plotting routines and reference
Browse files Browse the repository at this point in the history
this is better done via erddap or an outside source
  • Loading branch information
shaunwbell committed Dec 9, 2024
1 parent 20bb5c1 commit f5df53c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 134 deletions.
10 changes: 1 addition & 9 deletions ARGOS_service_data_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
import io_utils.ConfigParserLocal as ConfigParserLocal

from io_utils import ConfigParserLocal
# from plots import ArgosDrifters

"""-----------------------------------------------------Data Classes----------------------------------------------------------"""

Expand Down Expand Up @@ -503,7 +502,7 @@ def pandas2netcdf(df=None, ofile="data.nc"):
)
parser.add_argument("-nc", "--netcdf", type=str, help="output as netcdf - full path")
parser.add_argument("-config", "--config", type=str, help="read local config file")
parser.add_argument("-plot", "--plot", action="store_true", help="plot data")

parser.add_argument(
"-interpolate",
"--interpolate",
Expand Down Expand Up @@ -897,10 +896,3 @@ def pandas2netcdf(df=None, ofile="data.nc"):
if args.netcdf:
pandas2netcdf(df=df, ofile=args.netcdf)

if args.plot:
print("deprecated while cartopy is not yet written")
pass
# driftermap = ArgosDrifters.ArgosPlot(df=df)
# # (ax,fig1) = driftermap.make_map(param='doy')
# (ax, fig1) = driftermap.make_map(param="sst")
# fig1.savefig(args.sourcefile + ".png")
125 changes: 0 additions & 125 deletions plots/ArgosDrifters.py

This file was deleted.

Empty file removed plots/__init__.py
Empty file.

0 comments on commit f5df53c

Please sign in to comment.