ArcGIS Parcel Fabric Blog

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Other Boards in This Place

Latest Activity

(21 Posts)
KenGalliher1
Esri Contributor

Released with Pro 3.2 is the ability to read and update the active parcel record in a map containing a parcel fabric.

Read more...

more
5 0 215
AmirBar-Maor
Esri Regular Contributor

My first reaction was: "Why would anyone want to downgrade?"

 

 

Read more...

more
8 0 592
AmirBar-Maor
Esri Regular Contributor

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

more
2 3 1,040
218 Subscribers
Labels