|
IDEA
|
I stand corrected! I haven't had a chance to really play with geofences yet, though I'm really keen too!
... View more
05-25-2023
03:36 PM
|
0
|
0
|
5295
|
|
IDEA
|
Keep an eye out for updates on the geofencing capabilities in Field Maps. Currently it only accepts polygons, but they're working towards including point features which sounds like it would suit your needs. Get Started with Geofences in ArcGIS Field Maps (esri.com)
... View more
05-24-2023
08:55 PM
|
0
|
0
|
5348
|
|
POST
|
Idea posted here to get this resolved! Include ability to update feature service Feature ... - Esri Community
... View more
05-23-2023
05:09 PM
|
0
|
0
|
6314
|
|
POST
|
That is confusing. As much as I'd like to see it rolled in for consistency, I'd prefer to see a solution in any format (stand-alone?) compared to the current non-solution.
... View more
05-23-2023
05:08 PM
|
1
|
0
|
6315
|
|
IDEA
|
Scenario: I can add a new Domain value to a feature service and update the symbology to include that new domain value in the layer, which appears in all my maps, but then once in that map, I can't create a new feature using that new Domain value. I currently have to create a feature using one of the original feature templates, and then edit the feature type to use the new domain value. This is not ideal. IDEA: When configuring a feature service in ArcGIS Online, we can use the Visualization page to configure things such as Label expressions, Symbology, Popups, etc.....but currently there is no way to update the default Feature Templates for the feature service - include this as an option please! As discussed here, existing feature templates can be modified using the Field Maps Designer per map that contains the layer, but these changes can NOT be applied universally and inherited by all maps containing that layer (the way you can with a label, popup or symbology change) (update: this change does flow through to all maps containing that layer, but is still limited to editing existing templates and doesn't permit creating completely new feature templates). And if the feature templates are updated in Map Viewer Classic, these are also ignored in the new Map Viewer and Field Maps.
... View more
05-22-2023
09:13 PM
|
27
|
5
|
2698
|
|
POST
|
And to clarify, whilst I have managed to add a new feature template in Map Viewer Classic, that doesn't flow through to the new Map Viewer either.
... View more
05-22-2023
08:57 PM
|
1
|
2
|
6332
|
|
POST
|
Hi. Thanks for the detailed information. I've just had a look through the options and it still seems there's no way to add a new feature template in ArcGIS Online. The Field Maps designer only updates the map the layer is loaded into, and not all maps containing that layer. It also doesn't seem to allow the creation of a completely new feature template, just duplicates of existing templates with different field defaults (not a new "category" of feature though added to a Domain after the original layer was published). This seems like a major oversight in the feature service management workflow.
... View more
05-22-2023
08:55 PM
|
1
|
5
|
6332
|
|
POST
|
Just got this in an email from ESRI. Updates have been made to the following defect which you are associated with: BUG-000137676 - In ArcGIS Pro, unable to remove duplicates using the Distinct Arcade function in the Dynamic Text tool for table attribute values. Status: Fixed (Learn More) Version Fixed: 3.2 Additional Information: This issue is addressed in ArcGIS Pro 3.2.
... View more
05-03-2023
03:43 AM
|
0
|
0
|
1566
|
|
IDEA
|
Just got this in an email from ESRI. Updates have been made to the following defect which you are associated with: BUG-000137676 - In ArcGIS Pro, unable to remove duplicates using the Distinct Arcade function in the Dynamic Text tool for table attribute values. Status: Fixed (Learn More) Version Fixed: 3.2 Additional Information: This issue is addressed in ArcGIS Pro 3.2.
... View more
05-03-2023
03:41 AM
|
0
|
0
|
4180
|
|
POST
|
I am building a dashboard style display in Experience Builder that shows features in a map, and provides basic charting and filter functions. The layer of interest in the map is also referenced in a pie chart on the side of the dashboard. When you click one of the feature categories in the chart, a Filter Action is supposed to reduce the features displayed in the map to only show those matching the selected category. However, whenever I select it, it seems to pick a different, random category. I've recreated the chart and the action multiple times but can't get it to behave as it should. It doesn't seem like a complex setup, so what is going wrong?
... View more
04-26-2023
07:44 PM
|
0
|
8
|
7204
|
|
POST
|
I'm not across the different server types. We ended up bringing forward the spin-up of a new server with clean installs and running a modern OS. The one used above was nearly a decade old and full of rubbish. The new server ran much cleaner, though the URL input parameter was still a problem. I ended up finding a work around (or maybe "better") solution for the ArcGIS Online source data that did work without having to change anything else (which leads me to think the firewall wasn't an issue). Instead of using the URL as the input parameter in the tool, I used it as the input parameter for the below code, then passed the local_fs parameter to the geoprocessing step. print ("Export ArcGIS Online layer to feature class")
infc_nf = #"ArcGIS Online Feature Service URL here"
proc_gdb = #"path to GDB"
import arcgis.features
from arcgis.features import FeatureLayer
fl = FeatureLayer(infc_nf)
fs = fl.query()
local_fs = fs.save(proc_gdb, "local_fs")
print ("Dissolve layer")
diss_nf = arcpy.management.Dissolve(local_fs, proc_gdb + "\\dissolve_nf", "Field1", "", "MULTI_PART")
... View more
04-25-2023
06:09 PM
|
1
|
0
|
4203
|
|
POST
|
I have a python script that takes an ArcGIS Online feature service and uses it as an input in an arcpy Dissolve process. I built it (and ran it successfully) on my PC which was running ArcGIS Pro 3.1 but found it wouldn't work on our server which was still running 2.9.5. I put this down to advancements in the capabilities at the 3.0 upgrade and relevant python packages. However, we recently upgraded our server to 3.1 as well and when I tried running this script on there, it fails complaining about the parameters (fails at the step where it tries to dissolve a feature service). Why would this be when all the software is supposedly the same? Also, other script that were running on the server have now inexplicably stopped working. No error codes, they just stop. Why?????
... View more
04-23-2023
05:11 AM
|
1
|
8
|
4710
|
|
IDEA
|
Your posts will be interesting to follow. I expect a moderator will likely move your post out of ideas and into the discussion section, but it will great to see what problems you come up against and the different solutions you try and implement. I know from personal experience that this can be a super frustrating process!
... View more
04-20-2023
04:18 PM
|
0
|
0
|
1642
|
|
IDEA
|
@Bud I could see those types of options being of value in some cases (just not in my posted example). Could even be a drop-down list of options under the Default Value, or custom value.
... View more
04-12-2023
12:32 AM
|
0
|
0
|
5546
|
|
IDEA
|
When using the Append geoprocessing tool, you have the option to use the field map to reconcile field differences between the Input data and Target data. My idea, is that when you do use this method, you have an additional option under field sources to input a default value for those fields that don't have a match. In my example below, I'm appending data from one layer with a simple Label option, into another layer that has a corresponding "Comments" fields, but also a "Class" field with 4 class options (for basic data categorisation). It would be a good time saver, if in the Class Field, I could either type in a default vale that is added against all appended features, or alternatively, select an option from the Feature Template. Obviously, it would be fine if left blank, or would not be used if a source field is mapped.
... View more
04-11-2023
11:28 PM
|
1
|
2
|
5576
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 2 weeks ago | |
| 2 | 2 weeks ago | |
| 4 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 2 | 3 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
13 hours ago
|