Skip to content

Commit 2365325

Browse files
committed
Updated API Ref on master to v1.6.1
1 parent 0141800 commit 2365325

File tree

124 files changed

+24167
-35672
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+24167
-35672
lines changed

apidoc/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 237a62798678fb0faaa599bf5d1ce421
3+
config: f33d73ab3b0af3bebc609abb885db577
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
arcgis.apps.hub module
2+
=======================
3+
4+
.. automodule:: arcgis.apps.hub
5+
6+
The :class:`~arcgis.apps.hub.Hub` is the main entry point into the Hub module.
7+
It can be used as shown in the following code example.
8+
9+
.. code-block:: python
10+
11+
from arcgis.gis import GIS
12+
gis = GIS("https://arcgis.com", "<username>", "<password>")
13+
myHub = gis.hub
14+
a_Initiative = myHub.initiatives.get(itemId)
15+
a_Indicators = a_Initiative.indicators.search()
16+
myEvents = myHub.events.search()
17+
18+
Hub
19+
--------------------------
20+
.. autoclass:: arcgis.apps.hub.Hub
21+
:members:
22+
:undoc-members:
23+
24+
Initiative
25+
--------------------------
26+
.. autoclass:: arcgis.apps.hub.Initiative
27+
:members:
28+
:undoc-members:
29+
30+
Indicator
31+
--------------------------
32+
.. autoclass:: arcgis.apps.hub.Indicator
33+
:members:
34+
:undoc-members:
35+
36+
Event
37+
--------------------------
38+
.. autoclass:: arcgis.apps.hub.Event
39+
:members:
40+
:undoc-members:
41+
42+
InitiativeManager
43+
--------------------------
44+
.. autoclass:: arcgis.apps.hub.InitiativeManager
45+
:members:
46+
:undoc-members:
47+
48+
IndicatorManager
49+
--------------------------
50+
.. autoclass:: arcgis.apps.hub.IndicatorManager
51+
:members:
52+
:undoc-members:
53+
54+
EventManager
55+
--------------------------
56+
.. autoclass:: arcgis.apps.hub.EventManager
57+
:members:
58+
:undoc-members:

apidoc/_sources/arcgis.apps.rst.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,17 @@ build_survey123_url
1919
--------------
2020
.. automethod:: arcgis.apps.build_survey123_url
2121

22+
build_tracker_url
23+
--------------
24+
.. automethod:: arcgis.apps.build_tracker_url
25+
2226
Submodules
2327
----------
2428
.. toctree::
2529
:maxdepth: 3
2630

31+
arcgis.apps.hub
2732
arcgis.apps.workforce
2833
arcgis.apps.storymap
2934
arcgis.apps.survey123
35+
arcgis.apps.tracker
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
arcgis.apps.tracker module
2+
============================
3+
4+
.. automodule:: arcgis.apps.tracker
5+
6+
7+
The :class:`~arcgis.apps.tracker.LocationTrackingManager` is the main entry point into the Workforce module.
8+
It can be used as shown in the following code example.
9+
10+
11+
.. code-block:: python
12+
13+
# Access the location tracking manager and check the status
14+
15+
import arcgis
16+
gis = arcgis.gis.GIS("https://arcgis.com", "<username>", "<password>")
17+
print(gis.admin.location_tracking.status)
18+
19+
LocationTrackingManager
20+
----------
21+
.. autoclass:: arcgis.apps.tracker.LocationTrackingManager
22+
:members:
23+
:undoc-members:
24+
:inherited-members:
25+
26+
TrackView
27+
--------------
28+
.. autoclass:: arcgis.apps.tracker.TrackView
29+
:members:
30+
:undoc-members:
31+
:inherited-members:
32+
33+
TrackViewerManager
34+
-------------
35+
.. autoclass:: arcgis.apps.tracker.TrackViewerManager
36+
:members:
37+
:undoc-members:
38+
:inherited-members:
39+
40+
MobileUserManager
41+
-------------
42+
.. autoclass:: arcgis.apps.tracker.MobileUserManager
43+
:members:
44+
:inherited-members:

