<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GIS Tips &#38; Tricks &#187; ArcGIS Explorer</title>
	<atom:link href="http://www.aubreyrhea.net/gis/index.php/tag/arcgis-explorer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aubreyrhea.net/gis</link>
	<description>for ESRI&#039;s ArcGIS suite</description>
	<lastBuildDate>Fri, 01 Apr 2011 18:52:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Viewing Flood Zones in ArcGIS Explorer, Part 2</title>
		<link>http://www.aubreyrhea.net/gis/index.php/2010/01/viewing-flood-zones-in-arcgis-explorer-part-2/</link>
		<comments>http://www.aubreyrhea.net/gis/index.php/2010/01/viewing-flood-zones-in-arcgis-explorer-part-2/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 11:15:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[ArcGIS Explorer]]></category>
		<category><![CDATA[attribute table]]></category>
		<category><![CDATA[coordinate system]]></category>
		<category><![CDATA[DFIRM]]></category>
		<category><![CDATA[flood zone]]></category>
		<category><![CDATA[shapefile]]></category>

		<guid isPermaLink="false">http://www.aubreyrhea.net/gis/?p=226</guid>
		<description><![CDATA[This is a continuation of my last post about different ways to access flood zone data for the non-ArcGIS Desktop user. Method 4: DFIRM Shapefiles Digital Flood Rate Insurance Maps are available to download from FEMA for $10. They’ve offered a few free samples and Fairfax City happens to be one of them. The data [...]]]></description>
			<content:encoded><![CDATA[<p><strong>This is a continuation of my <a href="http://www.aubreyrhea.net/gis/index.php/2009/12/viewing-flood-zones-with-arcgis-explorer-part-1/">last post</a> about different ways to access flood zone data for the non-ArcGIS Desktop user.</strong></p>
<p><em>Method 4: DFIRM Shapefiles</em></p>
<p>Digital Flood Rate Insurance Maps are available to download from FEMA for $10. They’ve offered a few <a href="http://msc.fema.gov/webapp/wcs/stores/servlet/info?storeId=10001&amp;catalogId=10001&amp;langId=-1&amp;content=productDFIRM&amp;title=DFIRM%20Databases&amp;parent=productInfo&amp;parentTitle=Product%20Information">free samples</a> and Fairfax City happens to be one of them.</p>
<p>The data comes in several formats including shapefile. ArcGIS Explorer can read shapefiles. However, it will not let you add them to your map unless they have a defined projection.</p>
<p><img src="http://www.aubreyrhea.net/gis/images/failed.png" alt="" /></p>
<p>The shapefiles in the Fairfax City DFIRM that I downloaded didn’t have their projections defined. I would assume this is the case with all of them. Luckily, they tell you the projection in the metadata. And luckily, projections can be defined with a file you can create using any text editor.</p>
<p>To find the projection, open the _metadata file in the Document folder. If you scroll down about 2/3 of the way you’ll find the Spatial_Reference_Information section. The most important parts are the Grid_Coordinate_System_Name, UTM_Zone_Number, and Horizontal_Datum_Name. The Fairfax City DFIRM is in Universal Transverse Mercator (UTM) Zone 18, NAD 1983 datum.</p>
<p><img src="http://www.aubreyrhea.net/gis/images/metadata.png" alt="" /></p>
<p>I used that information to have ArcGIS desktop create a projection definition file in the format used by all ESRI GIS software (including ArcGIS Explorer). It looks like this:<br />
<code>PROJCS["NAD_1983_UTM_Zone_18N",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",<br />
SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],<br />
PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],<br />
PARAMETER["Central_Meridian",-75.0],PARAMETER["Scale_Factor",0.9996],<br />
PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]</code><br />
All you need to do is copy and paste that text into a text editor, remove any spaces, then save it as a .prj file. The name before the file extension should match the shapefile you are trying to use. The main DFIRM shapefile is S_Fld_Haz_Ar.shp, the flood hazard zone areas. So the projection definition file should be called S_Fld_Haz_Ar.prj</p>
<p>If you don’t want to copy and paste you can <a href="http://www.aubreyrhea.net/gis/S_Fld_Haz_Ar.prj">download</a> it and put it the same folder with the shapefile.</p>
<p>FEMA uses UTM for all of its DFIRMs, but they do not always use the same datum. If you download a different one from Fairfax City, you will need to check the metadata for the UTM Zone Number and whether the datum is NAD 1983 or NAD 1927. If it’s NAD 1983, you can use the same text from above as a template to create your .prj file. Just change the two red areas to match what the metadata says:</p>
<p><code>PROJCS["NAD_1983_UTM_Zone_<span style="color: #ff0000;">18</span>N",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",<br />
SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],<br />
PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],<br />
PARAMETER["Central_Meridian",<span style="color: #ff0000;">-75</span>.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]</code></p>
<p>If it’s NAD 1927, use this template and change the red areas</p>
<p><code>PROJCS["NAD_1927_UTM_Zone_<span style="color: #ff0000;">17</span>N",GEOGCS["GCS_North_American_1927",DATUM["D_North_American_1927",<br />
SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],<br />
PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],<br />
PARAMETER["Central_Meridian",<span style="color: #ff0000;">-81</span>.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]</code><br />
(Remove any line breaks that I’ve entered for readability).</p>
<p>Now, Go to the Add Content button and select Shapefiles… Then browse to the ArcShapes folder and add S_Fld_Haz_Ar.shp. The shapefile starts out looking like this…</p>
<p><img src="http://www.aubreyrhea.net/gis/images/Start.png"></p>
<p> …which isn’t very helpful, but just wait. If you right click on the layer in the Contents window, you can change the symbol to something with edges. Now you will be able to see the flood zone borders.</p>
<p><img src="http://www.aubreyrhea.net/gis/images/Edges.png"></p>
<p>And, if you right click on the layer again and this time bring up the Properties window, you will be able to select certain attributes to show as Popup Content.</p>
<p><a href="http://www.aubreyrhea.net/gis/images/Popup.png"><img src="http://www.aubreyrhea.net/gis/images/Popup_small.png"></a><br />
(click on the image to see full size)</p>
<p>When you open this dialog box, a list of all the available attributes will come up. You will be able to select which ones you want to appear in a little pop-up window whenever you click on a feature. I picked all of them. Then, in the bottom half of the box you can select one attribute that will appear whenever you hover over a feature with your mouse. I picked FLD_ZONE because this is the most important piece of information. Now, if I type the address of City Hall into the Find box and press enter, I have everything I wanted at the beginning.</p>
<p><img src="http://www.aubreyrhea.net/gis/images/Everything.png"></p>
<p>There’s a “you are here” symbol, and if I mouse-over I see it’s located in Zone X (not Flood Zone). I can mouse over other areas to see where the nearest 0.2 pct annual chance flood hazard zone is. And if I click in the zone, I can get any more information that exists about it.</p>
<p>Knowing how to use shapefiles in ArcGIS Explorer opens up a world of information. You can watch a free basic overview of the software at <a href="http://blogs.esri.com/Support/blogs/esritrainingmatters/archive/2009/12/03/explore-arcgis-explorer-in-a-free-training-seminar.aspx">http://blogs.esri.com/Support/blogs/esritrainingmatters/archive/2009/12/03/explore-arcgis-explorer-in-a-free-training-seminar.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aubreyrhea.net/gis/index.php/2010/01/viewing-flood-zones-in-arcgis-explorer-part-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Viewing flood zones with ArcGIS Explorer, Part 1</title>
		<link>http://www.aubreyrhea.net/gis/index.php/2009/12/viewing-flood-zones-with-arcgis-explorer-part-1/</link>
		<comments>http://www.aubreyrhea.net/gis/index.php/2009/12/viewing-flood-zones-with-arcgis-explorer-part-1/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 12:13:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[ArcGIS Explorer]]></category>
		<category><![CDATA[flood zone]]></category>
		<category><![CDATA[Web Map Service]]></category>

		<guid isPermaLink="false">http://www.aubreyrhea.net/gis/?p=187</guid>
		<description><![CDATA[Problem: You need to look at some GIS data without purchasing a GIS software package. This post is inspired by a reader question. My friend Jeremy asks, &#8220;Is there any easy way to get at GIS data of water tables, flood zones, and stuff like that? Things that people who buy houses really should look [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem: You need to look at some GIS data without purchasing a GIS software package.</strong></p>
<p>This post is inspired by a reader question. My friend Jeremy asks,</p>
<blockquote><p>&#8220;Is there any easy way to get at GIS data of water tables, flood zones, and stuff like that? Things that people who buy houses really should look into but seldom do.&#8221;</p></blockquote>
<p>I cut my teeth making flood zone maps so I am quite familiar with where this data lives. I revisited the FEMA <a href="http://msc.fema.gov/">Map Service Center</a> to give him some specific advice about where to look. My plan was to determine the easiest/fastest path to the information. To my dismay, the website has not changed much since I changed jobs. Meaning, to put it bluntly: there is no easy way.</p>
<p>I assume most visitors to the website would want to be able to type in an address and have that address come up as a dot on a map with the flood zone layer below it. If the dot falls within a flood zone, they&#8217;d be able to tell in one glance. Well, you can get pretty close, but you can&#8217;t exactly do that. So, instead of talking about the easiest way to get flood zone information, I&#8217;ll talk about four different ways.</p>
<p>I attended college at George Mason University so I decided to use the city of Fairfax as my example location. Pretend you are moving there. Because I don&#8217;t want to map a private residence, pretend you are moving there because you just got elected mayor. You want to check if your new digs at City Hall are in danger of flooding.</p>
<p><em>Method 1: FEMA&#8217;s Map Viewer</em><br />
<a href="https://hazards.fema.gov/wps/portal/mapviewer">https://hazards.fema.gov/wps/portal/mapviewer</a></p>
<p>Pros</p>
<ul>
<li>This viewer allows you to type in an address and zoom to it.</li>
<li>The map that comes up shows the flood zones in that area along with a lot of other useful information.</li>
<li>There&#8217;s an identify tool that allows you access even more information about the data layers.</li>
</ul>
<p>Here&#8217;s what I got for City Hall:</p>
<p><img src="http://www.aubreyrhea.net/gis/images/viewer.png" alt="" /></p>
<p>Cons</p>
<ul>
<li>There&#8217;s no &#8220;you are here&#8221; symbol on the map. If I&#8217;m not familiar enough with the area to already know where City Hall is, I still don&#8217;t know whether it&#8217;s in a flood zone.</li>
<li>There&#8217;s too many layers turned on by default, which clutters the map, making it confusing and hard to interpret at first glance.</li>
<li>The legend isn&#8217;t very helpful. It doesn&#8217;t explain what the blue-hatched Zone A is, or what the purple text LOMRs are. I only know that they are Letters of Map Revision because I used to work there.</li>
</ul>
<p><em>Method 2: Product Search by Address&#8230;</em><br />
Box on top-left corner of main <a href="http://msc.fema.gov/">Map Service Center</a> screen</p>
<p>You can enter an address and select either a Flood Map (visual image) or DFIRM (digital database) product. The Fairfax City data is at the moment only available as a DFIRM, which I will discuss later in method 4. For now, I&#8217;ll enter the address of nearby GMU campus to bring up the Flood Map of surrounding Fairfax County.</p>
<p><img src="http://www.aubreyrhea.net/gis/images/FIRM.png" alt="" /></p>
<p>Pros</p>
<ul>
<li>A beautiful looking map (If I don&#8217;t say so myself) which is simple and easy to interpret, and also happens to be the authoritative flood zone representation product.</li>
<li> A good legend which explains in detail what the flood zone designations mean.</li>
</ul>
<p>Cons</p>
<ul>
<li>Obviously no &#8220;you are here&#8221; symbol on this static map.</li>
<li> And, it&#8217;s even harder to pinpoint an exact location than in the Map Viewer, because these maps only show major roads, and most of the time use route numbers instead of road names.</li>
</ul>
<p>It isn&#8217;t hard to see why people may feel the need to look elsewhere to determine if their prospective property is really in a flood zone. Maybe that&#8217;s why a google search for &#8220;flood zone data&#8221; brings up companies that will research this for you if you pay them. There are, however, other ways, which are free or almost free.</p>
<p><em>Method 3: FEMA&#8217;s Web Map Service (WMS) &amp; ArcGIS Explorer</em><br />
<a href="https://hazards.fema.gov/femaportal/wps/portal/NFHLWMS">https://hazards.fema.gov/femaportal/wps/portal/NFHLWMSe</a></p>
<p>A web map service is a computer program that will query a database and deliver the results back in the form of a dynamically generated map. FEMA makes the National Flood Hazard Layer available for free through a WMS. You need to have GIS software in order to read WMS data. However, if you don&#8217;t have access to the ArcGIS Desktop package that I regularly blog about,  you aren&#8217;t locked out from playing. You just need to grab a copy of ArcGIS Explorer: &#8220;GIS for Everyone&#8221; at <a href="http://www.esri.com/software/arcgis/explorer/index.html">http://www.esri.com/software/arcgis/explorer/index.html</a></p>
<p><img src="http://www.aubreyrhea.net/gis/images/explorer.png" alt="" /></p>
<p>Once you&#8217;ve installed and opened the program, press the Add Content icon on the main toolbar. Select GIS Services&#8230; and then press New Server Connection. For the server type, chose WMS, and then enter the Server address that FEMA gives on their <a href="https://hazards.fema.gov/femaportal/wps/portal/NFHLWMS">tool description page</a>:</p>
<p><span style="font-family: 'Courier New';">http://hazards.fema.gov/wmsconnector/wmsconnector/Servlet/NFHL?</span></p>
<p><img src="http://www.aubreyrhea.net/gis/images/service.png" alt="" /></p>
<p>You&#8217;ll then be given a list of services to choose from. Flood Hazard Zones (General) is the main one. If you pick that, then enter your address in the Find box on the left side of the screen, the globe will whirl around until you see this.</p>
<p>Eureka! Now I know City Hall isn&#8217;t in a flood zone!</p>
<p><img src="http://www.aubreyrhea.net/gis/images/wms.png" alt="" /><br />
(I changed the Basemap to Streets)</p>
<p>Stay tuned, in two weeks I will <a href="http://www.aubreyrhea.net/gis/index.php/2010/01/viewing-flood-zones-in-arcgis-explorer-part-2/">post</a> about Method 4: Using DFIRM Shapefiles. The best is yet to come.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aubreyrhea.net/gis/index.php/2009/12/viewing-flood-zones-with-arcgis-explorer-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

