|
POST
|
Not sure what a "style collection" is, unless you just mean the different groups under the Styles folder in Catalog. If so, you can just create a new style (collection), then copy/paste the desired subset of symbology's (point, line, polygon symbols) from the other styles to that one, then when you publish it, they should all be there. A good way to publish 'only' the subset you need, rather than a bunch of separate styles. R_
... View more
05-20-2024
12:47 PM
|
0
|
3
|
4043
|
|
POST
|
From what I can tell, They will always be exported by sort order of OBJECTID. You can use the Sort GP tool (or python) to sort the table on a field that you want (which creates a new table/FC), then export that new, exported table as the OBJECTID's will be relative to the new 'sorted' field. If nothing else works, you can do the workaround without the step saving to .txt file. In Excel, open csv, sort by the field you want, save. R_
... View more
05-20-2024
12:42 PM
|
3
|
0
|
3803
|
|
POST
|
It does not appear as if you can share the favorites style as a web style. You can copy/paste them into a new/different style and will be able to share that as web style. R_
... View more
05-20-2024
12:23 PM
|
0
|
5
|
4047
|
|
POST
|
You can if you want to use python. Add Join. Select by Attributes. R_
... View more
05-16-2024
04:05 PM
|
1
|
0
|
1596
|
|
POST
|
Not exactly sure what you are trying to accomplish, especially the prior observation field, etc. However, in case it might help, I have tested this arcade with the editable logic: var arr = ["Observation 1", "Observation 2"] // List to compare to
if (Includes(arr,$feature.ObsvPeriod)){
return true
}else{
return false
} If I have a field that is calculated (and thus not editable) the calculation will fire as normal. However, if I attach the above code to the Editable logic expression for that field, then, if the values of "ObsvPeriod" are equal to "Observation 1" or "Observation 2", then the field will become editable. If it is any other value, the field will be populated by the calculated expression attached to it. In case this helps somehow, R_ edit: I see @AlixVezina beat me to it....
... View more
05-14-2024
01:51 PM
|
2
|
1
|
2941
|
|
POST
|
Not sure about the No Value option, doesn't seem like it should be showing, but it does. Default values can be set/changed in the Template tab of the Form editor in Field Maps Designer: However, since you are 'either' entering a Yes or No (no other values), you can handle that with the form calculated expression. I've modified it to check to see if the value is Empty, if so, or if it matches any values in the list, it will return "No", otherwise, will return "Yes". var field = $feature.Compliance // set Compliance value to variable
var arr = ["Other", "Education", "Caution", "Infringement"] // List to compare to
if (Includes(arr,field) || IsEmpty(field)){ // If in the list, return "No"
return "No" // or is Empty
}else{
return "Yes" // else return "Yes"
} R_
... View more
05-14-2024
07:38 AM
|
0
|
2
|
5596
|
|
POST
|
This will do that: var field = $feature.Compliance // set Compliance value to variable
var arr = ["Other", "Education", "Caution", "Infringement"] // List to compare to
if (Includes(arr,field)){ // If in the list, return "NO"
return "No"
} R_
... View more
05-13-2024
09:46 AM
|
0
|
0
|
5615
|
|
POST
|
The Merge GP tool with the Field Map parameters should do this. R_
... View more
05-13-2024
08:27 AM
|
0
|
0
|
6646
|
|
POST
|
Have not really looked into this yet as the Trace network is so limited, really has no use case for us at the moment. (at least as long as ArcMap is still going) I have a post here about doing something similar with Python that could be converted pretty easy with some of the AA rules that @MikeMillerGIS posted above. Would have to experiment with the points coming from different dataset and see just how much of a performance hit that causes. I originally set this up for offline use, so my nightly script just combines the manholes and cleanouts (MH's, CO's, Inlets, Outlets, etc. for the Storm layers) into a single point featureclass with the FacilityID and record number. Then, I just have my script check the intersection with this layer at the upstream and downstream ends of the line. Since all I need is the attributes from the points that intersect, this has been working great. Figure when I move to Pro for this, will just modify this Arcade code to intersect against this same 'combined' featureclass as it keeps things simple. Then I may test performance hits comparing this to actually intersecting the start/end points with multiple featureclasses. R_
... View more
05-09-2024
12:48 PM
|
1
|
10
|
4041
|
|
POST
|
Not sure what is going on. In Pro, if I have actual Null values, <Null> is shown in the attribute table. Maybe you could select everything in an empty cell, copy/paste to Word or something, try changing font color to see if there is something hidden in there? Can you edit the data and calculate some of the fields to "None" (with python)? This would make them <Null> and might give a little insight on what is going on. Otherwise, do you have a link/dataset name that you are downloading from FEMA to test? R_
... View more
05-09-2024
12:31 PM
|
0
|
1
|
6395
|
|
POST
|
From my experience, a basic map like that will greatly increase in performance if built with Map Viewer Classic and Web App Builder. Unfortunately, WAB will be retiring soon and was hoping ExB would be a comparable replacement by then. If I build the same basic map in WAB vs ExB see total load times of 5.3 seconds vs 22.8 seconds. Have tested this on several web apps, and though the numbers are different, the increase in time is pretty consistent. R_
... View more
05-09-2024
08:37 AM
|
9
|
0
|
7702
|
|
POST
|
I actually copied the <Null> from the table, but just tested by typing and working fine. Also, noticed that you are using polygon data, so just tested with poly data and it automatically detects the <Null>'s in the symbology field and adds it when I hit the add all values button. Just re-tested with points, and if I hit the add all values button, and I have actual <Null> values in the symbology field, it will add them automatically as well. However, if I remove it, it still lets me type in the value and add it. Are you sure there are actual <Null> values in the field? (Not blank, space, or text 'Null') R_ edit: Tested in Pro 3.2.1, 3.1.3, and 2.9.3 all with same results. Using FGDB polygon feature class
... View more
05-08-2024
04:14 PM
|
0
|
3
|
6499
|
|
POST
|
I then click the green + sign, then Add new value: Select symbol and type <Null> in value field and click OK: Adds new symbol for Nulls: R_
... View more
05-08-2024
03:44 PM
|
1
|
5
|
6512
|
|
POST
|
I have set up point symbology in Pro to "allow symbol property connections" and connected the picture marker to joined attachment table BLOB field. This will draw the point using the picture that it has as an attachment. However, when I publish a mapservice with this data, the markers show as generic picture icon: Documentation says picture marker symbols are allowed in mapservice, but can't get it to work. Are attribute driven picture markers not supported, or is something else going on here? Thanks for any insights, R_
... View more
05-08-2024
01:57 PM
|
0
|
0
|
869
|
|
POST
|
When you 'pushed' changes, did you re-create the Offline areas, or just Update them? R_
... View more
05-08-2024
10:22 AM
|
0
|
1
|
8557
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2026 04:00 PM | |
| 1 | 09-14-2022 07:53 AM | |
| 1 | 09-14-2022 08:23 AM | |
| 1 | 05-21-2026 08:53 AM | |
| 1 | 05-14-2026 04:28 PM |
| Online Status |
Online
|
| Date Last Visited |
4 hours ago
|