Skip to content

Commit

Permalink
Had to change some things to get scripts to work
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-m-mudd committed Jul 23, 2021
1 parent 9253131 commit 79c7378
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion lsdviztools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Simon Marius Mudd"""
__email__ = '[email protected]'
__version__ = '0.4.5'
__version__ = '0.4.6'
__url__ = 'https://github.com/LSDtopotools/lsdviztools'
__license__ = 'MIT'

Expand Down
8 changes: 4 additions & 4 deletions lsdviztools/scripts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

from __future__ import absolute_import, division, print_function, unicode_literals

from .plotbasicrasters import *
from .grabopentopographydata import *
from .plotmovernanalysis import *
from .plotchianalysis import *
from .lsdtt_plotbasicrasters import *
from .lsdtt_grabopentopographydata import *
from .lsdtt_plotconcavityanalysis import *
from .lsdtt_plotchianalysis import *


Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def print_welcome():
print("You also need to tell me the prefix of the DEM you want to download")
print("Use the -fname flag to designate a file prefix")
print("For help type:")
print(" grabopentopographydata -h\n")
print(" lsdtt_grabopentopographydata -h\n")
print("=======================================================================\n\n ")


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def print_welcome():
print("Use the -dir flag to define the working directory.")
print("If you don't do this I will assume the data is in the same directory as this script.")
print("For help type:")
print(" python PlotChiAnalysis.py -h\n")
print(" lsdtt_plotbasicrasters -h\n")
print("=======================================================================\n\n ")


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def print_welcome():
print("Use the -dir flag to define the working directory.")
print("If you don't do this I will assume the data is in the same directory as this script.")
print("For help type:")
print(" python PlotChiAnalysis.py -h\n")
print(" lsdtt_plotchianalysis.py -h\n")
print("=======================================================================\n\n ")


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
def print_welcome():

print("\n\n=======================================================================")
print("Hello! I'm going to plot the m/n analysis results for you.")
print("Hello! I'm going to plot the concavity analysis results for you.")
print("You will need to tell me which directory to look in.")
print("Use the -dir flag to define the working directory.")
print("If you don't do this I will assume the data is in the same directory as this script.")
print("You also need the -fname flag which will give the prefix of the raster files.")
print("See our documentation for computing the data needed for these visualisation scripts:")
print("https://lsdtopotools.github.io/LSDTT_documentation/LSDTT_chi_analysis.html#_calculating_concavity")
print("For help type:")
print(" python PlotMOverNAnalysis.py -h\n")
print(" lsdtt_plotconcavityanalysis -h\n")
print("=======================================================================\n\n ")


Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
description="lsdviztools is a collection of routines for plotting geospatial data, with a focus on data produces by LSDTopoTools or by lsdtopytools.",
entry_points={
'console_scripts': [
'lsdtt_plotbasicrasters=lsdviztools.scripts.plotbasicrasters:main',
'lsdtt_plotmovernanalysis=lsdviztools.scripts.plotmovernanalysis:main',
'lsdtt_plotchianalysis=lsdviztools.scripts.plotchianalysis:main',
'lsdtt_grabopentopographydata=lsdviztools.scripts.grabopentopographydata:main'
'lsdtt_plotbasicrasters=lsdviztools.scripts.lsdtt_plotbasicrasters:main',
'lsdtt_plotconcavityanalysis=lsdviztools.scripts.lsdtt_plotconcavityanalysis:main',
'lsdtt_plotchianalysis=lsdviztools.scripts.lsdtt_plotchianalysis:main',
'lsdtt_grabopentopographydata=lsdviztools.scripts.lsdtt_grabopentopographydata:main'
],
},
install_requires=requirements,
Expand All @@ -50,6 +50,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/simon-m-mudd/lsdviztools',
version='0.4.5',
version='0.4.6',
zip_safe=False,
)

0 comments on commit 79c7378

Please sign in to comment.