pythonAppend using ArcPy cursorsIf we are using Python with ArcGIS, there are existing tools to append data. However, calling a Geoprocessing tool from Python doesn’t feel…
pythonUsing multiple versions of Python with ArcGISAs Python continues its dominance as the defacto scripting language for GIS software, we hit a point when one Python environment isn’t…
pythonPython Script to Overwrite Existing Service in ArcGIS ServerArcGIS Desktop’s ArcPy package gives us the ability to publish a map service from a map document (MXD) inside Python. This can be very…
pythonUse ArcPy to Connect to SDE and VersionsThis post will discuss how to use ArcPy to Connect to SDE, create a new version, and switch to that version all inside a Python script. At…
pythonMultiple Field Key to Single Field Key for Relates using ArcPyAn issue with multi-field unique keys (composite key) is that we can’t use them to setup a join or relate between objects (Feature Classes…
pythonArcMap Layers to LYR Files with PythonA tiny Python script to show how to export ArcMap Layers to LYR Files with Python. Although it’s a short script, it shows how easy it is to…
pythonSecure Map Service to Shapefile with Python Part 3This post is inspired by the many emails I’ve received on the first two posts in this series. This article will address the most most…
pythonMap Service to Shapefile with Python Part 2 - IterationThis post builds on the previous Extract a Map Service Layer to Shapefile using Python post. It seems as though many are interested in…
pythonExtract a Map Service Layer to Shapefile using PythonHow easy/hard is it to extract a Map Service layer to Shapefile using Python? Not as hard as you would think. Is it legal? Not as easy as…
pythonPython Relative DirectoryWhen using sub-directories to store temp files, analysis outputs, or logs - a nice way to deal with the parent directory when moving the…
pythonBinary flags with PythonSometimes you just want to run a few specific sections of your python code for testing. Then a few more. Next, all sections. Now run just…
developerUseful GIS Developer ToolsLooking for additional tools for your coding toolbox? Here are 4 useful GIS developer tools you may or may not know about. Oh, they are also…
sql serverFeature Class export into native SQL Server tableNot too long ago, the only way to store spatial data inside a database was to have a custom/binary format managed in code or by software…