<?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 Pathway... &#187; ArcGIS</title>
	<atom:link href="http://gispathway.com/category/gis-tips/arcgis/feed/" rel="self" type="application/rss+xml" />
	<link>http://gispathway.com</link>
	<description>...helping guiding you to success in the world of GIS!</description>
	<lastBuildDate>Tue, 06 Mar 2012 02:57:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Taking advantage of Python in ArcGIS</title>
		<link>http://gispathway.com/2011/05/12/taking-advantage-of-python-in-arcgis/</link>
		<comments>http://gispathway.com/2011/05/12/taking-advantage-of-python-in-arcgis/#comments</comments>
		<pubDate>Fri, 13 May 2011 00:49:59 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[arcpy]]></category>
		<category><![CDATA[ArcToolbox]]></category>
		<category><![CDATA[Buffer]]></category>
		<category><![CDATA[Model Builder]]></category>
		<category><![CDATA[ModelBuilder]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=2259</guid>
		<description><![CDATA[Python is the next big programming language for ArcGIS. With the addition of the ArcPy module in ArcGIS 10 there is so much more that can be done with Python. In previous version of ArcGIS VBA made is easy to customize the interface and basic processes. At the release of ArcGIS 10.1 VBA will no [...]]]></description>
			<content:encoded><![CDATA[<p>Python is the next big programming language for ArcGIS.  With the addition of the ArcPy module in ArcGIS 10 there is so much more that can be done with Python.  In previous version of ArcGIS<a href="http://gispathway.com/2008/11/10/start-programming-in-gis/" target="_self"> VBA</a> made is easy to customize the interface and basic processes.  At the release of ArcGIS 10.1 VBA will no longer be supported.</p>
<p>So now that Python has been proven as a great tool, who do you begin.  Sure you can start with <a href="www.python.org" target="_blank">www.python.org</a> but the is so much information is on the site you are not sure where to start.  Well, there is a endless source for finding code samples.  Search the <a href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/" target="_blank">ArcGIS Help Library</a> to find the tool you would like to use.  Then scroll to near the bottom and there is a code sample to use in the <a href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/0021/002100000017000000.htm" target="_blank">Python Window</a> or as a stand-alone script for that particular tool.</p>
<p>Another  method that saves a lot of time is to use ModelBuilder and create a model for the desired process.  Once you get the model working then <a href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w00000031000000.htm" target="_blank">export the model as a script</a> (Model &gt; Export &gt; Script).  The output of this export provides a great starting point for expanding on the python code to get the task accomplished.</p>
<p><a href="http://gispathway.com/wp-content/uploads/2011/05/Help_Python.jpg"><img class="alignleft size-full wp-image-2264" title="Help_Python" src="http://gispathway.com/wp-content/uploads/2011/05/Help_Python.jpg" alt="" width="591" height="301" /></a></p>
<p>Here is a quick example from the <a href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/0008/000800000019000000.htm" target="_blank">Buffer tool</a> help document:</p>
<blockquote><p><strong>Python Widnow Script</strong><br />
<code>import arcpy<br />
arcpy.env.workspace = "C:/data"<br />
arcpy.Buffer_analysis("roads", "C:/output/majorrdsBuffered" "100 Feet", "FULL", "ROUND", "LIST", "Distance")</code></p></blockquote>
<blockquote><p><strong>Stand-alone Script</strong><code><br />
# Name: Buffer.py<br />
# Description: Find areas of suitable vegetation which exclude areas heavily impacted by major roads<br />
# Author: ESRI</code></p>
<p># import system modules<br />
import arcpy<br />
from arcpy import env</p>
<p># Set environment settings<br />
env.workspace = &#8220;C:/data/Habitat_Analysis.gdb&#8221;</p>
<p># Select suitable vegetation patches from all vegetation<br />
veg = &#8220;vegtype&#8221;<br />
suitableVeg = &#8220;C:/output/Output.gdb/suitable_vegetation&#8221;<br />
whereClause = &#8220;HABITAT = 1&#8243;<br />
arcpy.Select_analysis(veg, suitableVeg, whereClause)</p>
<p># Buffer areas of impact around major roads<br />
roads = &#8220;majorrds&#8221;<br />
roadsBuffer = &#8220;C:/output/Output.gdb/buffer_output&#8221;<br />
distanceField = &#8220;Distance&#8221;<br />
sideType = &#8220;FULL&#8221;<br />
endType = &#8220;ROUND&#8221;<br />
dissolveType = &#8220;LIST&#8221;<br />
dissolveField = &#8220;Distance&#8221;<br />
arcpy.Buffer_analysis(roads, roadsBuffer, distanceField, sideType, endType, dissolveType, dissolveField)</p>
<p># Erase areas of impact around major roads from the suitable vegetation patches<br />
eraseOutput = &#8220;C:/output/Output.gdb/suitable_vegetation_minus_roads&#8221;<br />
xyTol = &#8220;1 Meters&#8221;<br />
arcpy.Erase_analysis(suitableVeg, roadsBuffer, eraseOutput, xyTol)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2011/05/12/taking-advantage-of-python-in-arcgis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArcGIS Explorer &#8211; Setting Relative Paths</title>
		<link>http://gispathway.com/2010/01/25/arcgis-explorer-setting-relative-paths/</link>
		<comments>http://gispathway.com/2010/01/25/arcgis-explorer-setting-relative-paths/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 12:00:08 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[Absolute Paths]]></category>
		<category><![CDATA[File Paths]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Relative Paths]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=2067</guid>
		<description><![CDATA[As you begin developing your ArcGIS Explorer presentation you will find many new and helpful additions to make it one of a kind.  The time you spend developing the presentation is well worth the wow-effect people see with this software.  Most of the time you create your presentations on a desktop computer and then present [...]]]></description>
			<content:encoded><![CDATA[<p>As you begin developing your ArcGIS Explorer presentation you will find many new and helpful additions to make it one of a kind.  The time you spend developing the presentation is well worth the wow-effect people see with this software.  Most of the time you create your presentations on a desktop computer and then present it on another computer.  By moving your files from one system to the other, the data paths can easily be corrupted.  This can cause a big headache if you find the problem as you are fixing to present.  Fortunately, there is a way to prevent this problem.</p>
<p>In ArcMap there is the option to store relative paths for the data layers you add to your map.  This same feature is available in ArcGIS Explorer.  A few quick steps will put you on your way out the door with no worries for your presentation data.</p>
<p>1. <strong>Click</strong> the <em>Office Button</em> and <strong>select</strong> <em>Map Properties</em></p>
<p><em> </em><a href="http://gispathway.com/wp-content/uploads/2009/12/MapPropMenu.gif"><img class="size-medium wp-image-2069 alignnone" title="MapPropMenu" src="http://gispathway.com/wp-content/uploads/2009/12/MapPropMenu-299x232.gif" alt="MapPropMenu" width="299" height="232" /></a></p>
<p>2. Under <em>Data Access</em> <strong>check</strong> the <em>Store relative paths</em> option</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/relative_paths.gif"><img class="size-medium wp-image-2070 alignnone" title="relative_paths" src="http://gispathway.com/wp-content/uploads/2009/12/relative_paths-300x231.gif" alt="relative_paths" width="300" height="231" /></a></p>
<p>3. <strong>Save</strong> your presentation</p>
<p><strong>If you found this tip helpful, try these other ArcGIS Explorer tips:</strong></p>
<p><strong><a rel="bookmark" href="../2010/01/18/arcgis-explorer-adding-slides/" target="_blank">ArcGIS Explorer – Adding Slides</a></strong></p>
<p><strong><a rel="bookmark" href="../2010/01/11/arcgis-explorer-adding-data/" target="_blank">ArcGIS Explorer – Adding Data</a></strong></p>
<p><strong><a rel="bookmark" href="../2010/01/04/arcgis-explorer-change-color-scheme/" target="_blank">ArcGIS Explorer – Change Color Scheme</a></strong></p>
<p>This example uses ArcGIS Explorer 900.  If you don&#8217;t have it, download <a title="ArcGIS Explorer 900" href="http://www.esri.com/software/arcexplorer/explorer.html" target="_blank">ArcGIS Explorer 900</a> for free today!</p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2010/01/25/arcgis-explorer-setting-relative-paths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArcGIS Explorer &#8211; Adding Slides</title>
		<link>http://gispathway.com/2010/01/18/arcgis-explorer-adding-slides/</link>
		<comments>http://gispathway.com/2010/01/18/arcgis-explorer-adding-slides/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 12:00:09 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[Microsfot]]></category>
		<category><![CDATA[PNG]]></category>
		<category><![CDATA[PowerPoint]]></category>
		<category><![CDATA[Prentation]]></category>
		<category><![CDATA[Slides]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=2074</guid>
		<description><![CDATA[In ArcGIS Explorer 900 you are able to create dynamic presentations.  There is the ability to go from a slide presentation directly into an interactive map.  You can then go back to the slides all within this one program.  There is not a slide creation method in ArcGIS Explorer.  The only text you can add [...]]]></description>
			<content:encoded><![CDATA[<p>In ArcGIS Explorer 900 you are able to create dynamic presentations.  There is the ability to go from a slide presentation directly into an interactive map.  You can then go back to the slides all within this one program.  There is not a slide creation method in ArcGIS Explorer.  The only text you can add in are title that appear at the top of the screen.  In order to add slides, they must be created in another program and added in as a *.PNG file.  This can be done through either PowerPoint or a graphics program such as Photoshop.  This example uses Microsoft PowerPoint.</p>
<p><strong>1. Create slide in Microsoft PowerPoint</strong></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/slide_ppt.gif"><img class="size-medium wp-image-2077 alignnone" title="slide_ppt" src="http://gispathway.com/wp-content/uploads/2009/12/slide_ppt-300x259.gif" alt="slide_ppt" width="300" height="259" /></a></p>
<p><strong>2. Save slide as a Portable Graphics Network Format (*.png)</strong></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/slide_ppt_Menu.gif"><img class="size-medium wp-image-2079 alignnone" title="slide_ppt_Menu" src="http://gispathway.com/wp-content/uploads/2009/12/slide_ppt_Menu-266x300.gif" alt="slide_ppt_Menu" width="266" height="300" /></a></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/slide_save_png.gif"><img class="size-medium wp-image-2080 alignnone" title="slide_save_png" src="http://gispathway.com/wp-content/uploads/2009/12/slide_save_png-300x68.gif" alt="slide_save_png" width="300" height="68" /></a></p>
<p><strong>3.  Choose either current slide or every slide</strong></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/slide_ppt_all.gif"><img class="size-medium wp-image-2078 alignnone" title="slide_ppt_all" src="http://gispathway.com/wp-content/uploads/2009/12/slide_ppt_all-300x71.gif" alt="slide_ppt_all" width="300" height="71" /></a></p>
<p><strong>4. Add content -&gt; Image Overlays&#8230;</strong></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/slide_add_image.gif"><img class="size-medium wp-image-2075 alignnone" title="slide_add_image" src="http://gispathway.com/wp-content/uploads/2009/12/slide_add_image-160x300.gif" alt="slide_add_image" width="160" height="300" /></a></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/Slide_Demo.gif"><img class="size-medium wp-image-2076 alignnone" title="Slide_Demo" src="http://gispathway.com/wp-content/uploads/2009/12/Slide_Demo-300x232.gif" alt="Slide_Demo" width="300" height="232" /></a></p>
<p>This example uses ArcGIS Explorer 900.  If you don&#8217;t have it, download <a title="ArcGIS Explorer 900" href="http://www.esri.com/software/arcexplorer/explorer.html" target="_blank">ArcGIS Explorer 900</a> for free today!<a href="../wp-content/uploads/2009/12/Explorer_Blue.gif"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2010/01/18/arcgis-explorer-adding-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArcGIS Explorer &#8211; Adding Data</title>
		<link>http://gispathway.com/2010/01/11/arcgis-explorer-adding-data/</link>
		<comments>http://gispathway.com/2010/01/11/arcgis-explorer-adding-data/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 12:00:06 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[ArcGIS Layer Packages]]></category>
		<category><![CDATA[ArcGIS Layers]]></category>
		<category><![CDATA[ArcGIS Online]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[Geodatabase Data]]></category>
		<category><![CDATA[GIS Services]]></category>
		<category><![CDATA[GPS Data Files]]></category>
		<category><![CDATA[Image Overlays]]></category>
		<category><![CDATA[KML Files]]></category>
		<category><![CDATA[Map Content Files]]></category>
		<category><![CDATA[Raster Data]]></category>
		<category><![CDATA[Shapefiles]]></category>
		<category><![CDATA[Text Files]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=2086</guid>
		<description><![CDATA[The new ArcGIS Explorer 900 has some really cool features to make exploring the globe fairly simple.  With ArcGIS Explorer, adding data could not be any easier.   Looking at data already provided my ESRI, Bing, USGS, etc. is one thing.  Adding in data, specifically your own makes ArcGIS Explorer even more useful. Data that can [...]]]></description>
			<content:encoded><![CDATA[<p>The new ArcGIS Explorer 900 has some really cool features to make exploring the globe fairly simple.  With ArcGIS Explorer, adding data could not be any easier.   Looking at data already provided my ESRI, Bing, USGS, etc. is one thing.  Adding in data, specifically your own makes ArcGIS Explorer even more useful.</p>
<p>Data that can be added in includes: ArcGIS Online, ArcGIS Layers, Map Content Files, KML Files, GIS Services, Shapefiles, Raster Data, Geodatabase Data, Text Files, GPS Data Files, and Image Overlays.</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/adddata_menu.gif"><img class="size-full wp-image-2132 alignleft" title="adddata_menu" src="http://gispathway.com/wp-content/uploads/2009/12/adddata_menu.gif" alt="adddata_menu" width="173" height="256" /></a>Each of these data elements can be added directly from the <strong>Add Content</strong> button on the <strong>Home Menu</strong> ribbon.  By clicking the <strong>Add Content</strong> button, a menu like the one on the right will show and you can choose your data type.  Follow the specific directions provided and the data will be added into the <strong>Contents Window</strong>.  The data will be shown with various icons to indicate the data type.</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/adddata_contents.gif"><img class="size-full wp-image-2131 alignright" title="adddata_contents" src="http://gispathway.com/wp-content/uploads/2009/12/adddata_contents.gif" alt="adddata_contents" width="303" height="226" /></a>One type of data that can be added in that will preserve the symbology is ArcGIS Layers and ArcGIS Layer Packages.  The symbology that is create in ArcMap can be shown in ArcGIS Explorer.  Since explorer has limited symbology, this helps take visualization to the next level.  The difference between ArcGIS Layers and  ArcGIS Layer Packages is that the packages area created so that both the data and symbology can be easily move from one computer to another computer in one file package.  The Layers can be used, but the data must reside on the some computer.</p>
<p><span style="text-decoration: underline;">To create a layer package:</span></p>
<p><strong>1. Right click the desired layer from the table of contents.</strong></p>
<p><strong>2. Click Create Layer Package&#8230;</strong></p>
<p><strong>3. Designate where to save the file.</strong></p>
<p><strong>4. A conformation of completion will pop up in an alert.</strong></p>
<p>You can then use or send the file however you would like.</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/Layer_pkg.gif"><img class="size-full wp-image-2130 alignnone" title="Layer_pkg" src="http://gispathway.com/wp-content/uploads/2009/12/Layer_pkg.gif" alt="Layer_pkg" width="352" height="474" /></a></p>
<p>This example uses ArcGIS Explorer 900.  If you don&#8217;t have it, download <a title="ArcGIS Explorer 900" href="http://www.esri.com/software/arcexplorer/explorer.html" target="_blank">ArcGIS Explorer 900</a> for free today!<a href="../wp-content/uploads/2009/12/Explorer_Blue.gif"><br />
</a><a href="../wp-content/uploads/2009/12/Explorer_Blue.gif"> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2010/01/11/arcgis-explorer-adding-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArcGIS Explorer &#8211; Change Color Scheme</title>
		<link>http://gispathway.com/2010/01/04/arcgis-explorer-change-color-scheme/</link>
		<comments>http://gispathway.com/2010/01/04/arcgis-explorer-change-color-scheme/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 12:00:03 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[Color Scheme]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Ribbon Toolbar]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=2101</guid>
		<description><![CDATA[The color scheme of ArcGIS Explorer can become boring after some time.  Fortunately, you are not stuck with the blue color.  In a few simple steps, the color scheme can be changed to either blue, aqua, black, or silver.  This will help liven your desktop up a bit or even add that special touch to [...]]]></description>
			<content:encoded><![CDATA[<p>The color scheme of ArcGIS Explorer can become boring after some time.  Fortunately, you are not stuck with the blue color.  In a few simple steps, the color scheme can be changed to either blue, aqua, black, or silver.  This will help liven your desktop up a bit or even add that special touch to your presentation.  This same concept is very similar to the Office 2007 products with the ribbon toolbar.  Try it out on Explorer and you favorite Office 2007 products.</p>
<p><strong>1. Click the Explorer Button (Office Button).</strong></p>
<p><strong>2. Click ArcGIS Explorer Options.</strong></p>
<p><strong><a href="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Menu.gif"><img class="size-full wp-image-2103 alignnone" title="Explorer_Menu" src="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Menu.gif" alt="" width="334" height="262" /></a><br />
</strong></p>
<p><strong>3. Under the Common tab, choose your desired color scheme.</strong></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Options.gif"><img class="size-full wp-image-2102 alignnone" title="Explorer_Options" src="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Options.gif" alt="" width="483" height="391" /></a></p>
<p>Blue Color Scheme</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Blue.gif"><img class="alignnone" title="Explorer_Blue" src="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Blue.gif" alt="Explorer_Blue" width="559" height="470" /></a></p>
<p>Black Color Scheme</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Black.gif"><img class="size-full wp-image-2105 alignnone" title="Explorer_Black" src="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Black.gif" alt="Explorer_Black" width="559" height="470" /></a></p>
<p>This example uses ArcGIS Explorer 900.  If you don&#8217;t have it, download <a title="ArcGIS Explorer 900" href="http://www.esri.com/software/arcexplorer/explorer.html" target="_blank">ArcGIS Explorer 900</a> for free today!<a href="http://gispathway.com/wp-content/uploads/2009/12/Explorer_Blue.gif"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2010/01/04/arcgis-explorer-change-color-scheme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Polygons to Points in ArcGIS</title>
		<link>http://gispathway.com/2009/10/12/convert-polygons-to-points-in-arcgis/</link>
		<comments>http://gispathway.com/2009/10/12/convert-polygons-to-points-in-arcgis/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 13:00:56 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Data Management]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[Analysis]]></category>
		<category><![CDATA[ArcMap]]></category>
		<category><![CDATA[Attribute Table]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[Points]]></category>
		<category><![CDATA[Polygons]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=2002</guid>
		<description><![CDATA[During analysis it is important to keep various techniques at hand as the data sometime requires creative thinking to carry out certain tasks in a feasible way.  One of these techniques to have handy is the ability to convert polygons to points. In ArcInfo there is a tool that allows this to be done. ArcToolBox [...]]]></description>
			<content:encoded><![CDATA[<p>During analysis it is important to keep various techniques at hand as the data sometime requires creative thinking to carry out certain tasks in a feasible way.  One of these techniques to have handy is the ability to convert polygons to points.</p>
<p>In ArcInfo there is a tool that allows this to be done.</p>
<p><strong>ArcToolBox &#8211;&gt;Data Management Tools &#8211;&gt;Features &#8211;&gt;Feature to Point</strong></p>
<p>However, if you have a lower license, there is a simple workaround.  (The headings are links to specific demonstrations of these steps.)</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/10/Poly2Pts1.jpg"><img class="size-full wp-image-2009 alignnone" title="Poly2Pts1" src="http://gispathway.com/wp-content/uploads/2009/10/Poly2Pts1.jpg" alt="Poly2Pts1" width="265" height="240" /></a></p>
<p><span style="text-decoration: underline;"><strong><a rel="bookmark" href="../2008/10/30/calculate-latlong-for-shapefile/" target="_blank">Calculate Lat/Long for Shapefile</a></strong></span></p>
<p><strong>1.</strong> Add X and Y fields to your polygon attribute table</p>
<p><strong>2.</strong> Calculate the X and Y coordinates</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/10/Poly2Pts2.jpg"><img class="size-medium wp-image-2010 alignnone" title="Poly2Pts2" src="http://gispathway.com/wp-content/uploads/2009/10/Poly2Pts2-300x181.jpg" alt="Poly2Pts2" width="300" height="181" /></a></p>
<p><strong>3.</strong> Export the attribute table to a new *.dbf</p>
<p><span style="text-decoration: underline;"><strong><a rel="bookmark" href="../2008/10/20/arcmap-tip-create-point-file-from-xy-data/" target="_blank">Create Point File from XY Data</a></strong></span></p>
<p><strong>4.</strong> Add new table to map document</p>
<p><strong>5.</strong> Add XY event layer</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/10/Poly2Pts3.jpg"><img class="size-medium wp-image-2011 alignnone" title="Poly2Pts3" src="http://gispathway.com/wp-content/uploads/2009/10/Poly2Pts3-300x300.jpg" alt="Poly2Pts3" width="171" height="171" /></a></p>
<p><strong>6.</strong> Export temporary XY event layer file to permanent file</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/10/Poly2Pts4.jpg"><img class="size-medium wp-image-2012 alignnone" title="Poly2Pts4" src="http://gispathway.com/wp-content/uploads/2009/10/Poly2Pts4-300x239.jpg" alt="Poly2Pts4" width="300" height="239" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2009/10/12/convert-polygons-to-points-in-arcgis/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Simplify Your Workflow with the Spatial Join Tool</title>
		<link>http://gispathway.com/2009/08/17/simplify-your-workflow-with-the-spatial-join-tool/</link>
		<comments>http://gispathway.com/2009/08/17/simplify-your-workflow-with-the-spatial-join-tool/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 13:00:55 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[Attribute Table]]></category>
		<category><![CDATA[Count]]></category>
		<category><![CDATA[point]]></category>
		<category><![CDATA[polygon]]></category>
		<category><![CDATA[Spatial Join]]></category>
		<category><![CDATA[Sum]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=1955</guid>
		<description><![CDATA[One of the benefits of GIS is the ability to summarize relationships between different types of data. In this example, a relationship is determined between students and study sectors.  Students being a point layer and study sectors being a polygon layer.  Determining the number of students within each sector is easy to do by simply [...]]]></description>
			<content:encoded><![CDATA[<p>One of the benefits of GIS is the ability to summarize relationships between different types of data.</p>
<p>In this example, a relationship is determined between students and study sectors.  Students being a point layer and study sectors being a polygon layer.  Determining the number of students within each sector is easy to do by simply counting the visible points for each area.  The is not always correct as some points can fall on top of each other.  You can use the select by location tool to find the exact number of student within each sector, but this can become time consuming if you have a lot of areas to cover.  The solution to this problem is the spatial join tool.  This tool determines the spatial relationship between the polygons and points.  A point count for each polygon is created and placed in the attribute table.</p>
<p>Here is a demonstration video:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/v-ekaL6hNRo&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/v-ekaL6hNRo&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><em>Note: Videos are broadcast through </em><a href="http://youtube.com/" target="_blank"><em>youtube.com</em></a><em>.  Some browsers may block this content.</em></p>
<p>Download the video to your computer: <a title="ArcMap Spatial Join Tool" href="../wp-content/uploads/2009/08/ArcMap_Spatial_Join_Tool.wmv" target="_self">ArcMap Spatial Join Tool</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2009/08/17/simplify-your-workflow-with-the-spatial-join-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily Paste ArcGIS Maps into Documents</title>
		<link>http://gispathway.com/2009/07/30/easily-paste-arcgis-maps-into-documents/</link>
		<comments>http://gispathway.com/2009/07/30/easily-paste-arcgis-maps-into-documents/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 19:09:26 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Cartography]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[ArcMap]]></category>
		<category><![CDATA[Clipboard]]></category>
		<category><![CDATA[Copy]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Map]]></category>
		<category><![CDATA[Paste]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=1859</guid>
		<description><![CDATA[Placing maps into documents such as Microsoft Word, Excel, Publisher, and PowerPoint can become a pain at times.  The usual process involves exporting the map into some type of image file.  The file is then inserted into your desired document.  For some projects this is fine and may even be necessary; however for those quick [...]]]></description>
			<content:encoded><![CDATA[<p>Placing maps into documents such as Microsoft Word, Excel, Publisher, and PowerPoint can become a pain at times.  The usual process involves exporting the map into some type of image file.  The file is then inserted into your desired document.  For some projects this is fine and may even be necessary; however for those quick put-together projects there is an easier way.  ArcMap has a menu item that allows your current extent (data view) or page layout to be copied to the clipboard.  The image can then be pasted into your desired documents.  This goes beyond the Microsoft Suite and can even be imported into a graphics programs.  The benefits that this tip provides includes a savings in time and storage space.</p>
<p><span style="text-decoration: underline;"><strong>To copy the map to the clipboard:</strong></span></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/07/MapDoc.jpg"><img class="size-full wp-image-1864 alignnone" title="MapDoc" src="http://gispathway.com/wp-content/uploads/2009/07/MapDoc.jpg" alt="MapDoc" width="388" height="304" /></a></p>
<p><strong>1. Click Edit -&gt; Copy Map to Clipboard</strong></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/07/EditMenu.jpg"><img class="size-full wp-image-1863 alignnone" title="EditMenu" src="http://gispathway.com/wp-content/uploads/2009/07/EditMenu.jpg" alt="EditMenu" width="183" height="339" /></a></p>
<p><strong>2. See map image on clipboard</strong></p>
<p><img class="size-full wp-image-1860 alignnone" title="Clipboard" src="http://gispathway.com/wp-content/uploads/2009/07/Clipboard.jpg" alt="Clipboard" width="193" height="193" /></p>
<p><strong>3. Paste image into document.  Click image on clipboard or press Ctrl-V.</strong></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/07/WordPaste.jpg"><img class="size-full wp-image-1861 alignnone" title="WordPaste" src="http://gispathway.com/wp-content/uploads/2009/07/WordPaste.jpg" alt="WordPaste" width="416" height="333" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2009/07/30/easily-paste-arcgis-maps-into-documents/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using the Layers Overview Window in ArcMap</title>
		<link>http://gispathway.com/2009/07/07/using-the-layers-overview-window-in-arcmap/</link>
		<comments>http://gispathway.com/2009/07/07/using-the-layers-overview-window-in-arcmap/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 14:00:13 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[ArcMap]]></category>
		<category><![CDATA[Layers]]></category>
		<category><![CDATA[Overview]]></category>
		<category><![CDATA[Window]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=1760</guid>
		<description><![CDATA[A valuable tool in ArcMap that sometimes goes unnoticed is the Layers Overview Window.  When working on a map while zoomed in it is very easy to loose perspective of the actual location as compared to the overall map.  This can also be true when analyzing a feature class by zooming to selected records from [...]]]></description>
			<content:encoded><![CDATA[<p>A valuable tool in ArcMap that sometimes goes unnoticed is the Layers Overview Window.  When working on a map while zoomed in it is very easy to loose perspective of the actual location as compared to the overall map.  This can also be true when analyzing a feature class by zooming to selected records from the attribute table.  You usually have to stop and zoom out a significant amount to determine the location.  However, with the Layers Overview Window you can always know the area for which you are working.</p>
<p>This tool can be easily found and utilized with just a few simple steps.</p>
<p><strong>1. Click </strong><strong>Overview</strong> from <strong>Window</strong> <strong>Menu</strong>.</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/07/ovw_menu.jpg"><img class="size-full wp-image-1764 alignnone" title="ovw_menu" src="http://gispathway.com/wp-content/uploads/2009/07/ovw_menu.jpg" alt="ovw_menu" width="193" height="176" /></a></p>
<p><strong>2. </strong>Next <strong>change the properties</strong> by <strong>right clicking on the Overview Window header</strong> to open the properties window.  Then change the desired settings.</p>
<p>Here you can change your <strong>reference layer</strong>, <strong>extent symbol </strong>and<strong> background color</strong>.</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/07/ovw_properties.jpg"><img class="size-full wp-image-1762 alignnone" title="ovw_properties" src="http://gispathway.com/wp-content/uploads/2009/07/ovw_properties.jpg" alt="ovw_properties" width="386" height="262" /></a></p>
<p>Here is an example of the Layer Overview window in use.  The Overview window can also be resized as well.</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/07/ovw_map.jpg"><img class="size-full wp-image-1763 alignnone" title="ovw_map" src="http://gispathway.com/wp-content/uploads/2009/07/ovw_map.jpg" alt="ovw_map" width="516" height="446" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2009/07/07/using-the-layers-overview-window-in-arcmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Thumbnails in ArcCatalog</title>
		<link>http://gispathway.com/2009/05/18/create-thumbnails-in-arccatalog/</link>
		<comments>http://gispathway.com/2009/05/18/create-thumbnails-in-arccatalog/#comments</comments>
		<pubDate>Mon, 18 May 2009 14:15:55 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[ArcCatalog]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[GIS Tips]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Preview]]></category>
		<category><![CDATA[Shapefile]]></category>
		<category><![CDATA[Thumbnail]]></category>

		<guid isPermaLink="false">http://gispathway.com/?p=1718</guid>
		<description><![CDATA[ArcCatalog has so many features, it is difficult to keep up with them all.  One that is very helpful is the Create Thumbnail button.  This allows you to create a thumbnail image of a file so that it can be viewed from the Contents Tab instead of the default thumbnail.  The below example shows its [...]]]></description>
			<content:encoded><![CDATA[<p>ArcCatalog has so many features, it is difficult to keep up with them all.  One that is very helpful is the <strong>Create Thumbnail</strong> button.  This allows you to create a thumbnail image of a file so that it can be viewed from the <strong>Contents Tab</strong> instead of the default thumbnail.  The below example shows its application for a shapefile, but this can be applied to a variety of file types.  This quick snapshot can help the browsing process when you are looking for that certain file.</p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/05/preview.jpg"><img class="size-full wp-image-1721 alignnone" title="preview" src="http://gispathway.com/wp-content/uploads/2009/05/preview.jpg" alt="preview" width="175" height="172" /></a></p>
<p>Follow these simple steps to create a thumbnail image for a file in ArcCatalog:</p>
<p><strong>1. View the shapefile with the Preview Tab.</strong></p>
<p><strong>2. Zoom to desired view.</strong></p>
<p>ArcCatalog gives you a few navigation tools.  You can create a full extent view or zoom in on certain features.<strong><br />
</strong></p>
<p><strong>3. Press the create thumbnail button from the toolbar.</strong></p>
<p><a href="http://gispathway.com/wp-content/uploads/2009/05/thumbnailbutton.jpg"><img class="size-full wp-image-1720 alignnone" title="thumbnailbutton" src="http://gispathway.com/wp-content/uploads/2009/05/thumbnailbutton.jpg" alt="thumbnailbutton" width="500" height="348" /></a></p>
<p><strong>4. View the newly created thumbnail under the Contents Tab.</strong></p>
<p><strong></strong><a href="http://gispathway.com/wp-content/uploads/2009/05/previewthumbnail.jpg"><img class="size-full wp-image-1722 alignnone" title="previewthumbnail" src="http://gispathway.com/wp-content/uploads/2009/05/previewthumbnail.jpg" alt="previewthumbnail" width="175" height="166" /></a></p>
<p><span style="text-decoration: underline;"><strong>Learn more about ArcGIS in these excellent books:</strong></span></p>
<p><strong><a href="http://www.amazon.com/gp/product/1589481275?ie=UTF8&amp;tag=gimare-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=1589481275" target="_blank">GIS Tutorial</a></strong></p>
<p><a href="http://www.amazon.com/gp/product/158948083X?ie=UTF8&amp;tag=gimare-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=158948083X" target="_blank"><strong>Getting to Know ArcGIS</strong></a><span style="text-decoration: underline;"><strong><br />
</strong></span></p>
<p><a href="http://www.amazon.com/gp/product/1589481275?ie=UTF8&amp;tag=gimare-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=1589481275" target="_blank"><img class="alignnone size-medium wp-image-340" title="1589481275" src="http://gispathway.com/wp-content/uploads/2008/11/1589481275.jpg" alt="" width="106" height="128" /></a><a href="http://www.amazon.com/gp/product/158948083X?ie=UTF8&amp;tag=gimare-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=158948083X" target="_blank"><img class="alignnone size-medium wp-image-323" title="158948083x" src="http://gispathway.com/wp-content/uploads/2008/11/158948083x.jpg" alt="" width="144" height="144" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gispathway.com/2009/05/18/create-thumbnails-in-arccatalog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

