|
POST
|
Jason Camerano gave me this python snippet: head, sep, tail = arcpy.Describe(parcelFabricLayer).Path.partition(".gdb")
workspacePath = head + sep explanation: Describe().Path returns the full path that also contains the string ".gdb" partition separates is using the provided ".gdb" string to: head - before the ".gdb" string sep - the ".gdb" string tail - after the ".gdb" tring Anyone has a better method?
... View more
04-20-2017
09:31 AM
|
0
|
3
|
6002
|
|
BLOG
|
The traverse tool in Pro 2.0 will allow you to enter COGO measurements, digitize a natural boundary and modify courses that were entered previously. It will not include ground to grid scaling correction, rotation correction for basis of bearing or ability to import traverse text files fro ArcMap. Please let us know if any of those impede your adoption of Pro.
... View more
03-28-2017
12:14 PM
|
1
|
0
|
23866
|
|
POST
|
The original thread is from 2013, but it is hard to tell if it is the same or not because you might be using a different version of the software, different DBMS and many other variables could be different. Please open a case and we'll have a look. Your insight about the layer is very valuable. Thanks.
... View more
03-27-2017
11:32 AM
|
0
|
0
|
1616
|
|
POST
|
Please contact technical support to create a case for any unexpected behavior. Cases that are software bugs are reported to the development team. Thanks.
... View more
03-27-2017
10:00 AM
|
0
|
2
|
1616
|
|
POST
|
Hello Matthew, Thanks for the feedback. you can restrict the number of processed features for any geoprocessing tool using selection. Another option is to modify the script. Here is an example: featuresSelected=len(arcpy.Describe(inputPolygonLayer).FIDSet.split('; '))
if featuresSelected>maxNumberOfParcelsToProcess:
arcpy.AddError("\n\n\nToo many polygons selected. Select less then {0}. \n\n\n Aborting.".format(maxNumberOfParcelsToProcess))
return None Amir
... View more
03-17-2017
11:12 AM
|
0
|
0
|
4349
|
|
POST
|
We can envision using: Different maps for different workflows. e.g. usually it is not the same person that manages PLSS, subdivisions, splits and merges, ownership and easements Each map can show the relevant parcel types. All maps point the same parcel fabric.
... View more
03-16-2017
05:22 PM
|
0
|
0
|
2480
|
|
POST
|
We recommend editing PLSS using the Public Land Survey Editing<http://solutions.arcgis.com/local-government/help/public-lands-editing/> template that separates those layers. If you want to create additional parcel fabric layers follow this process: 1. Right click on a layer that is close to the layer of interest and save it out to a *.lyr file 2. Use Add Data to add the saved *.lyr file 3. Repurpose the layer by modifying the layer’s: name, definition query, editing templates, symbology, labels etc. 4. Place the layer above or below the parcel fabric group. You can create your own group layers as well. You cannot insert the new layer in the parcel fabric group layer. Instead you can repurpose existing layer and\or follow the process listed above.
... View more
03-13-2017
05:15 PM
|
2
|
3
|
2480
|
|
POST
|
Learn how the state of Utah maintains their cadastral reference system (Public Land Survey System) - http://arcg.is/2lDUXVJ . This is a wonderful use of story maps to tell the story of control points importance and maintenance in the state of Utah. What's your story?
... View more
03-10-2017
09:23 AM
|
2
|
0
|
950
|
|
POST
|
Parcel Fabric Geoprocessing tools have been organized and modified. You can now download them in a single location and easily deploy them. The collection of toolboxes cover the following areas: data migration, feature adjustment, parcel fabric adjustment, export and reporting, field calculation and useful samples for python (script tools) developers. In this meeting we'll demo how to get and deploy the tools + demo some of the tools we are excited about. All the tools can be found in this location: http://arcg.is/29QobNB
... View more
02-17-2017
02:01 PM
|
4
|
12
|
8204
|
|
POST
|
Hello Nicolas, This is how to do it: Step 1- Select by Attributes: set your layer and SQL query to select the features. Step 2 - automatic step, set the corresponding layer as selected (must be the only selected layer) and call the command 'Zoom To Selection' You cannot use a Task variable (e.g. attribute value from user or feature) and insert it into a SQL query. You can log this as an idea. Thanks, Amir
... View more
02-17-2017
01:46 PM
|
0
|
0
|
2317
|
|
POST
|
Hello Kevin, It would be great to open a case with technical support. This will help the development team better understand the issue. I assume you are using arcpy.AddMessage(...) and that the display area for the GP tool cannot be expanded to see the error message - can you please confirm? Thanks, Amir
... View more
02-17-2017
01:40 PM
|
0
|
0
|
1143
|
|
POST
|
In this Land Records Meetup we covered the following topics: This session is for people interested in writing code to create add-ins that are used for working with parcel fabrics. You’ll need to have a familiarity with the parcel fabric dataset, and be familiar with Arc Objects. In this session we will cover: -Overview of writing code for parcel fabrics -Resources on Github, and ArcGIS Online -what can be customized? -demos of published add-ins -Accessing and using the parcel editor extension -Editing rules for parcel fabric tables -Edit locks for parcels, when to use them -new API for 10.4 parcel editor ArcObjects SDK thodson-esristaff
... View more
11-11-2016
03:30 PM
|
1
|
0
|
1734
|
|
POST
|
In this Land Records Meetup we covered the following topics: The Survey Plan Verification Web Service provides the legal surveying community with the ability to verify survey plan standards prior to final submission and approval. Digital submissions are automatically checked by the online tool and common drawing errors are identified on the Survey Plan Verification Report – the result of using the web service. The surveyor can then correct any errors prior to final submission of legal survey plans. Accurate and complete plans are more likely to be approved and turnaround times to be reduced through this streamlined submission process. The Survey Plan Verification Web Service is one way The City of Calgary is enhancing geographic asset information management and working collaboratively with industry. About the presenter: Arne is an award winning GIS/QA professional with over 20 years of experience in the development and integration of GIS data and applications. Managing quality assurance and geospatial information for such companies as Autodesk Inc., Saskatchewan Highways and Transportation, Saskatchewan Health, as well as Kanotech Information Systems Ltd, Arne is no stranger to both the public and private sectors in the Canadian GIS community. The current Leader of The City of Calgary’s Land Asset Information & Mapping business area, Arne and his team of 15 GIS professionals are responsible for the cadastral base mapping and parks related mapping. He is a graduate from the University of Regina’s Bachelor of Science program in Physical Geography, and a recipient of the ESRI Exemplary Systems in Government Award for Cadastral Management. In his spare time, Arne loves to spend time with his family taking in various city and mountain activities including hiking and skiing.
... View more
11-10-2016
04:30 PM
|
0
|
0
|
1380
|
|
POST
|
In this Land Records Meetup we covered the following topics: ArcGIS 10.3.1 – What’s new Historic Parcels: How and when Historic parcels are created Which tools create historic parcels How historic parcels work in Parcel Explorer Bringing historic parcels back to current Common reasons to retire a parcel Deleting historic parcels Turning history on and off (Parcel options) How to load overlapping historic parcels Using an Add-In to fix historic parcels that were not migrated properly Plans: Why use plans? Using plans to navigate and select parcels How to migrate plan table information How legal date gets passed to parcels Setting Accuracy on plans and accuracy hierarchy Why use unique plan names How to associate parcels with another plan How to use an Add-In to identify and fix plan issues Extending the Plan Table Changing Units
... View more
11-10-2016
04:27 PM
|
0
|
0
|
1375
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 3 | 3 weeks ago | |
| 2 | 3 weeks ago | |
| 1 | 06-12-2023 01:26 AM |
| Online Status |
Offline
|
| Date Last Visited |
9 hours ago
|