We have shared a series of best practices for condos in the Local Government Information Model. In your editing model, we would suggest you track the condo units in a related table and as you publish your parcel data you'll stack the condo polygons and associate the tax and assessment attributes with a unique polygon in your TaxParcelPublishing feature class. You can find more information about this topic in the Tax Parcel Editing Map and Data Dictionary for the Local Government Information Model.
Scott, why is ESRI suggesting that we stack polygons to handle condo tax records? It seems to be a lot more complicated and require more effort to maintain all of the duplicate parcels. If you include a tax id field in the parcels layer you could simply use a one to many relate to a tax roll table to achieve the same results. This method would only require you to maintain a single parcels layer and a single parcel for each condo development.
SELECT Assessor.OBJECTID, Assessor.OwnerName, Parcel.ParcelID, Parcel.Shape FROM dbo.Parcel INNER JOIN dbo.Assessor ON Parcel.ParcelID = Assessor.ParcelID
I've found the 'Tax Parcel Publishing' script in the ParcelPublishingTools toolbox from the TaxParcelEditingfor10.1 that I believe is supposed to migrate our data from the Parcel Editing dataset to the Parcel Publishing dataset. I have not been successful in running this tool. Looking at the updatetaxparcels.py in the same Parcel Publishing folder I cannot figure out where to change the python code to make this script work. Is there an updated version of this script or any reason for it to not be working?
parcels = r"%s_Layer\Parcels"%(name)
parcels = r"%s_Layer\Tax Parcels"%(name)
arcpy.management.SelectLayerByAttribute(parcels, "NEW_SELECTION", """Type = 7 AND Historical = 0""")
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.