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