diff --git a/HISTORY.rst b/HISTORY.rst index d23e34c..d1a4f7a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -101,6 +101,7 @@ Important fix 0.4.13 (2024-10-09) ------------------- -* Sorting out another hidden UTM issue +* Sorting out another hidden UTM issue. Ensures a single digit UTM is processed correctly. * Updated the list of datasets available from opentopography +* You can now download USGS data diff --git a/README.rst b/README.rst index c8c95fe..5458862 100644 --- a/README.rst +++ b/README.rst @@ -6,9 +6,6 @@ lsdviztools .. image:: https://img.shields.io/pypi/v/lsdviztools.svg?branch=master :target: https://pypi.org/project/lsdviztools/ -.. image:: https://travis-ci.com/LSDtopotools/lsdviztools.svg?branch=master - :target: https://travis-ci.com/LSDtopotools/lsdviztools - lsdvizools is a collection of routines for plotting geospatial data, with a focus on data produced by LSDTopoTools or by lsdtopytools. diff --git a/lsdviztools/lsdplottingtools/lsdmap_gdalio.py b/lsdviztools/lsdplottingtools/lsdmap_gdalio.py index 02a208a..81ca95e 100644 --- a/lsdviztools/lsdplottingtools/lsdmap_gdalio.py +++ b/lsdviztools/lsdplottingtools/lsdmap_gdalio.py @@ -1240,7 +1240,7 @@ def convert2UTM(DataDirectory, RasterFile,minimum_elevation=0.01,resolution=30): # Create a Transformer object transformer = Transformer.from_crs(source_crs, target_crs) x2, y2 = transformer.transform(centre_point[0],centre_point[1]) - + print("You had a weird coordinate system. I converted to EPSG:4326") print("The centre lat-long is") print(y2,x2) else: @@ -1253,7 +1253,7 @@ def convert2UTM(DataDirectory, RasterFile,minimum_elevation=0.01,resolution=30): print("latitude: "+str(y2)) print("longitude: "+str(x2)) - + print("Getting the UTM zone.") temp_info = utm.from_latlon(y2, x2) if(temp_info[3] in ['X','W','V','U','T','S','R','Q','P','N']): south = False