apidoc/_sources/arcgis.features.analysis.rst.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
1+
.. _FeatureInput:
2+
13
arcgis.features.analysis module
24
=======================================
5+
**Feature Input**
6+
7+
All standard spatial analysis tools accept features as input. Features can be specified in one of the following ways:
8+
* Item (of type Feature Layer Collection or Feature Collection) - only the first feature layer is used
9+
* Instance of FeatureLayer, FeatureLayerCollection, FeatureCollection,
10+
* Feature Service URL as a string,
11+
* Python dict in the `feature collection format <https://developers.arcgis.com/rest/analysis/api-reference/feature-input.htm>`_
12+
13+
For point feature layers, the following inputs may additonally be used for convenience:
14+
* (lat, long) pair for point feature layer
15+
* dict with 'location' as key (eg result from geocoding)
316

417
.. automodule:: arcgis.features.analysis
518

@@ -64,6 +77,10 @@ find_nearest
6477
--------------
6578
.. automethod:: arcgis.features.analysis.find_nearest
6679

80+
find_point_clusters
81+
--------------
82+
.. automethod:: arcgis.features.analysis.find_point_clusters
83+
6784
find_similar_locations
6885
--------------
6986
.. automethod:: arcgis.features.analysis.find_similar_locations
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
arcgis.features.hydrology module
2+
====================================
3+
4+
.. automodule:: arcgis.features.hydrology
5+
6+
trace_downstream
7+
-------------------------------
8+
.. automethod:: arcgis.features.hydrology.trace_downstream
9+
10+
watershed
11+
-------------------------------
12+
.. automethod:: arcgis.features.hydrology.watershed

apidoc/_sources/arcgis.features.summarize_data.rst.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ arcgis.features.summarize_data module
66
aggregate_points
77
--------------
88
.. automethod:: arcgis.features.summarize_data.aggregate_points
9-
9+
10+
describe_dataset
11+
--------------
12+
.. automethod:: arcgis.features.summarize_data.describe_dataset
13+
1014
join_features
1115
--------------
1216
.. automethod:: arcgis.features.summarize_data.join_features
13-
17+
1418
summarize_nearby
1519
--------------
1620
.. automethod:: arcgis.features.summarize_data.summarize_nearby

apidoc/_sources/arcgis.features.toc.rst.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,12 @@ Submodules
7474

7575
arcgis.features.analysis
7676
arcgis.features.analyze_patterns
77+
arcgis.features.elevation
7778
arcgis.features.enrich_data
7879
arcgis.features.find_locations
80+
arcgis.features.hydrology
7981
arcgis.features.manage_data
82+
arcgis.features.managers
8083
arcgis.features.summarize_data
8184
arcgis.features.use_proximity
82-
arcgis.features.elevation
83-
arcgis.features.managers
85+

apidoc/_sources/arcgis.geoanalytics.analyze_patterns.rst.txt

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,19 @@ calculate_density
77
--------------
88
.. automethod:: arcgis.geoanalytics.analyze_patterns.calculate_density
99

10+
create_space_time_cube
11+
----------------------
12+
.. automethod:: arcgis.geoanalytics.analyze_patterns.create_space_time_cube
13+
1014
find_hot_spots
1115
--------------
1216
.. automethod:: arcgis.geoanalytics.analyze_patterns.find_hot_spots
1317

14-
create_space_time_cube
15-
----------------------
16-
.. automethod:: arcgis.geoanalytics.analyze_patterns.create_space_time_cube
18+
forest
19+
--------------
20+
.. automethod:: arcgis.geoanalytics.analyze_patterns.forest
1721

22+
23+
glr
24+
--------------
25+
.. automethod:: arcgis.geoanalytics.analyze_patterns.glr
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
arcgis.geoanalytics.data_enrichment module
2+
=======================================
3+
4+
.. automodule:: arcgis.geoanalytics.data_enrichment
5+
6+
enrich_from_grid
7+
--------------
8+
.. automethod:: arcgis.geoanalytics.data_enrichment.enrich_from_grid
9+

0 commit comments

Comments
 (0)