|
IDEA
|
To learn more about this new capability :
https://pro.arcgis.com/en/pro-app/latest/help/data/parcel-editing/managerecordspane.htm
AmirBarMaor_0-1731052362817.png
... View more
11-07-2024
11:53 PM
|
0
|
0
|
1504
|
|
POST
|
@MarkWasdahl1
Good news: the geoprocessing tool Project supports parcel fabrics.
AmirBarMaor_0-1730904537716.png
If the target spatial reference uses a different linear unit, the COGO dimensions will convert the values accordingly.
In your case you can:
Project one parcel fabric into the spatial reference of your second parcel fabric
Use the parcel fabric Append Parcels tool to append one into the other
QA: make sure edges align properly, duplicate records were not created etc.
Edit: you can still edit the data using 2 different maps: each map with the appropriate spatial reference. One map will be projecting the data on the fly.
... View more
11-06-2024
06:54 AM
|
0
|
1
|
3773
|
|
POST
|
@RichardFairhurst
Please get in touch with technical support so we can have a look at it.
Do you have custom attribute rules? if yes - try to disable them and see if it works. That can help narrow down the issue.
Seeing a screenshot of the error is also always helpful.
... View more
10-29-2024
06:48 AM
|
0
|
0
|
1854
|
|
IDEA
|
@SarahSibbett
If the goal is to find dangles we already have this topology rule for that. Maybe this idea should be deleted and redefined, if still needed.
... View more
10-29-2024
02:01 AM
|
0
|
0
|
3915
|
|
IDEA
|
10-25-2024
05:23 AM
|
0
|
0
|
1359
|
|
IDEA
|
@MizukiKayano2 @AlexanderCoster
Do your historic parcels always have historic lines forming a closed loop?
I ask because when you merge parcels, for example, only the shared boundary between the parcels is retired.
Would you expect the Build tool to create missing historic lines and missing historic points? probably not.
Should it use current lines and current points in addition to the historic lines and points?
Or would it make sense to "walk the parcel lineage" back?
... View more
10-25-2024
02:51 AM
|
0
|
0
|
2606
|
|
IDEA
|
@MizukiKayano2
How can a 'Gap' or an 'Overlap' be defined when working with lines?
A line can 'cross' or 'overlap' another line, but I think you are asking to define overlaps and gaps in areas between lines.
Parcel seeds help identify small slivers when zoomed out. You can make their symbol larger if that helps.
Please clarify.
... View more
10-25-2024
01:50 AM
|
0
|
0
|
4024
|
|
IDEA
|
@MizukiKayano2
We create and update the record geometry when the editor performs operations like Build, Merge, Clip, Divide, and Split.
This guarantees good performance as you wouldn't want the record geometry after every edit of a feature controlled by the parcel fabric.
Do use the Build command after entering a posting plan?
... View more
10-25-2024
01:17 AM
|
0
|
0
|
1376
|
|
IDEA
|
@JasonMcKeefry
We are delighted to know this is exciting for you as well.
We are planning to release it in 2025.
@DanielStone - FYI
... View more
10-24-2024
08:12 AM
|
0
|
0
|
2428
|
|
IDEA
|
Implemented as part of ArcGIS Pro 3.4. Use the geoprocessing tool Find Gaps and Overlaps.
... View more
10-24-2024
07:43 AM
|
0
|
0
|
1474
|
|
IDEA
|
@JasonBessert
In this post you can learn how to modify the MUST HAVE A RECORD rule such that it only errors for parcel features that were created after the migration date.
Another thing you can do is create a geoprocessing model that iterates on the record features:
Use the geoprocessing tool Select By Location to select all the parcel features that 'have their centroid within
Use the geoprocessing tool Select Parcel Features to select parcel features (lines and points)
Use the geoprocessing tool Select By Attributes to remove features that are already associated to a record
And finally, calculate the record GlobalID as a GUID on the CreatedByRecord field
Let me know if this would work and if you need help with the geoprocessing model
Amir
... View more
10-23-2024
05:35 AM
|
0
|
0
|
718
|
|
POST
|
@JasonBessert
I am happy you have figured it out. Please submit a bug with technical support if you would like us to look into it.
The default layers we add are a starting point. We expect customers to modify the symbology, labels, scale dependency etc. to meet their business needs.
... View more
10-22-2024
11:37 PM
|
0
|
0
|
1907
|
|
BLOG
|
The previous blog shows how you can keep a line as fixed, while still being able to add vertices to it.
But can you use attribute rules to prevent lines from bending?
The answer is yes.
The Arcade method Generalize removes vertices within a giving tolerance. So we can compare the geometry of the feature to the generalized geometry to find out if they are different.
In this example, lines are allowed to bend up to 1 meter, but you can change that to your desired tolerance.
This is the Arcade expression:
var MaxOffset = 1;
Var OffsetUnit = 'meters';
if (Equals(Geometry($feature), Generalize($feature, 1, true, 'meters'))) { return false; }
return true;
Simply create a constraint rule and set it to be triggered on 'update'.
If you are using ArcGIS Pro 3.4 or above, only trigger it when the shape is updated:
AmirBarMaor_0-1729590924403.png
Disclaimer: This example is the first draft that has not been thoroughly tested. You can add the logic to only constraint the update for specific lines, else you'll not be able to align any parcel to each other.
Please leave comments if this is useful, thoughts etc.
Amir
... View more
10-22-2024
02:58 AM
|
7
|
0
|
731
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-26-2026 01:32 AM | |
| 1 | 06-24-2026 07:42 AM | |
| 3 | 06-24-2026 07:43 AM | |
| 2 | 06-24-2026 06:46 AM | |
| 1 | 06-12-2023 01:26 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|