Skip to content

Commit fc70af8

Browse files
committed
Updated discover and symbology
1 parent c9eeb28 commit fc70af8

40 files changed

+3996
-3154
lines changed

LICENSE.txt renamed to LICENSE

File renamed without changes.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# HydroShare GIS Data Viewer
1+
# HydroShare Data Viewer
22

33
This app is designed to run on Tethys Platform and helps support CUAHSI's HydroShare project. Its purpose is to allow HydroShare users to quickly preview hydrologic geospatial and time series content stored in HydroShare resources.
44

@@ -24,12 +24,12 @@ $ t
2424

2525
Clone this repository into your Tethys apps folder:
2626
```
27-
$ git clone https://github.com/kjlippold/tethysapp-hydroshare_gis_data_viewer.git
27+
$ git clone https://github.com/kjlippold/tethysapp-hydroshare_data_viewer.git
2828
```
2929

3030
Enter the app folder:
3131
```
32-
$ cd /tethysapp-hydroshare_gis_data_viewer
32+
$ cd /tethysapp-hydroshare_data_viewer
3333
```
3434

3535
Install the app:
@@ -39,7 +39,7 @@ $ python setup.py develop
3939

4040
Use the [Tethys Portal Admin Console](http://docs.tethysplatform.org/en/stable/installation/web_admin_setup.html) to define custom settings for the app. The HydroShare URL should point to the instance of HydroShare you wish to connect to (e.g. https://www.hydroshare.org). The GeoServer URL should point to a GeoServer associated with that instance of HydroShare (e.g. https://geoserver.hydroshare.org/geoserver). The HydroServer URL should point to a HydroServer associated with that instance of HydroShare (e.g. https://geoserver.hydroshare.org/wds). The Maximum Layer Count setting should be an integer that will limit the total number of layers a user can load into the app at once.
4141

42-
The HydroShare Time Series Manager should now be running in you Tethys Portal.
42+
The HydroShare Data Viewer should now be running in you Tethys Portal.
4343

4444
## Built With
4545

@@ -48,4 +48,4 @@ The HydroShare Time Series Manager should now be running in you Tethys Portal.
4848

4949
## License
5050

51-
This project is licensed under the MIT License - see the [LICENSE.txt](LICENSE.txt) file for details
51+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
from tethys_apps.app_installation import custom_develop_command, custom_install_command
55

66
# -- Apps Definition -- #
7-
app_package = 'hydroshare_gis_data_viewer'
7+
app_package = 'hydroshare_data_viewer'
88
release_package = 'tethysapp-' + app_package
9-
app_class = 'hydroshare_gis_data_viewer.app:HydroshareGisDataViewer'
9+
app_class = 'hydroshare_data_viewer.app:HydroshareDataViewer'
1010
app_package_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'tethysapp', app_package)
1111

1212
# -- Python Dependencies -- #
1313
dependencies = []
1414

1515
setup(
1616
name=release_package,
17-
version='0.0.1',
17+
version='1.0',
1818
tags='',
19-
description='',
20-
long_description='',
19+
description='This app is designed to run on Tethys Platform and helps support CUAHSI\'s HydroShare project. Its purpose is to allow HydroShare users to quickly preview hydrologic geospatial and time series content stored in HydroShare resources.',
20+
long_description='This app is designed to run on Tethys Platform and helps support CUAHSI\'s HydroShare project. Its purpose is to allow HydroShare users to quickly preview hydrologic geospatial and time series content stored in HydroShare resources.',
2121
keywords='',
22-
author='',
23-
author_email='',
24-
url='',
25-
license='',
22+
author='Ken Lippold',
23+
author_email='kjlippold@gmail.com',
24+
url='https://hs-apps-dev.hydroshare.org/apps/hydroshare-data-viewer/',
25+
license='MIT',
2626
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
2727
namespace_packages=['tethysapp', 'tethysapp.' + app_package],
2828
include_package_data=True,

0 commit comments

Comments
 (0)