Skip to content
Snippets Groups Projects
Commit effe1819 authored by Daniel Scheffler's avatar Daniel Scheffler
Browse files

Fixed issue #4 (VisibleDeprecationWarning). Updated version info and HISTORY.rst.

parent be0f2701
No related branches found
No related tags found
No related merge requests found
Pipeline #11237 passed
......@@ -2,6 +2,12 @@
History
=======
0.3.5 (2020-08-07)
------------------
* Fixed VisibleDeprecationWarning.
0.3.4 (2020-08-07)
------------------
......
......@@ -226,7 +226,7 @@ class SensorMapGeometryTransformer3D(object):
_initializer(self.lats, self.lons, data)
result = [self._to_map_geometry_2D(argsdict) for argsdict in args]
band_inds = list(np.array(result)[:, -1])
band_inds = [res[-1] for res in result]
data_mapgeo = np.dstack([result[band_inds.index(i)][0] for i in range(data.shape[2])])
out_gt = result[0][1]
out_prj = result[0][2]
......
......@@ -22,6 +22,6 @@
# You should have received a copy of the GNU Lesser General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
__version__ = '0.3.4'
__versionalias__ = '20200807.01'
__version__ = '0.3.5'
__versionalias__ = '20200807.02'
__author__ = 'Daniel Scheffler'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment