|
POST
|
Good afternoon, When querying a rest service is there a way to display the date as a number? I am calling this function from a C# program and on C# it displays dates as number and I would like to display it as a formatted date. https://services.arcgis.com/.../arcgis/rest/services/.../FeatureServer/0/query?where=
... View more
07-08-2025
10:37 AM
|
0
|
1
|
1377
|
|
POST
|
Found it: ESTRESDATE >= date '2025-07-03 14:46:17' in C#: string formattedDate = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); string whereCls = "ESTRESDATE >= date '" +formattedDate + "'";
... View more
07-03-2025
12:00 PM
|
0
|
0
|
618
|
|
POST
|
Good afternoon, When I query a feature in a REST service that I just edited in the AGOL Web Map, and enter ESTRESDATE: 7/3/2025 4:00:00 PM, it shows ESTRESDATE: 7/3/2025 6:00:00 PM — a two-hour difference. Why does it show a 2-hour difference? Thanks
... View more
07-03-2025
11:59 AM
|
0
|
0
|
1262
|
|
POST
|
Good afternoon, In a REST service, how can I query features to find those that are still active or have an Estimated Time to Incident Resolution later than the current time? https://services.arcgis.com/..../ArcGIS/rest/services/...../FeatureServer/0
... View more
07-03-2025
11:26 AM
|
0
|
1
|
645
|
|
POST
|
Good afternoon, To use a value retrieved from one pulldata() operation as the key for another pulldata() ? Thanks
... View more
06-16-2025
12:03 PM
|
0
|
3
|
804
|
|
POST
|
Hello, My hosted feature class has 3 fields: Code, Description 1, Description 2, Description 3. And also I have a table that has for each possible code, the 3 descriptions. I am looking for a way to digitize a polygon and when populating the field code, populate also automatically Decription1, Description2 and Description3. It is like a lookup table that stores 3 different descriptions. Thanks
... View more
06-12-2025
06:26 PM
|
0
|
3
|
979
|
|
POST
|
Thank you @Allen_Zhang Also regular Web Maps have a feature that allows to run a Calculate Field in a column. I was thinking about adding an analysis widget and running a a Geoprocessing Tool to Run Calculate Field on a Hosted Feature Layer in ArcGIS Online (AGOL). Something like that: from arcgis.gis import GIS # Connect to AGOL gis = GIS("home") # Get the feature service item item = gis.content.get("YOUR_FEATURE_SERVICE_ITEM_ID") layer = item.layers[0] # or use layer name # Query features features = layer.query(where="1=1").features # Update field values for feature in features: # Example calculation: FieldC = FieldA + FieldB feature.attributes["FieldC"] = feature.attributes["FieldA"] + feature.attributes["FieldB"] # Apply edits layer.edit_features(updates=features)
... View more
06-05-2025
11:12 AM
|
1
|
0
|
824
|
|
POST
|
Good afternoon How can I add in an EB application for editors/administrators the following functionality to a specific layer. Reset a field to a default value, "No". How will you implement this? What type of widget do you recommend? In Python and ArcGIS Pro and Notebook I will do something like that: feature_class = "your_feature_class" with arcpy.da.UpdateCursor(feature_class, ["Flag"]) as cursor: for row in cursor: row[0] = "" # Set the "Flag" field to an empty string cursor.updateRow(row)
... View more
06-04-2025
12:18 PM
|
0
|
3
|
878
|
|
POST
|
Good morning, We have a feature class with a field called ProjectID, which is a sequential number that increases by 1 each time a new project polygon is created in ArcMap using the Attribute Assistant toolbar. We are migrating this feature class to ArcGIS Online (AGOL) as a hosted feature layer and are looking for a way to increment the ProjectID using Power Automate, triggered by the "When a record is created in a feature layer (ArcGIS)" action. Are there any sample flows or examples that can help us create this automation? Thanks
... View more
04-30-2025
05:55 AM
|
0
|
1
|
950
|
|
POST
|
Good morning, Is there a way to run a Near Me widget from a value, not a point or shape? Thanks
... View more
04-09-2025
06:52 AM
|
0
|
1
|
567
|
|
POST
|
Good afternoon How can I count records in web map layers? I want to count records in two layers from a web map. How can I do that? # Open web map and layer # gis = GIS("Pro") # Load the web map webmap_item = gis.content.get("....") # Load the web map web_map = WebMap(webmap_item) for layer in web_map.layers: layer print(layer.title) # Query with return_count_only # Get the layer as a FeatureLayer object feature_layer = ????? # Count features
... View more
04-04-2025
12:58 PM
|
0
|
2
|
833
|
|
POST
|
installation - Setting up Python/ArcPy with ArcGIS Pro and Visual Studio? - Geographic Information Systems Stack Exchange
... View more
03-17-2025
04:16 AM
|
0
|
0
|
989
|
|
POST
|
Good morning, Is there a way to run the Analysis widget in Experience Builder on the selected records from the 'Near Me' button, and update the field to a value that the administrator wants to enter? Or with Power Automate?
... View more
03-11-2025
05:40 AM
|
0
|
0
|
1610
|
|
POST
|
Solved: How to Set up Python/ArcPy with ArcGIS Pro and Vis... - Esri Community Manage Python environments and interpreters - Visual Studio (Windows) | Microsoft Learn
... View more
03-04-2025
04:23 AM
|
0
|
1
|
1078
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-01-2026 12:34 PM | |
| 1 | 12-02-2022 08:17 AM | |
| 1 | 12-26-2025 05:02 AM | |
| 1 | 08-05-2025 04:28 AM | |
| 1 | 08-05-2025 04:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|