Commits (3)
""" Map Generator is a toolkit that provides easy to use 2D plotting and """ Map Generator is a toolkit that provides easy to use 2D plotting and
evaluation functions for Earth Sciences """ evaluation functions for Earth Sciences """
__version__ = "1.0.6" __version__ = "1.0.7"
...@@ -760,7 +760,7 @@ class PlotMap(MapCross, MapDrawOptions): ...@@ -760,7 +760,7 @@ class PlotMap(MapCross, MapDrawOptions):
frame_on=True) frame_on=True)
self.mgplot = plt.gcf() self.mgplot = plt.gcf()
self.mgaxis.patch.set_edgecolor('black') self.mgaxis.patch.set_edgecolor('black')
self.mgaxis.patch.set_linewidth('1') self.mgaxis.patch.set_linewidth(1)
self.gen_image_map( self.gen_image_map(
fig_name, fig_name,
grid, grid,
......
...@@ -98,8 +98,8 @@ class PlotSeries(MapGenerator): ...@@ -98,8 +98,8 @@ class PlotSeries(MapGenerator):
ax.set_autoscaley_on(True) ax.set_autoscaley_on(True)
else: else:
ax.set_ylim(left=ylimits[0], right=ylimits[1]) ax.set_ylim(left=ylimits[0], right=ylimits[1])
ax.grid(b=True, which='major', axis='both', alpha=0.6) ax.grid(visible=True, which='major', axis='both', alpha=0.6)
ax.grid(b=True, which='minor', axis='both', alpha=0.3) ax.grid(visible=True, which='minor', axis='both', alpha=0.3)
ax.tick_params( ax.tick_params(
axis='both', which='major', labelsize=self.axis_fontsize) axis='both', which='major', labelsize=self.axis_fontsize)
......
...@@ -5,7 +5,7 @@ setup( ...@@ -5,7 +5,7 @@ setup(
name="mapgenerator", name="mapgenerator",
license='Apache 2.0', license='Apache 2.0',
# Version number (initial): # Version number (initial):
version="1.0.6", version="1.0.7",
# Application author details: # Application author details:
author="Francesco Benincasa", author="Francesco Benincasa",
......