Skip to content

Commit

Permalink
reclass method in raster class now doesn't check for projected datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
wbierbower committed Apr 22, 2015
1 parent e1e4516 commit 6f1597a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A python library that generates simple OSGeo-supported rasters and vectors. The
Requirements
------------

fauxgeo 0.2.0 requires
fauxgeo 0.2.1 requires

* NumPy
* Matplotlib
Expand Down
2 changes: 1 addition & 1 deletion fauxgeo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from raster_factory import *
from vector import *

__version__ = '0.2.0'
__version__ = '0.2.1'
3 changes: 2 additions & 1 deletion fauxgeo/raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,8 @@ def reclass(self, reclass_table, out_nodata=None, out_datatype=None):
reclass_table,
dataset_out_uri,
out_datatype,
out_nodata)
out_nodata,
assert_datasets_projected=False)

return Raster.from_tempfile(dataset_out_uri)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

setup(
name='fauxgeo',
version='0.2.0',
version='0.2.1',
description='A python library that generates fake geospatial data',
long_description=readme + '\n\n' + history,
author='Will B',
Expand Down

0 comments on commit 6f1597a

Please sign in to comment.