<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Geospatial Python</title>
	<atom:link href="http://geospatialpython.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://geospatialpython.wordpress.com</link>
	<description>Geoprocessing scripts to get you started</description>
	<lastBuildDate>Wed, 23 Mar 2011 03:18:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='geospatialpython.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Geospatial Python</title>
		<link>http://geospatialpython.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://geospatialpython.wordpress.com/osd.xml" title="Geospatial Python" />
	<atom:link rel='hub' href='http://geospatialpython.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Create a Polygon Shapefile using Python</title>
		<link>http://geospatialpython.wordpress.com/2010/02/25/create-polygon-with-python/</link>
		<comments>http://geospatialpython.wordpress.com/2010/02/25/create-polygon-with-python/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 02:33:08 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[Create shapefile]]></category>
		<category><![CDATA[geoprocessing]]></category>
		<category><![CDATA[Polygon]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[shapefile]]></category>

		<guid isPermaLink="false">http://geospatialpython.wordpress.com/?p=22</guid>
		<description><![CDATA[I have been traveling for the last few weeks and did not update this site as much as I would have liked. In this script we will create the final feature class using Python, a polygon. As I posted previously all the shapes in ArcGIS are made up of points. Lines are just points that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geospatialpython.wordpress.com&amp;blog=11137242&amp;post=22&amp;subd=geospatialpython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been traveling for the last few weeks and did not update this site as much as I would have liked. In this script we will create the final feature class using Python, a polygon. As I posted previously all the shapes in ArcGIS are made up of points. Lines are just points that are connected by, wait for it..lines. Polygons are just enclosed areas defined by points. Here is a simple script that creates a triangle.</p>
<p><span style="color:#0000ff;">import</span> arcgisscripting<br />
gp = arcgisscripting.create()</p>
<p><span style="color:#0000ff;">try:</span><br />
outFolder = <span style="color:#ba4592;">r&#8221;C:\Temp&#8221;</span><br />
outFile = <span style="color:#ba4592;">&#8220;Polygon.shp&#8221;</span><br />
gp.workspace = outFolder</p>
<p><span style="color:#008000;"> # When creating a polygon the coordinates for the starting point must be the same as the coordinates for the ending point.</span></p>
<p><span style="color:#008000;"># This is because all polygons must close. So below there are three sets of X,Y coordinates but we will enter four points into the array. Despite the four points the resulting      shape will be a triangle, again this is because the first and last points are the same.</span></p>
<p><span style="color:#008000;"># The first set of coordinates will be used for the starting and ending point.</span></p>
<p>StartandEndXcoord = -66.068999<br />
StartandEndYcoord = 18.398997</p>
<p>PointOneXcoord = -64.779165<br />
PointOneYcoord = 32.28903</p>
<p>PointTwoXcoord = -80.270216<br />
PointTwoYcoord = 25.832124</p>
<p>sr = gp.CreateSpatialReference(&#8220;C:\Program Files\ArcGIS\Coordinates Systems\Geographic Coordinates Systems\World\WGS 1984.prj&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, &#8220;#&#8221;)</p>
<p>gp.CreateFeatureClass (outFolder, outFile, &#8220;Polygon&#8221;, &#8220;#&#8221;,&#8221;#&#8221;,&#8221;#&#8221;, sr)<br />
cur = gp.InsertCursor (outFile)<br />
row = cur.NewRow()</p>
<p>PolygonArray = gp.CreateObject (&#8220;Array&#8221;)<br />
pnt = gp.CreateObject (&#8220;Point&#8221;)</p>
<p>pnt.x = StartandEndXcoord<br />
pnt.y = StartandEndYcoord<br />
PolygonArray.add(pnt)</p>
<p>pnt.x = PointOneXcoord<br />
pnt.y = PointOneYcoord<br />
PolygonArray.add(pnt)</p>
<p>pnt.x = PointTwoXcoord<br />
pnt.y = PointTwoYcoord<br />
PolygonArray.add(pnt)</p>
<p>pnt.x = StartandEndXcoord<br />
pnt.y = StartandEndYcoord<br />
PolygonArray.add(pnt)</p>
<p>row.shape = PolygonArray<br />
cur.InsertRow(row)</p>
<p><span style="color:#0000ff;">del</span> row, cur<br />
<span style="color:#0000ff;"><br />
except:</span><br />
gp.GetMessage(2)</p>
<p style="margin-bottom:0;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geospatialpython.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geospatialpython.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geospatialpython.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geospatialpython.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geospatialpython.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geospatialpython.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geospatialpython.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geospatialpython.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geospatialpython.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geospatialpython.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geospatialpython.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geospatialpython.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geospatialpython.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geospatialpython.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geospatialpython.wordpress.com&amp;blog=11137242&amp;post=22&amp;subd=geospatialpython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geospatialpython.wordpress.com/2010/02/25/create-polygon-with-python/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed9786a05fa8a8ddd84f81efa94e7998?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Morgan</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple Script for Creating a Polyline Shapefile</title>
		<link>http://geospatialpython.wordpress.com/2010/02/03/simple-python-script-for-creating-a-polyline-shapefile/</link>
		<comments>http://geospatialpython.wordpress.com/2010/02/03/simple-python-script-for-creating-a-polyline-shapefile/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 00:59:29 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[geoprocessing]]></category>
		<category><![CDATA[polyline]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[shapefile]]></category>

		<guid isPermaLink="false">http://geospatialpython.wordpress.com/2010/02/03/gp-post/</guid>
		<description><![CDATA[This example of basic python scripting shows how to create a line between two points. ESRI has a good Technical Article about how to create a line using python but theirs is a little more complex. Keeping in line with my goal of making things as simple as possible this script is the most basic [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geospatialpython.wordpress.com&amp;blog=11137242&amp;post=13&amp;subd=geospatialpython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This example of basic python scripting shows how to create a line between two points. ESRI has a good Technical Article about how to create a line using python but theirs is a little more complex. Keeping in line with my goal of making things as simple as possible this script is the most basic form of creating a line. The code is very similar to my last post on how to create a point, that is because all the complex shapes in ArcGIS are really just points with connecting lines. The new object in this script is the Array. To keep this simple, you can think of an Array as a place to store the point coordinates before you draw a line connecting them. So as your script reads in a set of coordinates for a point you store them in an Array. Then once you have all the points that make up the line in the Array the script tells the geoprocesser to create the line connecting the points. This time I only added very simple comments, this is closer to what scripts you find on the internet would look like.  I have also left off any error handling, this was to place the focus on the most basic parts go the script. Don&#8217;t worry it will be back next time.</p>
<p><span style="color:#0000ff;"><strong>import</strong></span> sys, string, os, arcgisscripting<br />
gp = arcgisscripting.create()<br />
gp.OverWriteOutput = True</p>
<p><span style="color:#008000;"># Set output folder and file name</span></p>
<p>outFolder = <span style="color:#cc99ff;">r&#8221;C:\Temp&#8221;</span><br />
outFile = <span style="color:#cc99ff;">&#8220;SingleLine.shp&#8221;</span></p>
<p><span style="color:#008000;"># Set workspace</span><br />
gp.workspace = outFolder</p>
<p><span style="color:#008000;"># Assign the x and y coordinates values to the starting variables</span></p>
<p>StartXcoord = -63.650997<br />
StartYcoord = 44.679996</p>
<p><span style="color:#008000;"># Assign the x and y coordinates values to the ending variables</span><br />
EndXcoord = -74.011221<br />
EndYcoord = 40.663962</p>
<p><span style="color:#008000;"># Assign the spatial reference</span><br />
sr = gp.CreateSpatialReference (&#8220;C:\Program Files\ArcGIS\Coordinate Systems\Geographic Coordinate Systems\World\WGS 1984.prj&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, &#8220;#&#8221;)</p>
<p><span style="color:#008000;"># Create the Feature class to which the line will be added</span><br />
gp.CreateFeatureClass (outFolder, outFile, &#8220;POLYLINE&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, sr)</p>
<p><span style="color:#008000;"># Create the insert cursor and point it at the file just created</span><br />
cur = gp.InsertCursor (outFile)</p>
<p><span style="color:#008000;"># Move cursor to point at the first empty row in the file</span></p>
<p>row = cur.NewRow()</p>
<p><span style="color:#008000;"># Create the Array object to store the points for the line</span><br />
LineArray = gp.CreateObject(&#8220;Array&#8221;)</p>
<p><span style="color:#008000;"># Create the Point object to store the coordinates for the points</span></p>
<p>pnt = gp.CreateObject (&#8220;Point&#8221;)</p>
<p><span style="color:#008000;"># Set the x &amp; y start coordinates</span><br />
pnt.x = StartXcoord<br />
pnt.y = StartYcoord</p>
<p><span style="color:#008000;"># Add the point to the Array</span></p>
<p>LineArray.add(pnt)</p>
<p><span style="color:#008000;"># Set the x &amp; y end coordinates</span><br />
pnt.x = EndXcoord<br />
pnt.y = EndYcoord</p>
<p><span style="color:#008000;"># Again add the point to the Array</span></p>
<p>LineArray.add(pnt)</p>
<p><span style="color:#008000;"># Set the shape property of the first row in the shapefile to the values held in the LineArray. Because we had to defined the shapefile type (polyline) when using CreateFeatureClass the shape property of file knows that it should create lines between each point in the array.</span></p>
<p>row.shape = LineArray</p>
<p><span style="color:#008000;"># Insert the row into the output shapefile</span><br />
cur.InsertRow(row)</p>
<p><span style="color:#008000;"># Clean up</span><br />
<span style="color:#0000ff;"><strong>del</strong></span> row, cur</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geospatialpython.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geospatialpython.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geospatialpython.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geospatialpython.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geospatialpython.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geospatialpython.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geospatialpython.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geospatialpython.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geospatialpython.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geospatialpython.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geospatialpython.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geospatialpython.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geospatialpython.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geospatialpython.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geospatialpython.wordpress.com&amp;blog=11137242&amp;post=13&amp;subd=geospatialpython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geospatialpython.wordpress.com/2010/02/03/simple-python-script-for-creating-a-polyline-shapefile/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed9786a05fa8a8ddd84f81efa94e7998?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Morgan</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating a Point Shapefile with Python</title>
		<link>http://geospatialpython.wordpress.com/2010/01/24/creating-a-point-shapefile-with-python/</link>
		<comments>http://geospatialpython.wordpress.com/2010/01/24/creating-a-point-shapefile-with-python/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 05:27:00 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[shapefile create point Python geoprocessing]]></category>

		<guid isPermaLink="false">http://geospatialpython.wordpress.com/2010/01/24/creating-a-point-shapefile-with-python/</guid>
		<description><![CDATA[Ok, for the first example of basic geoprocessing code created in python, I have created a small script that creates a point shapefile from and x and y coordinate. This code is intended to be very basic, and therefore can&#8217;t be attached to a toolbox without some small changes. I plan on posting about how [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geospatialpython.wordpress.com&amp;blog=11137242&amp;post=12&amp;subd=geospatialpython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ok, for the first example of basic geoprocessing code created in python, I have created a small script that creates a point shapefile from and x and y coordinate. This code is intended to be very basic, and therefore can&#8217;t be attached to a toolbox without some small changes. I plan on posting about how to add code to a toolbox later on.<br />
I am making the assumption that you have at least some basic understanding of how ArcGIS and python interact. I will not be explaining all of the details of objects and methods, but I will be providing examples of basic scripts. I have added a lot of comments, far more than I do when scripting for my self, to try to make things as clear as possible. So here is how to create a point shapefile from Python.</p>
<p><span style="color:#888888;">########################################################<br />
##Name: Create Single Point<br />
## Source Name: CreateSinglePoint.py<br />
## Version: ArcGIS 9.2<br />
## Author: Morgan<br />
## Usage: CreateSinglePoint &lt;outFolder&gt;, &lt;outFile&gt;<br />
## Required Arguments: Folder to save the shapefile into and the name of the shapefile to create.<br />
## Optional Arguments: None<br />
## Description: This script is a very basic demonstration of how to turn a single x,y ##coordinate pare into a point shapefile<br />
##The coordinates supplied are in the WGS_84 coordinate system. This script is not ##setup to be imported directly into an ArcGIS toolbox.<br />
##  Date January 18th 2010<br />
########################################################</span></p>
<p><span style="color:#008000;"># Import required modules</span><br />
<span style="color:#0000ff;">import</span> sys, os, string, arcgisscripting</p>
<p><span style="color:#008000;"># Create the Geoprocesser</span><br />
gp = arcgisscripting.create()</p>
<p><span style="color:#00cc00;"><span style="color:#008000;"># By Setting OverWriteOutput to &#8220;True&#8221; the script will predictably, over write any files with the same name in the same directory </span><br />
</span>gp.OverWriteOutput = True</p>
<p><span style="color:#008000;"># The Try statement is use to handle errors. It allows you to decide what happens when your script encounters a problem and wants to crash. If an error is found within the try indentation you script will jump to the Except statement and run what ever code this there before ending.</span></p>
<p><span style="color:#0000ff;">try:</span><br />
<span style="color:#008000;"># Set local variables. Here is where we set where the file will be saved and what the new point file should be named. Setting the workspace is a good habit to get into because as your scripts get more complex it will help simplify file management.</span></p>
<p>outFolder = r&#8221;C:\Temp&#8221;<br />
outFile = &#8220;SinglePoint.shp&#8221;<br />
gp.Workspace = outFolder</p>
<p><span style="color:#008000;"># The x and y coordinates are also local variables. In this scrip they are set in the script. In the future I will post on how to read the values out of a text file.</span></p>
<p>xCoord = -73.01543847<br />
yCoord =  45.34837726</p>
<p><span style="color:#008000;"># It is very important that every file you create has a spatial reference. Every place I have ever used ArcGIS has always used the default install location for storing the Coordinate definition files. That is why I am setting the spatial reference using an absolute path.</span></p>
<p>sr = gp.CreateSpatialReference (&#8220;C:\Program Files\ArcGIS\Coordinate Systems\Geographic Coordinate Systems\World\WGS 1984.prj&#8221;)</p>
<p><span style="color:#008000;"># The create feature class tool comes from  the Data Management toolbox. This is what I will use to create an empty shapefile. It is into this shapefile that we will add our point.</span></p>
<p>gp.CreateFeatureClass_managment (outFolder, outFile, &#8220;Point&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, &#8220;#&#8221;, sr)</p>
<p><span style="color:#008000;"># Now all we need to do is insert the point into our new shapefile. To do that we need a cursor. ESRI defines a cursor as a &#8220;data access object&#8221;. What that means is that in order to interact with the properties of a file, like adding new features, changing or adding records to a attribute table, you need to create a cursor. There are three types of cursors, Insert, Update, and Search. When you want to create points, Lines (two or more connected points), or Polygons (Several points enclosing an area) you need a cursor. Also you can see that in python all the common file types are made up of points. You can think of the cursor as an arrow point to a record in the attribute table. If you want to insert data into the table, and create a feature, you need to create a new row. This is done with the .NewRow() method. Next you need to create a point object and set it&#8217;s x, y values to the location where you want it to sit. In our case this is the values held in the xCoord, and yCoord variables. The last thing you need to do is to insert the new row into the file. Here is the code to do all that. </span></p>
<p>cur = gp.InsertCurosr(outFile)<br />
row = cur.NewRow()<br />
pnt = gp.CreateObject(&#8220;Point&#8221;)<br />
pnt.x = xCoord<br />
pnt.y = yCoord</p>
<p>row.shape = pnt<br />
cur.InsertRow(row)</p>
<p><span style="color:#008000;"># Clean up. You always want to delete the cursor and row objects when you are done using them. This will release the memory the computer has set aside to hold these data.</span></p>
<p><span style="color:#00cc00;"> </span> <span style="color:#0000ff;">del</span> cur, row<br />
<span style="color:#0000ff;">Except:<br />
Print</span> &#8220;Error!  There is something wrong with your script.&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geospatialpython.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geospatialpython.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geospatialpython.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geospatialpython.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geospatialpython.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geospatialpython.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geospatialpython.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geospatialpython.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geospatialpython.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geospatialpython.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geospatialpython.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geospatialpython.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geospatialpython.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geospatialpython.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geospatialpython.wordpress.com&amp;blog=11137242&amp;post=12&amp;subd=geospatialpython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geospatialpython.wordpress.com/2010/01/24/creating-a-point-shapefile-with-python/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed9786a05fa8a8ddd84f81efa94e7998?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Morgan</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome, One and All</title>
		<link>http://geospatialpython.wordpress.com/2009/12/30/welcome-one-and-all/</link>
		<comments>http://geospatialpython.wordpress.com/2009/12/30/welcome-one-and-all/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 04:11:22 +0000</pubDate>
		<dc:creator>Morgan</dc:creator>
				<category><![CDATA[Welcome]]></category>

		<guid isPermaLink="false">http://geospatialpython.wordpress.com/?p=4</guid>
		<description><![CDATA[This site will be up and running very soon. I hope to bring you some basic python scripts to use in ESRI&#8217;s ArcGIS (did you get that google). When I started to teach myself how to write geoprocessing scripts, I kept wishing there was a site with examples of how to preform some basic tasks. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geospatialpython.wordpress.com&amp;blog=11137242&amp;post=4&amp;subd=geospatialpython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This site will be up and running very soon. I hope to bring you some basic python scripts to use in <a href="http://esri.com" target="_blank">ESRI&#8217;s ArcGIS</a> (did you get that google). When I started to teach myself how to write geoprocessing scripts, I kept wishing there was a site with examples of how to preform some basic tasks. I wanted to know how to create a point or line, and how to loop though a group of files in a folder. The original impetus for learning to script, was to be able to batch process, something that was difficult to do in model builder. I hope you will find this site informative and that I can help you lean to script in python.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geospatialpython.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geospatialpython.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geospatialpython.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geospatialpython.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geospatialpython.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geospatialpython.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geospatialpython.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geospatialpython.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geospatialpython.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geospatialpython.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geospatialpython.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geospatialpython.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geospatialpython.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geospatialpython.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geospatialpython.wordpress.com&amp;blog=11137242&amp;post=4&amp;subd=geospatialpython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geospatialpython.wordpress.com/2009/12/30/welcome-one-and-all/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed9786a05fa8a8ddd84f81efa94e7998?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Morgan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
