IDEA
|
I strongly support this suggestion. This messy folder structure is by far the biggest barrier that held us back from transitioning from ArcMap to ArcPro sooner.
... View more
09-30-2024
03:33 PM
|
0
|
0
|
78
|
IDEA
|
@RussRobertsYou have stated that the ability to group layers will not be coming to the Web App Builder, and I have read that from several other sources as well. However, I have created an app using the Web App Builder that does group several layers together in the Layer List tool. I added a group of layers to the Map Viewer map used as the source map for the app from the WMS link below. In the Layer list of my app, they are all grouped together and can be toggled on/off with one checkmark. However, I have unable to get any other grouped layers from Map Viewer to carry over as grouped layers in the App. Do you know why the layers at the link below are allowed to be grouped in WAB? Is it something that can be replicated? See also the screenshot - the layers are in a group called "TIP 2023-2027". Thank you! (and to pre-empt the question, in the future I will simply plan to use Experience Builder, but the project I'm working on now is too far along with too tight a deadline to rebuild in EB) https://maps.cityofmadison.com/arcgis/rest/services/MPO/TIP/MapServer
... View more
07-24-2023
02:04 PM
|
0
|
0
|
656
|
POST
|
Yes, I'm becoming increasingly convinced that is the case. Is there some work-around if the user only has a 'Basic' license and is thus unable to create relationship classes in a geodatabase? I'm going to try and publish the .mxd as a service directly, rather than zipping the .gdb, and see if that maintains the 'relate'.
... View more
04-25-2017
12:32 PM
|
0
|
1
|
704
|
POST
|
I'm attempting to create a crowd-source map application that allows users to comment on individual features. In doing so, I've been trying to follow the instructions for how to set up a related geodatabase table to collect comments, as described in this link: Create Crowdsource Polling Layers - Crowdsource Polling | ArcGIS for Local Government I am using ArcGIS Desktop Basic, which doesn't allow me to create relationship classes. I created and populated a Global ID Field for the feature class layer. In the separate empty table I created a field with type "GUID" , along with a string field titled "comments". I 'related' the two in ArcMap by right-clicking on the feature-class layer and relating it to the table based on the Global ID and GUID fields. I then zipped the geodatabase (though I'm uncertain if this 'relate' was saved in the geodatabase or just in the instance of ArcMap), and published it to my ESRI Online Account. From there I added the geodatabase to a Map, tweaked the pop-up configurations of the feature class and table, saved the map, and published it to a CrowdSource Polling app. The app lets you click on the individual polygon features and pops up the configured fields that exist within the feature class itself, but no empty comment field appears in the right-hand popup box that allows users to submit comments. I'm also unclear if the geodatabase table should be totally empty except for the configured fields, or if it should have one matching empty row/record for each feature in the feature class layer (related by way of a matching Global ID field).
... View more
04-25-2017
11:52 AM
|
0
|
3
|
1949
|
POST
|
Thanks, that worked and helped lead me to my ultimate solution, which was as follows (and conducted from the stand-alone Python Window, not Field Calculator): import re
fc='file path'
rows=arcpy.UpdateCursor(fc)
for row in rows:
row.FieldName = re.search('LAND USE CODE</td>\n<td>(\d*)<' , row.PopUp).group(1)
rows.updateRow(row)
... View more
03-13-2013
08:11 AM
|
0
|
0
|
743
|
POST
|
I'm trying to extract a portion of an existing field in an attribute table to a new field using Field Calculator and have been running into some difficulties. It seems like there must be a way to do this, although with my limited VBS and Python experience I can't be certain. I'm working with 10.0 (sp. 2) The exact problem is this: The layer I'm working with has a very long field, [PopUp] (which was created when converting a KMZ file to a feature class) whose contents for each feature look something like this: ...<td>LAND USE CODE</td> <td>954</td>... I want to extract just the Land Use Code from the [PopUp] field and populate a new field with it (either a numeric field or string, I don't care). The Land Use Code changes based on the feature in question and the length of the string varies for each feature both before and after this segment which I want to extract (so I can't use a function which just grabs X number of characters from the left or right side). Is this possible using the Field Calculator, with either Python or VBScript? If so, I assume it would require some way to indicate a wildcard on either side of the Land Use Code, but I know it doesn't work the same as a simple SQL query/search. Any help would be greatly appreciated. Thanks in advance!
... View more
02-07-2013
09:51 AM
|
0
|
2
|
3712
|
Online Status |
Offline
|
Date Last Visited |
10-11-2024
10:09 PM
|