|
BLOG
|
This is a sample that might be useful for some as reference. Using 11 lines of Python to create and load polygons from a shape file to a new parcel fabric. This is something that could not be done in ArcMap and can have useful use cases such as digital submission. You can copy paste it to the python view (command line) after you tweak your source data or wrap it up as a python script tool. ParcelSourceData= r"C:\Temp\Parcels.SHP" #source polygons
SR=arcpy.Describe(ParcelSourceData).spatialReference #retrieve the spatial reference of source data
FGDB=arcpy.CreateFileGDB_management(r"C:/temp", "fGDB.gdb") #create a file geodatabase
FDS=arcpy.CreateFeatureDataset_management(FGDB,"FDS", SR) #Create a feature dataset using the spatial reference
PF = arcpy.CreateParcelFabric_parcel(FDS,"ParcelFabric") #Creating a new parcel fabric
(PF,Parcels,Lines) = arcpy.AddParcelType_parcel(PF, "Ownership") #adding a parcel type
arcpy.AddField_management(Parcels,"RecordName", 'TEXT') #Adding a field for the record name that is used for records creation
arcpy.management.Append(ParcelSourceData, Parcels, "NO_TEST") #appending source data to parcel polygons
arcpy.EnableParcelTopology_parcel(PF) #enable parcel fabric topology
arcpy.CreateParcelRecords_parcel(Parcels, "RecordName") #creating new parcel records
arcpy.BuildParcelFabric_parcel(PF) #building the parcel fabric #ParcelFabric #ArcGISPro24 #arcpy.parcels
... View more
07-06-2019
06:39 PM
|
2
|
3
|
1598
|
|
POST
|
Tim Hodson has written an Add-In to import traverse text files. We plan to add support for importing-exporting traverse files for Pro 2.5 (end of 2019). If you only use traverse files as a back up you don't need them: Every traverse course is a feature (not a sketch), so you can simply press save edits You can modify a traverse by tracing it in Pro if you find a mistake or want to pick it up from where you have left.
... View more
06-26-2019
01:04 AM
|
1
|
2
|
1726
|
|
IDEA
|
The tasks team agrees and we have it planned for future release.
... View more
02-06-2019
06:26 AM
|
3
|
1
|
2006
|
|
IDEA
|
Tasks restore panes to their saved state once the step proceeds: If the pane was closed tasks closes the pane after the step. If the pane was minimized tasks minimizes it after the step. Tasks do not control map view configuration (side by side for example) today but we do plan to support it in the future.
... View more
02-06-2019
06:24 AM
|
1
|
0
|
4360
|
|
POST
|
Thanks for reporting Pan gis. The random nature of this issue and its severity is frustrating to say the least.
... View more
02-05-2019
01:43 AM
|
1
|
0
|
4238
|
|
POST
|
Hello Andrew, Did you try to force Append into editing session using the setting documented here? Thanks, Amir
... View more
02-04-2019
02:01 AM
|
0
|
1
|
4052
|
|
POST
|
Hello James, Thanks for reporting it. We have been trying to reproduce this issue in order to fix it Please follow this thread. Amir
... View more
01-29-2019
01:30 AM
|
0
|
0
|
806
|
|
POST
|
Unfortunately another person is reporting this behavior in 2.3 - see link. If you are able to reproduce it PLEASE submit a tech. support case as we must fix it ASAP. Amir
... View more
01-29-2019
01:27 AM
|
0
|
1
|
4238
|
|
IDEA
|
Hi Margaret, Thanks for your input. I have uploaded a video that shows how you can save a traverse and pick it up from where you have left using ArcGIS Pro. Here is the LINK.
... View more
01-23-2019
07:27 AM
|
1
|
1
|
2990
|
|
BLOG
|
In this video I would like to show how you can pick up a traverse from where you have left (don't forget to save edits) by using the traverse modify functionality in ArcGIS Pro. You can also use the modify functionality to correct an error in a previously entered traverse. There is no longer need to save to a text file,, just save your edits as features to your geodatabase. I have also included the legal description if you want to practice (you can really start from any location for practice purposes)
... View more
01-23-2019
07:25 AM
|
4
|
4
|
5167
|
|
POST
|
My Bad Michael. I meant ArcGIS Pro 2.3 and not 2.4. Thanks for the corrections.
... View more
12-27-2018
06:25 AM
|
4
|
3
|
4238
|
|
POST
|
2 Weeks ago we found a data corruption and fixed it for ArcGIS Pro 2.3. That bug might have been related to this issue. Once you get 2.3, please let us know if you still see tasks disappear. Thanks and happy new year!
... View more
12-27-2018
01:01 AM
|
2
|
5
|
4238
|
|
BLOG
|
Hi Bill, There are many ideas expressed on those threads, which I have tried to some up here: Ground to Grid and basis of bearing correction have been implemented in ArcGIS Pro 2.3. Polygon and line division,, including the proportioning of the misclose have been implemented with ArcGIS pro 2.3. You can enter non tangent curves using the traverse overrides (see below). You can perform arithmetic operations on distance units within the traverse itself. COGO area will be exposed in ArcGIS Pro 2.4 as well as an parcel attribute. Importing and exporting traverse files is under consideration with high likelihood to be implemented. Copy parallel as well as the buffer tool can be used to offset a line. Curve fillet tool has been implemented as part of ArcGIS Pro 2.3. Cul de suc entry, curve calculator and other less common tools will be implemented in subsequent releases. Amir FYI:Kory Kramer, Christine Leslie Override Keystroke Use in grid field Example Tangent bearing tb or TB Bearing 41-56-06-4tb (using quadrant bearing) Radial bearing rb or RB Bearing 41-56-06rb (using quadrant bearing) Chord bearing cb or CB Bearing 41-56-06cb (using quadrant bearing) Chord length c or C Arc Length, Delta Angle 25.01c Delta (central angle) d or D Arc Length, Chord Length 90-59-59d Arc length A or a Chord Length, Delta Angle 25.01a
... View more
12-27-2018
12:50 AM
|
3
|
0
|
4365
|
|
IDEA
|
ArcGIS Pro Traverse tool uses the compass adjustment method for a closed traverse. The adjustment method becomes irrelevant if you intend to adjust your data using least squares adjustment where the entire network is taken into account as opposed to a single entered traverse.
... View more
12-27-2018
12:32 AM
|
0
|
0
|
5960
|
|
BLOG
|
If you are using ArcGIS Pro 2.3 or earlier you can use the attached layer file (LYRX) and point it to your data to get the layer that is used in this video. Here is the link to the Arcade expression language.
... View more
12-24-2018
07:37 AM
|
1
|
0
|
1957
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-12-2023 01:26 AM | |
| 6 | 02-18-2026 07:38 AM | |
| 1 | 02-13-2026 02:25 AM | |
| 1 | 01-08-2026 06:37 AM | |
| 2 | 01-15-2026 08:21 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|