|
POST
|
Yes, working with v4.14. No errors in console. I'm in Arizona, USA.
... View more
11-17-2020
06:39 AM
|
1
|
1
|
3133
|
|
POST
|
It seems to be working for me. Maybe you just stumbled into a momentary outage?
... View more
11-17-2020
06:32 AM
|
0
|
3
|
3144
|
|
POST
|
Sure. Make the virtual directory at the highest level necessary and you can browse down from there in the url just like you would expect. For example, D:\temp\virtualdir on the server (or some network drive, etc) could be hosted as a virtual directory and accessed from web browser like https://hostname/iis_virtual_directory_name/someinsidefolder/anotherfolder (assuming those folders exist inside the virtualdir location). Again though, you will need to have directory browsing enabled if you're going to view the contents of a folder.
... View more
11-13-2020
11:31 AM
|
0
|
0
|
1807
|
|
POST
|
It will not be able to open a folder using the OS file explore app. The best you could do is to host it as a virtual directory and allow directory browsing so you can get a list of files and folders in the browser.
... View more
11-13-2020
11:01 AM
|
1
|
2
|
1819
|
|
POST
|
with arcpy.da.SearchCursor(arcpy.mapping.Layer('TreesA').dataSource, ['OID@']) as rs:
... View more
11-13-2020
06:54 AM
|
0
|
1
|
3051
|
|
POST
|
If the ObjectID field is what you're getting, try using the OID@ field name token instead.
... View more
11-13-2020
06:44 AM
|
0
|
3
|
3056
|
|
POST
|
I think he's referring to the within() method for Geometry objects. https://community.esri.com/thread/197968-re-how-to-use-arcpy-geometry-measureonline
... View more
09-09-2020
08:31 AM
|
0
|
0
|
3095
|
|
POST
|
It's also better to include the specific error type you're expecting so you don't end up passing unexpected errors too. I don't know what type of error this is supposed to produce but here's an example. try:
Abstract = tree.find("idinfo/descript/abstract").text
except AttributeError:
Abstract = "No abstract"
except:
# Catch for all other unhandled exceptions
raise
... View more
08-25-2020
07:34 AM
|
0
|
0
|
2121
|
|
POST
|
Hi Andres Castillo, You should really post a new question for this. I'm still a bit unclear what you're asking.
... View more
08-21-2020
07:45 AM
|
0
|
0
|
2721
|
|
POST
|
I finally found it in this technical FAQ, It's called the ArcGIS Security Advisor
... View more
08-18-2020
09:23 AM
|
0
|
0
|
655
|
|
POST
|
With the switch to allowing only HTTPS, has anyone developed an efficient method of finding all the content in an ArcGIS Online organization that is using HTTP references?
... View more
08-17-2020
02:46 PM
|
0
|
1
|
698
|
|
POST
|
I had a similar quandary and solved it with composing promises. https://community.esri.com/thread/222084-multiple-querytask-operations-with-maxrecordcount
... View more
06-22-2020
07:25 AM
|
0
|
0
|
2799
|
|
POST
|
Joe Borgione wrote: ...the Fairhurst procedure... The first thing I thought of was the Riker Maneuver.
... View more
06-10-2020
07:35 AM
|
0
|
1
|
6730
|
|
POST
|
I know your question has already been answered but I couldn't resist sharing a couple little tricks I use. First, consider using the @ field name token options to access Esri fields more reliably. with arcpy.da.UpdateCursor(A2 , ["OID@", "Field"]) as cursor:
for oid, field in cursor:
if "'" in field or "#" in field:
print ("Deleting record: 'OBJECTID' = {}".format(oid)) Also used in the sample above is a method called sequence unpacking to easily assign variable names to your cursor row indexes (field values). This works best with only a few fields. If you have many fields in your cursor, you can use this helper function to make a dictionary of the values so it's cleaner to access them instead of using the row index like row[1]. with arcpy.da.UpdateCursor(A2 , ["aField", "anotherField", "moreField"]) as cursor:
for row in row_as_dict(cursor, cursor.fields):
if "'" in row["aField"] or "#" in row["anotherField"]:
print ("Deleting record: 'moreField' = {}".format(row["moreField"]))
def row_as_dict(data, fields):
for row in data:
yield OrderedDict(zip(fields, row))
... View more
05-19-2020
07:40 AM
|
1
|
0
|
2319
|
|
POST
|
It seems that recreating my feature layer that's being updated somehow makes the new data available to Esri Leaflet to do its removeLayer business. Still not sure of the root cause but I'll update here if any more information is discovered.
... View more
03-27-2020
12:02 PM
|
0
|
0
|
1234
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 10-23-2025 03:53 PM | |
| 1 | 04-28-2026 07:25 AM | |
| 1 | 03-19-2026 08:59 AM | |
| 1 | 02-12-2026 01:37 PM |