|
POST
|
For context, I'm using Enterprise 10.7.1 and Pro 2.4.2. I have a feature class joined one-to-one with a table. Both are in enterprise databases (built on SQL Server 2016, 64 bit). The feature class has the shape, the table has the data that I want to display in the pop-ups. The symbology is based on a custom Arcade expression, which works great in Pro and in a Portal web map. Here's my problem: I have a custom expression set up to calculate the percentage of each political party. Here is the expression for Democrats: round((($feature['DBName.User.RegisteredVoterCount.DEMOCRATIC']/$feature['DBName.User.RegisteredVoterCount.TOTAL'])*100),1) (Note that I have replaced the name of the database with "DBName" and the user name with "User" in the syntax above.) It works great in the Pro pop-up: I published it as a Map Image Layer to Portal. All of the expressions came through. It works great when I test it in the custom expression builder in the Portal web map: But when I add it into the pop-up: The value doesn't display: OK, fine. So I publish it as a Feature Layer and turn off editing capabilities. Now my custom Arcade symbology and my pop-ups don't work. My leading suspect is the join: does anyone know if Portal Arcade has problems with joins?
... View more
12-16-2019
07:50 AM
|
0
|
4
|
2847
|
|
POST
|
Thank you, John! I hope you're right! Has Esri announced when 2.5 will be released? I'm guessing that February is the next big release date, unless there is a December one. I did a quick Google search and didn't turn up anything definitive.
... View more
11-19-2019
01:00 PM
|
0
|
2
|
6863
|
|
POST
|
I've been combing the forums for a while now, reading up on the topic of slow performance in ArcGIS Pro. For reference, I'm on the most current version (2.4.2) and I'm editing data in a 10.6.1 geodatabase running on SQL Server 2016. Has anyone noticed performance issues specific to the Merge tool? My current project involves a lot of chopping up and merging polygons into new configurations. The other tools that I commonly use (Copy Parallel, Split, Explode, etc) perform normally. When I select the Merge tool, I immediately start seeing the blue circle of death as Pro tries to bring up the panel. Even after I've done the merge and continue on with other tools, the performance is sluggish until I hit the back button on the Merge tool and go back into the Modify Features pane. While I'm working with fairly large polygons (1/2 mile to a mile long, maybe 66-80 feet in width), there aren't really any curves or excessive vertices in the geometry that I would expect to cause a slow down. I've been tempted to call tech support, but I wanted to see if anyone else has experienced this first.
... View more
11-18-2019
01:34 PM
|
1
|
13
|
8836
|
|
POST
|
Yes, I've had that exact same experience many times. The only fix is to remove the image from the Project, close the Project, delete all of the auxiliary files that were created from the original georeferencing, then reopen the Project, readd the image, and georeference it again. Sometimes, I find that closing and reopening my Project after every successful georeference makes the next georeferencing operation successful. That's not always the case, but sometimes that works. EDITED TO ADD: I started experimenting with raster formats this morning. Previously, I had been georeferencing TIFFs. I converted them to PNG to see what would happen, and I've successfully done three in a row with no issues. Perhaps it's an issue with file formats in Pro?
... View more
10-11-2019
08:48 AM
|
0
|
0
|
6845
|
|
IDEA
|
I'd like to be able to choose the default settings in Parcel Drafter. Specifically, I'd like to change the Direction or Angle Type to Quadrant Bearing and the Direction or Angle Units to Degrees Minutes Seconds. The majority of our legal descriptions match that set up, so it's preferable to have them as the default instead of what currently shows up. I'd also like the change the default behavior that copies the previous bearing entered into the next line automatically. In most of our cases, the bearing is going to be different each time. It would be preferable for the user to be able to hit tab and go directly from the previous radius box into the new line's bearing box instead of copying the bearing and jumping the cursor to the length field. Other users may prefer that functionality by default, so it would be great if you could choose what the best default is for your needs.
... View more
10-02-2019
12:38 PM
|
6
|
2
|
1393
|
|
IDEA
|
We deployed the Damage Assessment Solution (Damage Assessment | ArcGIS Solutions for Emergency Management) and had our damage inspection team use the Survey123 Connect form to record damage to residential structures. One of the biggest problems we had with the data was a lack of good location data. Since the Location field was not required as a part of the default deployment, we relied heavily on the inspectors recording addresses accurately. (We have since made the Location field required, which will help a lot.) Unfortunately, with an open text field for addresses, the inspectors were able to enter invalid or partial addresses, which does no good for mapping purposes. My idea is to set up a field in the Survey form that pulls valid address data from a web service that contains our address points. That way, when an inspector starts to type an address, it auto-completes with the correct format. The only way to do this now would be to add each individual address to the choices worksheet in Survey123 Connect, but with 41,000+ addresses, this is highly impractical. While this is a specific request for a specific solution, I can imagine many situations where you would want a field in a form to validate against your in-house GIS data.
... View more
09-17-2019
08:18 AM
|
5
|
1
|
2289
|
|
POST
|
Yes, it looks like the Decode function was tripping things up. I copy/pasted your code and it works great! I wasn't exactly using Decode in the spirit of how it was intended, so I'm not surprised that there was an issue. Thanks!
... View more
09-16-2019
09:55 AM
|
1
|
1
|
1314
|
|
POST
|
I'm running Portal for ArcGIS 10.6.1 and trying to use an Arcade Attribute Expression to populate a pop-up. Here is my syntax: "The setback for the " + Proper($feature.FUNCTCLASS) + " road class is " +
Decode($feature.FUNCTCLASS,
"FREEWAY","150 feet ",
"PRINCIPAL ARTERIAL","150 feet ",
"MINOR ARTERIAL","100 feet ",
"MAJOR COLLECTOR","100 feet ",
"MINOR COLLECTOR","75 feet ",
"STREET","50 feet ",
unknown)
+ "and the road frontage is " +
Decode($feature.FUNCTCLASS,
"FREEWAY","1320 feet.",
"PRINCIPAL ARTERIAL","1320 feet.",
"MINOR ARTERIAL","500 to 660 feet.",
"MAJOR COLLECTOR","500 to 660 feet.",
"MINOR COLLECTOR","330 feet.",
"STREET","250 feet.",
unknown) The syntax checks out when I test it: But I cannot get it to show up in the actual pop-up. I've tried using Display by "A description from one field" and selecting the expression from the drop-down list; I've also tried "A custom attribute display" with a reference to the expression. Either way, the sentence shown in the Value portion of the test above does not appear in the pop-up. When I go back into the pop-up settings, the options have reset to "A description from one field" and my expression is still saved in the Attribute Expressions section. I thought this might be a 10.6.1 bug and I did find and install patch ArcGIS-1061-PFA-SEC2019U1-Patch, but that didn't fix the issue. I also tried to put the same expression into ArcGIS Online, but I got the same result. Maybe Decode isn't supported for pop-ups in 10.6.1? I checked the version matrix, but I'm not certain that I'm reading the chart right.
... View more
09-12-2019
10:17 AM
|
0
|
3
|
1430
|
|
POST
|
I'm having the same problem. The related tables are completely gone from the feature service, but the web map is hanging on to the tables with no way to delete them from the map. There isn't anything in Online Assistant that allows you to delete layers from a web map, but they do show up as layers in that format. I should mention that I'm having this issue in Portal version 10.6.1. Fingers crossed that they vanish when we upgrade to 10.7.1 this fall, but I'd love a solution in the meantime.
... View more
09-11-2019
09:50 AM
|
0
|
0
|
3067
|
|
POST
|
Thank you for posting that -- I had not seen that there was an FAQ. I did create a collaboration workspace and it has existed for several days, so we should have had several syncs since I set it up. There isn't anything severe in my logs that refers to disk space, so no luck there, either. I put in a tech support ticket, so we'll see what happens!
... View more
08-27-2019
01:17 PM
|
0
|
0
|
1990
|
|
POST
|
Hi Hilary, Status is set to Active. I double checked the folders and everything looks good. I decided to keep things simple to start and just shared one Map Image Layer in each portal. Both layers are set to be shared with Everyone. Maybe this is a tech support issue?
... View more
08-26-2019
06:17 AM
|
0
|
1
|
1990
|
|
POST
|
Has anyone out there set up a distributed collaboration between their ArcGIS Online and ArcGIS Portal? I got ours set up, but the Portal side (guest) is not receiving anything that is shared by Online side (host). (Yes, I have Access configured as Send and Receive.) I wonder if that is a limitation of our Portal's software version, as we are on 10.6.1?
... View more
08-23-2019
08:18 AM
|
0
|
5
|
2255
|
|
POST
|
So, I just upgraded to Pro 2.4.0 and the syntax that I originally marked as correct above is no longer working. This used to work: aprx = arcpy.mp.ArcGISProject("CURRENT")
m = aprx.listMaps("agmap")[0]
for lyr in m.listLayers("Parcel*"):
lyr.definitionQuery = "JOINPIN = '201-02-0-00-00-012.01-0'" Anyone have any suggestions on what might have changed? Maybe it has to do with the fact that you can have multiple definition queries in Pro and only have one active?
... View more
07-22-2019
09:50 AM
|
0
|
1
|
11566
|
|
POST
|
When I share our AGOL web appbuilder sites on social media, the preview is awful. I've populated the item details page, but it still looks like this: Is there a way to tinker with the webpage code to fix this? My app is here: https://gis.douglascountyks.org/portal/apps/webappviewer/index.html?id=f7ba6c052dc94e50b7634d737d8d1fd0 Robert Scheitlin, GISP, maybe you have some insight?
... View more
05-21-2019
07:45 AM
|
0
|
0
|
617
|
|
POST
|
Does anyone know if there is a setting in Portal that automatically logs out a user if they are inactive for a specified period of time? We're using Windows Active Directory for our users to log in.
... View more
05-20-2019
01:56 PM
|
4
|
5
|
6732
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-16-2021 07:17 AM | |
| 6 | 3 weeks ago | |
| 1 | 06-27-2024 01:11 PM | |
| 1 | 07-15-2021 01:53 PM | |
| 2 | 01-09-2026 07:45 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|