|
POST
|
Alicia, The name of the question should be referenced in the "${}", not the name of the choice list. See the attached xlsx. Josh
... View more
01-26-2022
12:44 PM
|
1
|
3
|
3757
|
|
POST
|
Sethabile, Which library are you referring to? Arcpy or the ArcGIS Python API? If you are referring to arcpy, you will need to set the Python interpreter in VSCode to the one that is installed alongside ArcGIS Pro. The default location of this interpreter is: "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\python.exe" If you are referring to the Python API, you can either follow the steps above, or install the Python API in existing Python installation by following the steps outlined in this documentation. After doing so, follow the steps in the first link to set this Python environment in VSCode. Hope this helps. Let me know if you have any other questions. Josh
... View more
06-22-2021
05:20 AM
|
1
|
0
|
1178
|
|
POST
|
404 tells us that no file at that path is found. Echoing Jayanta above, can reach the images in question by manually typing in the URL in a browser tab? Does it work over HTTP as opposed to HTTPS?
... View more
06-02-2021
05:46 AM
|
0
|
0
|
3088
|
|
POST
|
Hello, If the feature service has the sync capability enabled, you can use the Create Replica operation at REST to download a copy of the table. https://developers.arcgis.com/rest/services-reference/enterprise/create-replica.htm Josh
... View more
05-25-2021
12:50 PM
|
1
|
0
|
1107
|
|
POST
|
Yulia, 499 is a token required message. Can the user you're authenticated as see and access the service either at the REST endpoint of the server or in Portal? It may not be shared properly. Josh
... View more
05-07-2021
05:54 AM
|
0
|
1
|
1052
|
|
POST
|
Rakesh, Can you please provide the JavaScript you're using to get the user's location? -Josh
... View more
05-07-2021
05:53 AM
|
0
|
2
|
1175
|
|
POST
|
Alexander, Try using "token" instead of "apiKey". For example: https://basemaps-api.arcgis.com/arcgis/rest/services/styles/<MY_STYLE_ID>?token=<token>
... View more
05-06-2021
11:17 AM
|
0
|
0
|
2184
|
|
POST
|
Hi there, Are you able to share you data? If so, please export it as a map package to a file and share it here. Or, feel free to private message me. Thanks, Josh
... View more
04-19-2021
07:59 AM
|
0
|
1
|
1736
|
|
POST
|
To troubleshoot further you will need to attach both Python files to a reply to this message. Thank you, Josh
... View more
04-16-2021
06:00 AM
|
0
|
1
|
2806
|
|
POST
|
Your import statement may be incorrect. Replace <pythonfile> with the name of the Python file that contains the getPerson function. import arcpy
from <pythonfile> import getPerson
filePath = "C:/1.gdb"
name, age, county = getPerson(filePath)
... View more
04-16-2021
05:53 AM
|
0
|
3
|
2811
|
|
POST
|
Okay, the second part of my response still stand true. Given your current code sample, it looks like you are calling a class function (class.function(parameters)) but the function definition shows no sign of being a class method. Try invoking the function like this: import arcpy, getPerson
filePath = "C:/1.gdb"
name, age, county = getPerson(filePath)
... View more
04-16-2021
05:48 AM
|
0
|
0
|
2814
|
|
POST
|
Hi Mick, The getPerson function does not take any parameters, yet you are passing the variable "filePath" into it. In other words, "filePath" has no local variable to be mapped to within the function. Also, is getPerson a class method? If not, it's being invoked incorrectly. Try this out: def getPerson():
name = "Leona"
age = 35
country = "UK"
return name,age,country import arcpy, getPerson
filePath = "C:/1.gdb"
name, age, county = getPerson() Thanks, Josh
... View more
04-16-2021
05:05 AM
|
3
|
7
|
2854
|
|
POST
|
Jared, I got this to work by setting the "calculation" field of my second geopoint question to reference the field name of the first. When I place a point in the first geopoint question, a point is placed in the second one as well. Josh
... View more
01-07-2021
12:04 PM
|
0
|
4
|
2140
|
|
POST
|
Morning, AlanMcDowell1! I'm not aware of any Esri tools to accomplish what you describe, but the docx Python module looks like it might do the job. https://python-docx.readthedocs.io/en/latest/ Josh
... View more
01-07-2021
06:52 AM
|
2
|
1
|
4570
|
|
POST
|
Hello, There is no Esri-recommended order in which the Enterprise components should be stopped/started. However, Portal by far has the longest startup time. With that in mind, I usually restart the services in this order: Portal Server Data Store Best, Josh
... View more
11-10-2020
07:17 AM
|
4
|
2
|
11972
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-01-2025 05:40 AM | |
| 1 | 02-28-2025 07:11 AM | |
| 1 | 01-16-2025 05:35 AM | |
| 2 | 01-14-2025 06:48 AM | |
| 2 | 01-10-2025 08:07 AM |
| Online Status |
Offline
|
| Date Last Visited |
01-13-2026
01:43 PM
|