Wednesday, April 24, 2013

Sublayers with ArcGIS Online webmap and Javascript API

ArcGIS Online (ArcGIS.com) does a nice job of providing front ends for your web mapping services (particularly of the ArcGIS Server variety).  In fact, ArcGIS Server 10.1 no longer comes with out of the box web mapping applications, relying instead on deployment through ArcGIS.com.  ArcGIS.com provides a couple templates, for different use cases, that you can download and modify (though the performance hit of having the ArcGIS.com middleman is a concern).

One of the stumbling blocks I've identified in this new model is that ArcGIS.com -- and by extension ArcGIS Server -- does not provide any templates to allow the end user to control sublayer visibility.  Thus, in migrating from ArcGIS Server pre-10.1 you may find that the sublayer control that was previously available by default  through the out-of-the-box .NET (Java?) web applications is missing ... halting your entire migration.

After contacting Esri, I found it was necessary to code a custom solution.  

Here is a modified Basic Viewer ArcGIS.com web template, which supports sublayers, through the layers checkbox widget (dojo dijit):  http://www.udel.edu/001761

You'll need to add your ArcGIS.com webmap ID to that code, for it to function.

Or if you'd like to patch it yourself, apply this patch to /javascript/layout.js: http://www.udel.edu/001762

Note that this code will probably break if your map contains multiple map services with sublayers.

Thursday, April 11, 2013

Running GDAL and arcpy together (ArcGIS 10.1, GDAL 1.9.2, python 2.7.4)

There are many use cases for running GDAL and arcpy in the same python instance.  GDAL is the most popular open source geopspatial geoprocessing toolset and arcpy is Esri's python wrapper for the entire ArcGIS geoprocessing toolset.

However, doing so can get quite tricky.  GDAL's python bindings are not easily configured for Windows (and ArcGIS/ArcObjects is Windows-only).  The OSGeo4W project can be used to do so, but the bundled Python does not play well with arcpy.  arcpy itself depends on numpy and requires multiple path inclusions.


Here are steps I took to import gdal and arcpy.  
I tested by successfully running arcpy.RasterToNetCDF_md()  (though I haven't tested gdal yet).

Step 1: Install standalone python to C:\Python274 (download from http://www.python.org/ftp/python/2.7.4/python-2.7.4.msi)
Step 2: Add numpy (version bundled with ArcGIS) and Desktop10.1.pth to C:\Python274\Lib\site-packages (download from http://www.udel.edu/001745)
Step 3: Install GDAL binaries and python bindings (download installer from http://www.udel.edu/001742).
Step 4: Run import commands "import arcpy" and "from osgeo import gdal"

Some considerations:
arcpy is 32-bit (since it wraps arcobjects), so 32-bit python (etc.) are necessary
all versions of wrappers must be compatible with the same Python interpreter