Skip to content

Commit b9960b7

Browse files
committed
moved namespace to xrspatial
1 parent b950f77 commit b9960b7

30 files changed

+11
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
cmdclass=versioneer.get_cmdclass(),
88
description='xarray-based spatial analysis tools',
99
packages=find_packages(),
10-
install_requires=['xarray', 'numba', 'pytest'],
10+
install_requires=['xarray', 'numba', 'pandas', 'pytest'],
1111
zip_safe=False,
1212
include_package_data=True)

xarray_spatial/tests/__init__.py

Whitespace-only changes.

xrspatial/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from xrspatial.slope import slope # noqa
2+
from xrspatial.aspect import aspect # noqa
3+
from xrspatial.terrain import generate_terrain # noqa
4+
from xrspatial.bump import bump # noqa
5+
from xrspatial.focal import mean # noqa
6+
from xrspatial.hillshade import hillshade # noqa
7+
from xrspatial.perlin import perlin # noqa
8+
from xrspatial.proximity import proximity # noqa
9+
from xrspatial.viewshed import viewshed # noqa
10+
from xrspatial.zonal import zonal_stats # noqa

0 commit comments

Comments
 (0)