|
IDEA
|
@SarahSibbett Logging a case with technical support is always recommended. Thank you
... View more
03-08-2024
05:38 AM
|
0
|
0
|
3376
|
|
POST
|
@VogtBoat The process of migrating polygons (parcels) to the parcel fabric is well documented and can be found here: https://pro.arcgis.com/en/pro-app/latest/help/data/parcel-editing/workflow-createpfandload.htm Some tips based on your input: Before appending your polygons, make sure that your parcel Fabric parcel polygons have the same fields (same name and types) as the polygons that were maintained outside the parcel fabric. If you know which record is associated with each edit you have a few options (after appending them to the parcel fabric): Calculate the record name on each parcel polygon before running the geoprocessin tool Create Parcel Records. Activate or create the record, then select each group of parcels and use the Active Record dropdown to 'assign selection to active record'. You will also have to manaully retire historic parcels. Once in the parcel fabric, this will happen automatically once you merge and split parcels. Build will create any missing features (points, lines) and update any record geometry. There are also multiple videos that walk you through the data migration process. Good luck!
... View more
03-08-2024
04:52 AM
|
2
|
0
|
4296
|
|
IDEA
|
@SarahSibbett It looks like we have a regression with all of the Editing Modify panes, This includes the Align Parcels pane which is part of the modify tools. Thanks for reporting
... View more
03-08-2024
02:34 AM
|
0
|
0
|
3385
|
|
POST
|
It all depends on your business requirements and how you want your parcel lineage to look like. If you want your data to be defendable in your 'system of record' it should be tied to the source it came from. You can create a Parcel Lineage Link Chart to determine if what you've done makes sense for you or not.
... View more
02-20-2024
11:43 PM
|
0
|
0
|
876
|
|
POST
|
The first version of the Parcel Fabric, Parcer Fabric version 1, did not have the ParcelCount field on the records, which meant the 'one record' approach would take a very long time to process. Since parcel fabric versions 1, 2, and 3 have all been deprecated, using a single record will not take a longer time to process. If you want to use the Parcel LIneage depiction using link charts, you probably want to use records that make sense (not just create one for each parcel).
... View more
02-18-2024
11:45 PM
|
0
|
2
|
5761
|
|
POST
|
@RobertChaney Records can be created, deleted, and associated with parcels at any point of time. Different organizations will use different conventions for their records: some will use the recorder number (or land registration) which will allow them to easily integrate to their 3rd party systems (e.g. CAMA. land registry, document management...), some use a meaningful name like the subdivision name. Whatever you use, it will be good to be able to tell the difference between: Data with a missing record (CreatedByRecord IS NULL) Data that was created after the data migration and has a good parcel lineage Legacy data There are situations when you activate an old record. One example I can think of is fixing bad boundary lines by re-entering them from the record. The workflow might look something like this: Select the parcel to fix From the Active Record HUD, activate the record from the selected parcel Shrink the parcel to seed Delete the bad lines and re-enter them from the legal record Reconstruct from seeds
... View more
02-15-2024
03:57 AM
|
2
|
1
|
5828
|
|
IDEA
|
02-14-2024
03:27 AM
|
0
|
0
|
1363
|
|
POST
|
@MikeZummo might be able to share some of his experience . Before running any adjustment make sure your data: Has good COGO measurements: use the 'Distance Mismatch' layer and the attribute rules to identify and correct any lines that have wrong COGO. Use the parcel fabric layers on the quality tab to detect and fix any small lines - those can cause topological issues. Run the Highlight Gaps and Overlaps tool to detect any topological issues and fix them. if not fixed small gaps and overlaps will become bigger as LSA is applied. Good network connectivity - if you don't have road parcels, consider adding connection lines across roads. Run adjustment in Consistency mode first to detect and fix any outliers.
... View more
02-14-2024
12:59 AM
|
0
|
0
|
2153
|
|
POST
|
@SenecaFrancis Pro can never outsmart you 🙂 Did you try to turn off the topology in your editing tab to 'No topology'? It will allow you to move/rotate/scale selected features without trying to maintain the topological relationship.
... View more
02-14-2024
12:48 AM
|
1
|
0
|
1033
|
|
IDEA
|
@Bud FWIW I was able to run this expression as an attribute rule calculation to identify features with no vertices (empty geometry) using ArcGIS Pro 3.2.2: if (IsEmpty(Geometry($feature))) return null;
... View more
02-14-2024
12:42 AM
|
0
|
0
|
1540
|
|
POST
|
@RobertChaney The purpose of having a record is to know the source of a parcel, and to make the data in the 'system of record' defendable. Using the parcel name to create a record for each parcel, does not make any sense to me. It would be better to create a record called 'unknown' or 'legacy data' or 'Digitized from paper maps 1995'... something that would make sense when you identify a parcel. If you've already migrated the data and already started creating real records, you can still recover: Select all the parcels that were migrated (you can use 'Select by Attributes' and use the editor tracking fields). Use the geoprocessing Create Parcel Records' and use the expression option to enter the name of the record. For example 'Legacy data - source unknown', and run it. Open the attribute table of your records feature layer and make sure all the parcel based records are deleted (you can use the same method above to select them) As for record geometry: Record geometry will only be created or updated when the number of parcels associated with the record is less than 2000. This is done for performance and you can change this setting in the parcel fabric properties. The record geometry is the union of the retired and created parcel geometries, as it is the footprint of the legal transactions and impacts both. For example: we have organizations that create a record to retire a lease - in that case they only retire parcels and do not create any new child parcels. Certain operations like Build, Merge, Clip, Divide, Split ... will update the record geometry when you have an Active Record. Alignment workflows do not do that but you can always use 'Build Extent' to trigger an update. I hope this helps, and more importantly, makes sense. Amir
... View more
02-13-2024
11:53 PM
|
0
|
4
|
5870
|
|
IDEA
|
@Bud If you consider using a task here are a few things to be aware of: A task can select features from different feature layers A task can 'verify' a certain amount of features are selected and prevent the user from proceeding to the next step (making sure there are no features selected, for example) A task can save a selected in one step and restore it in a subsequent step A task can clear the selection and set which layers are selectable. A task can call any command (e.g Select By Rectangle) and any geoprocessing tool. A task get get values from users and later apply them as part of a field calculation. To learn more about tasks: https://pro.arcgis.com/en/pro-app/latest/help/tasks/whatistask.htm
... View more
02-12-2024
12:00 AM
|
0
|
0
|
2323
|
|
IDEA
|
Marking this idea as implemented. You can use newer ArcGIS Pro releases against older ArcGIS Enterprise releases. Since data migration is done in a staging environment using a file geodatabase, the version of ArcGIS Enterprise is not discoverable when running the geoprocessing tool Create Parcel Fabric and you are expected to read the documentation compatibility section referenced below.
... View more
02-09-2024
06:11 AM
|
0
|
0
|
3550
|
|
IDEA
|
The parcel fabric compatibility is well documented here: From version 10.9.1 we do our best to support older versions of ArcGIS Enterprise. We are conscious that upgrading ArcGIS Enterprise is not as easy as upgrading ArcGIS Pro to the next version and we'll continue this approach going forward. That said: Please be aware that some new capabilities that modify the ArcGIS Server REST API might be disabled in ArcGIS Pro if you happen to use an older Enterprise version (those are usually very minor). Encourage your IT department to upgrade ArcGIS Enterprise just like they would with other server products (DBMS, email server...), or ask to have your own portal and server on a dedicated machine.
... View more
02-09-2024
06:08 AM
|
0
|
0
|
3551
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 3 | 2 weeks ago | |
| 2 | 2 weeks ago | |
| 1 | 06-12-2023 01:26 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|