Skip to content

Edits based on user doc feedback #2292

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions guide/03-the-gis/accessing-and-creating-content.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,7 @@
"\n",
"The `add()` method accepts a dictionary containing the properties of the item to be created. The optional `file`, `text`, `url`, and `data_url` parameters accept input to add the actual content. \n",
"\n",
"All content you add this way is added to the authenticated user's dolswe. Let us connect to our Enterprise instance, add a csv file as an item and then publish a feature layer from it.\n",
"All content you add this way is added to the authenticated user's folders. Let us connect to our Enterprise instance, add a csv file as an item and then publish a feature layer from it.\n",
"\n",
"For example, set up a path to the data:\n",
"`data_path = os.path.join(r\"<your_drive>:\\\\\", \"path\", \"to\", \"data\")`"
Expand Down Expand Up @@ -2460,7 +2460,7 @@
},
{
"cell_type": "code",
"execution_count": 38,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand All @@ -2478,7 +2478,7 @@
],
"source": [
"# create new folder\n",
"gis.content.folders.create_folder(folder='ports')"
"gis.content.folders.create(folder='ports')"
]
},
{
Expand Down
22 changes: 20 additions & 2 deletions guide/03-the-gis/managing-your-content.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,24 @@
"volcanoes_item.tags"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"'d7fd78fb56aa48a2a376e08e0c3caefb'\n"
]
}
],
"source": [
"# id\n",
"volcanoes_item.id"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -654,7 +672,7 @@
"metadata": {
"anaconda-cloud": {},
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand All @@ -668,7 +686,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.16"
"version": "3.11.10"
},
"toc": {
"base_numbering": 1,
Expand Down
Loading