|
POST
|
I have a Vector Tile Package which I'm about to update, and have discovered an issue with the way symbols for polygons with a boundary offset applied are drawn. As can be seen in the 3 examples below, at some scales, where the Index grid crosses features, the boundaries are being drawn as if the index gridlines are a part of the feature. The 1:50,000 image (the first one) shows the features (the pink lines) drawn correctly. The 2nd isn't. You can see in the below screenshot, that this problem exists in FieldMaps too (though manifests a bit differently).
... View more
11-06-2022
06:40 PM
|
0
|
0
|
1029
|
|
POST
|
Hi Robert. Thanks for the link. Drom what I can see, this confirms I'm going about it the right way. We're using Arcgis Pro and the content is shared to a group that our Data Editors are members of with normal edit privileges. I anticipate that if this went the case, they would be able to Append at all (been using ArcGIS Online for years now so across the majority of functions around groups and data sharing).
... View more
11-04-2022
03:21 PM
|
0
|
0
|
5217
|
|
POST
|
We rely on the Append tool to update a number of feature services on a semi-regular basis. We have recently discovered that when appending data to a feature service, the tool works super quick (seconds) to append thousands of records when run by and ArcGIS Online administrator. But for Non-Admin users running the same tool, with the same input & target data, using the same PC & network connection (essentially everything is the same except their ArcGIS Online member role) it is super slow (hours). Why???? I even tried a custom role where I toggled the below setting, thinking that looked like the most logical setting that might make a difference, but alas - it had no effect.
... View more
11-03-2022
11:27 PM
|
1
|
13
|
6364
|
|
IDEA
|
@JonathanNeal Excellent. Looking forward to seeing it! Do you have a rough release date fort 3.1?
... View more
11-03-2022
05:49 PM
|
0
|
0
|
4667
|
|
POST
|
Further update: Apparently this process does work (with a tweak) as described here: Re: Change default split policy on new domains? - Page 3 - Esri Community
... View more
11-02-2022
07:56 PM
|
0
|
0
|
5762
|
|
POST
|
I'll have to give this another crack if I can find a feature service that still has the old settings. I think I did a mass run of updates when I had this working the first time so might not have any left. Suppose I could always try on a test dataset and see what happens. Good to know that it wasn't all in vein though!
... View more
11-02-2022
07:54 PM
|
0
|
0
|
4320
|
|
POST
|
Quite possibly that would work for us. We have similar workflows in a number of map templates anyway that do require a definition query, so All Rows would work the same as Visible Rows.
... View more
11-02-2022
07:52 PM
|
0
|
0
|
4219
|
|
POST
|
I've just managed to confirm that it is an issue for ArcGIS Online Feature Services in version 2.9.3 but not shapefiles. It works as expected once we upgrade to 3.0. Now I've just got to diagnose a couple of other problems (confident they're not version related though) before I can get tall our users on 3.0!
... View more
11-02-2022
07:06 PM
|
0
|
0
|
5788
|
|
POST
|
So this has been discussed here previously (and "solved") but I thought I'd post a separate post again, as the solution in that post doesn't apply to us. We have noticed that the Zoom to Layer tool doesn't honour definition queries or even just the whole set of features in a feature service/feature class. We don't sue Enterprise GDB's (only FGDB's and Feature Servers plus the odd shapefile). Most of our users are now on 2.9.4. When they Zoom to Layer it takes them way out to the supposed full possible extent of the layer (not the actual extent of its features). Is anyone aware of this behavior and a fix for non-enterprise datasets?
... View more
10-24-2022
09:19 PM
|
1
|
2
|
5865
|
|
POST
|
So in lieu of finding a solution to this direct issue (of nested submodels and iterators), I came up with an alternate plan (that I believe works better anyway). I have now separated my model into the following 3 sections: Main Model (selects input data and parameters, fills out basic field calculations and gets the initial count of records from my 2 input datasets) OID Dataset 1 OID Dataset 2 1 Bunbury 1 Perth 2 Collie 2 Busselton 3 Manjimup 3 Kojonup 4 Albany 4 Geraldton 5 Kalgoorlie Count = 4 Count = 5 Sub-Model 1 (inside Main Model which replicates the first dataset to match A*B (i.e. A=4 & B=5 then C=20) by repeatedy appending a copy of the input dataset to itself until it has 20 total records (5 times in this example)). OID Dataset 1 1 Bunbury 2 Collie 3 Manjimup 4 Albany 5 Bunbury 6 Collie 7 Manjimup 8 Albany 9 Bunbury 10 Collie 11 Manjimup 12 Albany 13 Bunbury 14 Collie 15 Manjimup 16 Albany 17 Bunbury 18 Collie 19 Manjimup 20 Albany Count = 20 Sub-Model 2 (also inside Main Model and NOT Sub-Model 1 like in my first attempt. This does the same as the 1st Sub-Model except on the second dataset, appending a copy of the 2nd dataset to the input dataset until it has reached 20 records total (4 times in this example)). OID Dataset 2 1 Perth 2 Busselton 3 Kojonup 4 Geraldton 5 Kalgoorlie 6 Perth 7 Busselton 8 Kojonup 9 Geraldton 10 Kalgoorlie 11 Perth 12 Busselton 13 Kojonup 14 Geraldton 15 Kalgoorlie 16 Perth 17 Busselton 18 Kojonup 19 Geraldton 20 Kalgoorlie Count = 20 The main model then sorts the first replicated dataset output by Sub-Model 1 by a name field which groups all spatially colocated features together in the table with new ObjectID's. OID Unsorted >>>>> OID Sorted 1 Bunbury 1 Albany 2 Collie 2 Albany 3 Manjimup 3 Albany 4 Albany 4 Albany 5 Bunbury 5 Albany 6 Collie 6 Bunbury 7 Manjimup 7 Bunbury 8 Albany 8 Bunbury 9 Bunbury 9 Bunbury 10 Collie 10 Bunbury 11 Manjimup 11 Collie 12 Albany 12 Collie 13 Bunbury 13 Collie 14 Collie 14 Collie 15 Manjimup 15 Collie 16 Albany 16 Manjimup 17 Bunbury 17 Manjimup 18 Collie 18 Manjimup 19 Manjimup 19 Manjimup 20 Albany 20 Manjimup It then joins it to the 2nd dataset by ObjectID. This join means that for each copy of a record in a group of records in dataset 1, it has a unique matching record from dataset 2. Field calculations are then done to preserve the attributes from dataset 2, the join removed and the final data exported to a new feature class. OID Joined Dataset 1 Albany Perth 2 Albany Busselton 3 Albany Kojonup 4 Albany Geraldton 5 Albany Kalgoorlie 6 Bunbury Perth 7 Bunbury Busselton 8 Bunbury Kojonup 9 Bunbury Geraldton 10 Bunbury Kalgoorlie 11 Collie Perth 12 Collie Busselton 13 Collie Kojonup 14 Collie Geraldton 15 Collie Kalgoorlie 16 Manjimup Perth 17 Manjimup Busselton 18 Manjimup Kojonup 19 Manjimup Geraldton 20 Manjimup Kalgoorlie Another small tip - use "memory " as the output location for working data instead of a .gdb (including %scratchgdb%) - it works so much faster!
... View more
10-17-2022
01:28 AM
|
0
|
0
|
1665
|
|
POST
|
Actually - just realised that this tip won't quite work in my case. The replication effect I'm going for isn't to match the total number of features already existing in Destinations, but what the total will be once Destinations are Replicated for each unique Origin location too (so a multiplying effect) which is why the Calculate Value is there at all (AxB = C) then test if B=C: false - add another lot on | true - stop iterating.
... View more
10-14-2022
01:14 AM
|
0
|
1
|
2936
|
|
POST
|
Thanks for the tip - I'll look at implementing that on Monday. It makes sense to cut down as many steps as possible. As for python in place of iterators, I could do, but I'm far too novice to be efficient at it, and nobody else here has much python understanding so model builder is an easier solution to troubleshoot/fix should I not be around (in theory).
... View more
10-14-2022
01:10 AM
|
0
|
2
|
2937
|
|
POST
|
Never mind. Figured it out myself. Needed to use a "Logical - If Value Is" tool to generate the True/False value which in turn fed into the While Iterator.
... View more
10-14-2022
12:54 AM
|
0
|
0
|
2942
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | a week ago | |
| 2 | a week ago | |
| 4 | a week ago | |
| 1 | 2 weeks ago | |
| 2 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|