ArcMap leader tolerance illustrated

Posted by in ArcMap, GIS, Labeling
ArcMap leader tolerance illustrated

One concept in ArcMap that took forever to stick in my head was setting up leader tolerance for dynamic labels. It’s hard to connect the two conceptually because the settings directly correspond but are about a dozen mouse-clicks apart in the UI. I’m on ArcMap 10.1, using maplex in this demo. To add a leader […]

Calculating index rotation angle

Posted by in ArcMap, GIS, Mapbook
Calculating index rotation angle

You’ve built your index layer and it might look something like this. If you’ve rotated these features manually and want to used them to control page rotation in data driven pages, you’ll need a field containing the page rotation value. This layer already has an angle field that I’m going to use to demonstrate how […]

2 (or more) maps, 1 mxd

Posted by in ArcMap, GIS, Mapbook
2 (or more) maps, 1 mxd

This is a production technique I use to create multiple maps in one mxd utilizing data driven pages. The cool part about this is that I’m creating truly different maps here, not a series of the same map in different places. The first step is to create an index layer that controls the map title, […]

SQL definition query list

Posted by in ArcMap, GIS

Here’s a quick one, I see a lot of sql expressions written like this: Name = “Roosevelt” OR Name = “Jackson” OR Name = “Jefferson” OR Name = “Lincoln” OR Name = “Franklin” OR Name = “Washington” This can be written using the IN function. This is a little more legible and easier to compose […]

MOD function for contours

Posted by in ArcMap, GIS, Labeling, Symbology
MOD function for contours

Say you have 1’ or 5’ contours with an elevation field. Instead of calculating a new field or making selections, you can use the mod function. I find it extremely useful. In the definition query tab of your layer properties: mod(“Contour”,25)=0  The mod expression above divides the Contour value by 25 and throws out any […]