arcpy

Updating Single Symbology in ArcGIS Pro with Python CIM Access

The Cartographic Information Model (CIM) is a map content specification for cartographic descriptions of GIS datasets and Project components in ArcGIS Pro. Essentially, it is the JSON that represents specifications for maps, scenes, layouts, layers, symbols, and styles in ArcGIS Pro. The best way to view these JSON specification is to save an element to …

Updating Single Symbology in ArcGIS Pro with Python CIM Access Read More »

Polygon To Line (Data Management) on a Basic License with ArcPy

The Polygon to Line (Data Management) tool is only available in ArcGIS Pro with an Advanced license. You can check out the Esri documentation for this tool here. For now, we will omit the optional identifying neighbouring information and will revisit in the future. A little about this tool; for each input polygon, the boundary …

Polygon To Line (Data Management) on a Basic License with ArcPy Read More »

Create Random Points (Data Management) on a Basic License with ArcPy

The Create Random Points (Data Management) tool is available with an Advanced license or on a Basic or Standard license if you have 3D Analyst or Spatial Analyst. In this post we will look at creating the tool for use with a Basic license. We’ll keep it simple for now and just generate the desired …

Create Random Points (Data Management) on a Basic License with ArcPy Read More »

Polygon-Polygon Overlap Percentage with Pairwise Intersect and ArcPy

A common task is to calculate the percentage overlap between a polygon feature class overlaying another polygon feature class. One general workflow is to use the (Pairwise) Intersect tool with the Join Attributes parameter set to Only feature IDs, add a field to store the percentage overlap attributes, join the underlay polygons to the output …

Polygon-Polygon Overlap Percentage with Pairwise Intersect and ArcPy Read More »

Feature Envelope To Polygon (Data Management) on a Basic License with ArcPy

Not the most fanciest of tools but another one none-the-less that you can by-pass the Advanced license requirement and create your own tool using ArcPy. The Feature Envelope To Polygon (Data Management) is only available in ArcGIS Pro with an Advanced license. You can achieve quite similar to this tool using the Minimum Bounding Geometry …

Feature Envelope To Polygon (Data Management) on a Basic License with ArcPy Read More »