Skip to content

Commit

Permalink
Merge pull request #1670 from jyaistMap/master
Browse files Browse the repository at this point in the history
Add documents for the 2.2.0 release
  • Loading branch information
jyaistMap authored Sep 22, 2023
2 parents fbb500d + b94e362 commit 66d3610
Show file tree
Hide file tree
Showing 28 changed files with 16,115 additions and 889 deletions.
7 changes: 6 additions & 1 deletion PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,9 @@ Please go through each entry in the below checklist and mark an 'X' if that cond
- [ ] All images used like `<img src="base64str_here">` instead of `<img src="https://some.url">`? All map widgets contain a static image preview? (Call `mapview_inst.take_screenshot()` to do so)
- [ ] All file paths are constructed in an OS-agnostic fashion with `os.path.join()`? (Instead of `r"\foo\bar"`, `os.path.join(os.path.sep, "foo", "bar")`, etc.)
- [ ] Is your code formatted using [Jupyter Black](https://www.freecodecamp.org/news/auto-format-your-python-code-with-black/)? You can use Jupyter Black to format your code in the notebook.
- [ ] **IF YOU WANT THIS SAMPLE TO BE DISPLAYED ON THE DEVELOPERS.ARCGIS.COM WEBSITE**, ping @ mohi9282 so he can add it to the list for the next deploy
- [ ] **If this notebook showcases deep learning capabilities, please go through the following checklist:**
- [ ] Are the inputs required for `Export Training Data Using Deep Learning` tool published on geosaurus org (api data owner account) and added in the notebook using `gis.content.get` function?
- [ ] Is training data zipped and published as Image Collection? Note: Whole folder is zipped with name same as the notebook name.
- [ ] Are the inputs required for model inferencing published on geosaurus org (api data owner account) and added in the notebook using `gis.content.get` function? Note: This includes providing test raster and trained model.
- [ ] Are the inferenced results displayed using a webmap widget?
- [ ] **IF YOU WANT THIS SAMPLE TO BE DISPLAYED ON THE DEVELOPERS.ARCGIS.COM WEBSITE**, ping @jyaistMap so he can add it to the list for the next deploy.
47 changes: 30 additions & 17 deletions guide/01-getting-started/system-requirements.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -22,44 +22,57 @@
"metadata": {},
"source": [
"## Operating System \n",
"The ArcGIS API for Python 2.1.0 is compatible with 64-bit versions of Windows, macOS, and Linux. Note that, 32-bit versions of Windows and Linux is no longer supported for API versioned later than 1.7.1.\n",
"The ArcGIS API for Python 2.2.0 is compatible with 64-bit versions of Windows, macOS, and Linux. Note that, 32-bit versions of Windows and Linux are no longer supported for API versions later than 1.7.1.\n",
"\n",
"## Python Version\n",
"Python 3.7.0 to 3.9.x is required to use the ArcGIS API for Python 2.1.0.\n",
"Python 3.9.x to 3.11.x is required to use the ArcGIS API for Python 2.2.0.\n",
"\n",
"> **Note:** The `arcgis.learn` module is **only** supported with Python 3.9.x.\n",
"\n",
"## Dependencies\n",
"The full power of the ArcGIS API for Python is best experienced when all its dependencies are installed. However, specific tasks such as GIS administration and content management can be accomplished with a subset of dependencies installed. See [Install with minimum Dependencies](../install-and-set-up#install-with-minimum-dependencies) to install the `arcgis` package in this manner.\n",
"\n",
"It is recommended to install the `arcgis` package the default way of either `conda install -c esri arcgis` or `pipenv install arcgis`. When installed in this manner, all the below dependencies are automatically installed. Note that most of these packages have dependencies of their own.\n",
"It is recommended to install the `arcgis` package the default way of either `conda install -c esri arcgis` or `pipenv install arcgis`. When version 2.2.0 is installed in this manner, all the below dependencies are automatically installed. \n",
"\n",
"> __Note__ Most of these packages have dependencies of their own. For a full list of packages installed:\n",
" > * conda environment, type `conda list -n <environment_name>`. \n",
" > * pipenv virtual environment: See [`Pipfile` and `Pipfile.lock`](https://pipenv.pypa.io/en/latest/pipfile/) for details. \n",
"\n",
"* [six](https://pypi.python.org/pypi/six)\n",
"* [pandas>=1.3.5](https://pandas.pydata.org/) \n",
"* [numpy>=1.16.2](http://www.numpy.org/) \n",
"* [pandas>=2.2.0](https://pandas.pydata.org/) \n",
"* [numpy>=1.21.6](http://www.numpy.org/) \n",
"* [pyshp>=2](https://pypi.python.org/pypi/pyshp/) \n",
"* [matplotlib](https://matplotlib.org/)\n",
"* [matploglib-inline](https://pypi.org/project/matplotlib-inline/)\n",
"* [notebook](https://ipython.org/notebook.html)\n",
"* [ipywidgets >=7](https://ipywidgets.readthedocs.io/en/stable/)\n",
"* [ipywidgets >=7,<8](https://ipywidgets.readthedocs.io/en/stable/)\n",
"* [widgetsnbextension >=3](https://pypi.python.org/pypi/widgetsnbextension)\n",
"* [keyring>=23.3.*](https://pypi.python.org/pypi/keyring/10.6.0)\n",
"* [winkerberos](https://pypi.python.org/pypi/winkerberos/0.7.0) (Windows only)\n",
"* [urllib3](https://pypi.python.org/pypi/urllib3)\n",
"* [keyring>=23.3.0](https://pypi.org/project/keyring/23.3.0/)\n",
"* [urllib3<2](https://pypi.python.org/pypi/urllib3)\n",
"* [cachetools](https://pypi.org/project/cachetools/)\n",
"* [lxml](https://pypi.org/project/lxml/)\n",
"* [cryptography](https://pypi.org/project/cryptography/)\n",
"* [jupyter-client<=6.1.12](https://pypi.org/project/jupyter-client/)\n",
"* [jupyterlab](https://pypi.org/project/jupyterlab/)\n",
"* [lerc](https://pypi.org/project/lerc/)\n",
"* [ujson>=3](https://pypi.org/project/ujson/)\n",
"* [python-certifi-win32](https://pypi.org/project/python-certifi-win32/)\n",
"* [pywin32>=223](https://pypi.org/project/pywin32/) (Windows only)\n",
"* [geomet](https://pypi.org/project/geomet/)\n",
"* [requests>=1.27.1](https://pypi.org/project/requests/)\n",
"* [requests>=2.27.1](https://pypi.org/project/requests/)\n",
"* [requests-oauthlib](https://pypi.org/project/requests-oauthlib/)\n",
"* [requests_toolbelt](https://pypi.org/project/requests_toolbelt/)\n",
"* [requests_ntlm](https://pypi.org/project/requests_ntlm/)\n",
"* [requests-gssapi](https://pypi.org/project/requests-gssapi/)\n",
"* [requests-negotiate-sspi](https://pypi.org/project/requests-negotiate-sspi/) (Windows only)\n",
"* [requests-kerberos](https://pypi.org/project/requests-kerberos/) (Windows only)\n",
"* [truststore](https://pypi.org/project/truststore/)\n",
"* [dask>=2023.3.2](https://pypi.org/project/dask/)\n",
"* [geomet](https://pypi.org/project/geomet/)\n",
"* [pyspnego>=0.8.0](https://pypi.org/project/pyspnego/)\n",
" * Python>=3.10\n",
"* **Windows only:**\n",
" * [winkerberos](https://pypi.python.org/pypi/winkerberos/0.7.0)\n",
" * [python-certifi-win32](https://pypi.org/project/python-certifi-win32/)\n",
" * Python < 3.10\n",
" * [pywin32>=223](https://pypi.org/project/pywin32/)\n",
" * [requests-negotiate-sspi](https://pypi.org/project/requests-negotiate-sspi/)\n",
" * [requests-kerberos](https://pypi.org/project/requests-kerberos/)\n",
"\n",
"> Note: if `arcpy` is found in the current python environment, it may be used in various locations. Otherwise, `pyshp` will be used. See [Spatially Enabled DataFrame](https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html?highlight=geoaccessor#arcgis.features.GeoAccessor) for more information.\n",
"\n",
Expand All @@ -71,7 +84,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -85,7 +98,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.10"
"version": "3.9.17"
},
"toc": {
"base_numbering": 1,
Expand Down
Loading

0 comments on commit 66d3610

Please sign in to comment.