Skip to content

Commit

Permalink
Updating documentation to reference envipyarclib
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Lefebvre committed Jul 21, 2017
1 parent a8646c6 commit d69a4e0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion doc/source/conf.py
Expand Up @@ -159,4 +159,5 @@


# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
intersphinx_mapping = {'python': ('https://docs.python.org/', None),
'envipyarclib': ('https://envi-py-for-arcgis-library.readthedocs.io/en/latest/', None)}
9 changes: 7 additions & 2 deletions envipyarc/gptoolbox.py
@@ -1,5 +1,9 @@
"""
ENVI GPToolbox help goes heres
The ENVI GPToolbox class is used to create python toolboxes capable of running \
ENVI/IDL analytics inside of ArcMap and ArcGIS Pro. Each generated toolbox contains \
one or more GPTools that are lightweight wrappers to running ENVI/IDL tasks through \
the taskengine. For more api documentation on GPToolbox you can \
view the envipyarclib :mod:`GPToolbox <envipyarclib:envipyarclib.gptoolbox>` class.
"""
from string import Template
from envipyarclib import GPToolbox as BaseToolbox
Expand Down Expand Up @@ -33,7 +37,8 @@

class GPToolbox(BaseToolbox): # pylint: disable=too-few-public-methods
"""
Implementation of the GPToolbox class for ENVI/IDL.
Implementation of the envipyarclib \
:mod:`GPToolbox <envipyarclib:envipyarclib.gptoolbox>` class for ENVI/IDL.
"""
def __init__(self, tasks=None, alias='envi'):
super(GPToolbox, self).__init__(tasks,
Expand Down

0 comments on commit d69a4e0

Please sign in to comment.