<?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>Not Enough Satellites</title>
	<atom:link href="http://nesatellites.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nesatellites.wordpress.com</link>
	<description>Log of things I find useful and interesting.</description>
	<lastBuildDate>Wed, 14 Oct 2009 19:16:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nesatellites.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Not Enough Satellites</title>
		<link>http://nesatellites.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nesatellites.wordpress.com/osd.xml" title="Not Enough Satellites" />
	<atom:link rel='hub' href='http://nesatellites.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Street Label Query</title>
		<link>http://nesatellites.wordpress.com/2009/10/14/street-label-query/</link>
		<comments>http://nesatellites.wordpress.com/2009/10/14/street-label-query/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 19:15:52 +0000</pubDate>
		<dc:creator>mbrown42</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[street label query ramp turnaround expression]]></category>

		<guid isPermaLink="false">http://nesatellites.wordpress.com/?p=51</guid>
		<description><![CDATA[Here is how to apply a saved query to filter some unnecessary street labels. This is a lot quicker than converting to annotation just to remove one or two extraneous labels. I&#8217;ve saved an SQL query that I like to apply each time I label streets. Over the years I think I&#8217;ve identified most of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=51&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="LessonContent">
<div class="LessonSummary">
<p>Here is how to apply a saved query to filter some unnecessary street labels. This is a lot quicker than converting to annotation just to remove one or two extraneous labels. <span id="more-51"></span>I&#8217;ve saved an SQL query that I like to apply each time I label streets. Over the years I think I&#8217;ve identified most of them but if you find additional names you think should be excluded let me know. Send me an email if you would like a current copy of my expression file.</p>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Labeling</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/10/media_1255545599483.png?w=532&#038;h=223" alt="media_1255545599483.png" width="532" height="223" /></div>
<div class="StepInstructions">
<p>First off, open your layer properties by double clicking the City Street layer. Select the Labels tab and choose “Define classes…” from the Method: drop down as shown above. This will display the SQL Query button which we use to load the saved expressions.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Load query</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/10/media_1255545793912.png?w=384&#038;h=447" alt="media_1255545793912.png" width="384" height="447" /></div>
<div class="StepInstructions">
<p>You will see a form similar to the Select by Attributes tool. This is the formed used by ArcGIS to generate SQL queries. The text box near the bottom is where you can type your expressions (if you know SQL) or use the buttons and field names above it to construct an expression using available fields and operators (AND, =, Not, etc…). We wont be doing that today as we already have the query saved to a text file.<br />
Click Load to select the file containing your saved query. If you can&#8217;t see the expression file when you navigate to the proper folder you may have to append &#8220;.exp&#8221; to your text file.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Query details</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/10/media_1255546195642.png?w=384&#038;h=446" alt="media_1255546195642.png" width="384" height="446" /></div>
<div class="StepInstructions">
<p>Here is what the form looks like after loading the SQL query. If you&#8217;re familiar with SQL skip to the next step. Else, let&#8217;s examine some parts of the query&#8230;</p>
<p>First notice the “STREETNAME” text string… this is the location of the value we want to examine within the table of street attributes. You can see the field name in the list at top which shows all available fields within the street attribute table. Each time, the field name is enclosed in quotes (“). The value within the field is located within apostrophes (&#8216;), for example &#8216;RIGHT TURN&#8217; is a value within the “STREETNAME” field. We use (&lt;&gt;) since we dont want RIGHT TURN labeles. AND is used most often of all the Boolean Operators but notice the first visible line of the query has the string “STREETNAME” NOT LIKE &#8216;RAMP%&#8217;. The % filters out all instances of RAMP like &#8216;RAMP A&#8217; or &#8216;RAMP B&#8217;. CAREFUL since this also removes strings like &#8216;RAMPART&#8217; which may be a value you want included in your map! This isn&#8217;t a tutorial on SQL expressions but you can see how understanding how the query is evaluated by the computer can keep you from making a simple mistake as with the &#8216;RAMPART&#8217; example. If you would like some info on SQL expressions, send me an email and I&#8217;ll put something together. In the meantime, I invite you to edit this example to see how the results vary with different operators. Switch all the ANDs to ORs for example. Try switching only one AND to an OR. Try switching different ANDs to ORs and you will start to get an idea of how the query is evaluated.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Examine the result</h3>
<div class="StepInstructions">
<p>Click &#8220;OK&#8221; to dismiss each dialogue box. It is important to review the result each time you use a SQL expression. In a long expression like this one there will almost always be some unexpected results so carefully evaluate your map to ensure all labels which are neccessary are displayed. If not, you will need to remove one or more expressions within the query.</p>
</div>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nesatellites.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nesatellites.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nesatellites.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nesatellites.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nesatellites.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nesatellites.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nesatellites.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nesatellites.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nesatellites.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nesatellites.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nesatellites.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nesatellites.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nesatellites.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nesatellites.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=51&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nesatellites.wordpress.com/2009/10/14/street-label-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6a53186bebea96d34a4b235c3e6fced?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbrown42</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/10/media_1255545599483.png" medium="image">
			<media:title type="html">media_1255545599483.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/10/media_1255545793912.png" medium="image">
			<media:title type="html">media_1255545793912.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/10/media_1255546195642.png" medium="image">
			<media:title type="html">media_1255546195642.png</media:title>
		</media:content>
	</item>
		<item>
		<title>Check out earmilk.com</title>
		<link>http://nesatellites.wordpress.com/2009/09/21/check-out-earmilk-com/</link>
		<comments>http://nesatellites.wordpress.com/2009/09/21/check-out-earmilk-com/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 03:47:22 +0000</pubDate>
		<dc:creator>mbrown42</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://nesatellites.wordpress.com/?p=45</guid>
		<description><![CDATA[I just found a new music blog called Earmilk. I have been following for a few days now and find myself returning regularly. Found the site through this review for Volcano Choir. I&#8217;m excited for the new CD and glad I ran across them. More recently, I liked this post of Elaquent&#8216;s &#8220;The Love&#8221;. Daily [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=45&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just found a new music blog called <a title="link to Earmilk" href="http://www.earmilk.com" target="_blank">Earmilk</a>. I have been following for a few days now and find myself returning regularly. Found the site through <a title="Link to Volcano Choir review" href="http://www.earmilk.com/2009/09/17/say-hello-volcano-choir/" target="_blank">this </a>review for <a title="Link to Volcano Choir site" href="http://www.myspace.com/volcanochoir" target="_blank">Volcano Choir</a>. I&#8217;m excited for the new CD and glad I ran across them. More recently, I liked <a title="Link to Earmilk post" href="http://www.earmilk.com/2009/09/21/daily-2-chilled-and-ready-to-serve-elaquent/" target="_blank">this </a>post of <a title="Link to Elaquent on myspace" href="http://www.myspace.com/elaquenthiphop" target="_blank">Elaquent</a>&#8216;s &#8220;The Love&#8221;.</p>
<p><a href="http://www.earmilk.com/2009/09/21/daily-2-chilled-and-ready-to-serve-elaquent/">Daily 2% ? Chilled and Ready to Serve [Elaquent] &#8211; earmilk.com</a></p>
<p>Shared via <a href="http://addthis.com">AddThis</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nesatellites.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nesatellites.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nesatellites.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nesatellites.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nesatellites.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nesatellites.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nesatellites.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nesatellites.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nesatellites.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nesatellites.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nesatellites.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nesatellites.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nesatellites.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nesatellites.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=45&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nesatellites.wordpress.com/2009/09/21/check-out-earmilk-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6a53186bebea96d34a4b235c3e6fced?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbrown42</media:title>
		</media:content>
	</item>
		<item>
		<title>See Mystery Lights</title>
		<link>http://nesatellites.wordpress.com/2009/09/14/see-mystery-lights/</link>
		<comments>http://nesatellites.wordpress.com/2009/09/14/see-mystery-lights/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 03:08:23 +0000</pubDate>
		<dc:creator>mbrown42</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[YACHT music Blow]]></category>

		<guid isPermaLink="false">http://nesatellites.wordpress.com/?p=40</guid>
		<description><![CDATA[See Mystery Lights is a great new album by YACHT. I&#8217;m guessing you&#8217;ve already heard of them by now but I was reading their review on Pitchfork and the first line of the review makes reference to Jona Bechtolt of the Blow. Naturally I had to check it out. If you haven&#8217;t heard of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=40&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://pitchfork.com/reviews/albums/13334-see-mystery-lights/"><img src="/Users/mbrown/AppData/Local/Temp/moz-screenshot.png" alt="" /></a><a href="http://pitchfork.com/reviews/albums/13334-see-mystery-lights/"><img class="aligncenter size-full wp-image-41" title="seemysterylights200" src="http://nesatellites.files.wordpress.com/2009/09/seemysterylights200.jpg?w=200&#038;h=200" alt="seemysterylights200" width="200" height="200" /></a>See Mystery Lights is a great new album by YACHT. I&#8217;m guessing you&#8217;ve already heard of them by now but I was reading their review on <a title="Link to Pitchfork" href="http://pitchfork.com/" target="_blank">Pitchfork</a> and the first line of the review makes reference to Jona  Bechtolt of the Blow. Naturally I had to check it out. If you haven&#8217;t heard of the Blow before check them out too. Not sure what I think of See Mystery Lights as a whole but I&#8217;m liking what I&#8217;ve heard so far&#8230; at least enough to post.</p>
<p>Shared via <a href="http://addthis.com">AddThis</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nesatellites.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nesatellites.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nesatellites.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nesatellites.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nesatellites.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nesatellites.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nesatellites.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nesatellites.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nesatellites.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nesatellites.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nesatellites.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nesatellites.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nesatellites.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nesatellites.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=40&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nesatellites.wordpress.com/2009/09/14/see-mystery-lights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6a53186bebea96d34a4b235c3e6fced?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbrown42</media:title>
		</media:content>

		<media:content url="/Users/mbrown/AppData/Local/Temp/moz-screenshot.png" medium="image" />

		<media:content url="http://nesatellites.files.wordpress.com/2009/09/seemysterylights200.jpg" medium="image">
			<media:title type="html">seemysterylights200</media:title>
		</media:content>
	</item>
		<item>
		<title>Free Textbooks A Reality</title>
		<link>http://nesatellites.wordpress.com/2009/08/25/free-textbooks-a-reality/</link>
		<comments>http://nesatellites.wordpress.com/2009/08/25/free-textbooks-a-reality/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 08:20:00 +0000</pubDate>
		<dc:creator>mbrown42</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[textbooks education]]></category>

		<guid isPermaLink="false">http://nesatellites.wordpress.com/?p=33</guid>
		<description><![CDATA[This new post ties in nicely with the beginning of the fall semester. I saw this article over at Ars. If you don&#8217;t already know, I read Ars daily so expect more posts about stuff I read over there. Anyway, the story is about Flat World Knowledge and one of the best business ideas I&#8217;ve [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=33&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This new post ties in nicely with the beginning of the fall semester. I saw <a title="Link to textbook article." href="http://arstechnica.com/tech-policy/news/2009/08/flat-world-schools-textbook-publishers-with-free-web-editions.ars" target="_blank">this</a> article over at <a title="Link to Ars" href="http://www.arstechnica.com" target="_blank">Ars</a>. If you don&#8217;t already know, I read Ars daily so expect more posts about stuff I read over there. Anyway, <a title="Link to textbook article." href="http://arstechnica.com/tech-policy/news/2009/08/flat-world-schools-textbook-publishers-with-free-web-editions.ars" target="_blank">the story</a> is about <a title="Link to Flatworld" href="http://www.flatworldknowledge.com/" target="_blank">Flat World Knowledge</a> and one of the best business ideas I&#8217;ve heard in a long time. Flatword are offering free open-source textbooks to students and educators. The company aims to make mony by offering DRM free PDFs or audiobooks as well as customizable printed textbooks and class materials. As a student this is good for me in a number of ways.</p>
<p><span id="more-33"></span>If my school ever adopts this model, I&#8217;d be spending about a third of what I do now on textbooks. That in itself is newsworthy. I&#8217;ve mainly taken liberal arts classes during my school career and textbook costs aren&#8217;t nearly as bad as they seem for my friends taking science and engineering classes. Still, big bulky textbooks cost a lof of money and trees whatever the subject is. If I can purchase a $30 PDF instead of an $80+ textbook I&#8217;ll pick the PDF every time. I say that because I don&#8217;t see me going with the free web-only option. I actually like books. I like writing in them and I like coming back to them later when I have a problem. It&#8217;s so cool to re-read a section of text years later and see how I&#8217;ve matured as a thinker and student. Having a PDF sounds like the next best thing to a bound copy. I totally agree with the article on this matter.</p>
<p>But that&#8217;s just the beginning. The best advantage to the Flat World model has to be the customizability it offers. According to their homepage, Flat World allows teachers to reorganise the textbook. I watched the video tutorial and it seemed pretty easy to do Until I noticed that it also ties in with WebCT. How cool is that? I think Flat World gets an &#8216;A&#8217; for effort (sic) on that one. I think this represents a great approach that will hopefully encourage professors to stop using the textbook as a crutch. Develop a lesson plan and use the material to support your effort. I&#8217;ve sat through tons of classes where the professor just tries to &#8220;teach&#8221; 12 chapters for no other reason than that&#8217;s how many the book came with. It&#8217;s not fun for me and it doesn&#8217;t seem very exciting for the teacher either.</p>
<p>So all I need now are some professors to adopt these things. Browsing the offerings I noticed mainly management and economics texts. Letting students chose the medium is a great idea but the real benefit I see is for teachers.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nesatellites.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nesatellites.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nesatellites.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nesatellites.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nesatellites.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nesatellites.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nesatellites.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nesatellites.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nesatellites.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nesatellites.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nesatellites.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nesatellites.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nesatellites.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nesatellites.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=33&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nesatellites.wordpress.com/2009/08/25/free-textbooks-a-reality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6a53186bebea96d34a4b235c3e6fced?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbrown42</media:title>
		</media:content>
	</item>
		<item>
		<title>Urban Planning in Toronto</title>
		<link>http://nesatellites.wordpress.com/2009/08/23/urban-planning-in-toronto/</link>
		<comments>http://nesatellites.wordpress.com/2009/08/23/urban-planning-in-toronto/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 20:21:45 +0000</pubDate>
		<dc:creator>mbrown42</dc:creator>
				<category><![CDATA[Urban Planning]]></category>
		<category><![CDATA[Transportation Intensification urban planning]]></category>

		<guid isPermaLink="false">http://nesatellites.wordpress.com/?p=25</guid>
		<description><![CDATA[Check out this article I found. It talks about urban planning and some of the consequences of incoherent development. YourHome.ca Shared via AddThis Found a link to this article at BUZZBUZZHOME.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=25&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Check out this article I found. It talks about urban planning and some of the consequences of incoherent development.</p>
<p><a href="http://www.yourhome.ca/homes/newsfeatures/article/680398--time-for-change">YourHome.ca</a></p>
<p>Shared via <a href="http://addthis.com">AddThis</a></p>
<p>Found a link to this article at BUZZBUZZHOME.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nesatellites.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nesatellites.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nesatellites.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nesatellites.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nesatellites.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nesatellites.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nesatellites.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nesatellites.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nesatellites.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nesatellites.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nesatellites.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nesatellites.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nesatellites.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nesatellites.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=25&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nesatellites.wordpress.com/2009/08/23/urban-planning-in-toronto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6a53186bebea96d34a4b235c3e6fced?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbrown42</media:title>
		</media:content>
	</item>
		<item>
		<title>Modeling Terrain I</title>
		<link>http://nesatellites.wordpress.com/2009/08/19/modeling-terrain-i/</link>
		<comments>http://nesatellites.wordpress.com/2009/08/19/modeling-terrain-i/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 16:35:00 +0000</pubDate>
		<dc:creator>mbrown42</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[surface TIN volume area calculation]]></category>

		<guid isPermaLink="false">http://nesatellites.wordpress.com/?p=20</guid>
		<description><![CDATA[Here's a lesson I created using ScreenSteps Pro. It shows how to build a basic TIN from surveyed points. This is my first attempt using ScreenSteps and it was very easy to use.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=20&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="LessonContent">
<div class="LessonSummary">
<p>This lesson shows how you can use 2 dimensional point data with elevation attributes to construct a 3D surface. It then shows how to calculate useful data from the surface just created. P.S. Check out <a title="Link to ScreenSteps website." href="http://www.bluemangolearning.com/screensteps/" target="_blank">ScreenShots </a>which I used to create this tutorial.</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;"><span id="more-20"></span></h3>
<h3 class="StepTitle" style="font-size:20px;">Display 3D Analyst toolbar</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250694905418.png?w=247&#038;h=203" alt="media_1250694905418.png" width="247" height="203" /></div>
<div class="StepInstructions">
<p>Display your 3D analyst toolbar if it is not already. To do this, right-click on any open toolbar area and select 3D Alalyst.</p></div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Alternate Method</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250694967823.png?w=361&#038;h=396" alt="media_1250694967823.png" width="361" height="396" /></div>
<div class="StepInstructions">
<p>You can also enable the toolbar from Tools&gt;Customize.</p></div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Ensure extenstion is enabled.</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250695458694.png?w=532&#038;h=78" alt="media_1250695458694.png" width="532" height="78" /></div>
<div class="StepInstructions">
<p>Once the 3D Analyst toolbar is displayed; ensure these two icons are activated. If they are greyed out the 3D Analyst extension is not enabled. Select Entensions from the Tools menu and place a check near 3D analyst.</p></div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Select Data</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250694570234.png?w=532&#038;h=492" alt="media_1250694570234.png" width="532" height="492" /></div>
<div class="StepInstructions">
<p>Once 3D Analyst is enabled, I select the data from which I will build my TIN. Notice I have de-selected those elevations representing the intake structure in the bottom left of the basin. To do this, I hold  down &lt;SHIFT&gt; while selecting the points around the intake structure (holding down shift keeps the other points in my selection). I de-selected these points to simplify the rendered surface. In this case, I&#8217;m more worried about the total volume of the basin the the shape of the floor.</p></div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Create TIN from Features</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250695944774.png?w=532&#038;h=216" alt="media_1250695944774.png" width="532" height="216" /></div>
<div class="StepInstructions">
<p>Select Create TIN From Features as shown above. A dialogue box will appear as shown in the next step.</p></div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Configure TIN tool</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250696033908.png?w=532&#038;h=287" alt="media_1250696033908.png" width="532" height="287" /></div>
<div class="StepInstructions">
<p>In this example I need to ensure I&#8217;m using features from the S_Survey_Pts feature class. Points and Lines are valid input for this tool. <em>If we did not select points as in the previous step, this tool would create a surface based off the entire S_Survey_Pts feature class</em>. Notice also that I set the height source to the [El] field. The [El] field is in feet which is the same unit I&#8217;m using for my horizontal coordinates. This prevents me from having to use a Z conversion factor later on.</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Pick a height</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250697004692.png?w=532&#038;h=417" alt="media_1250697004692.png" width="532" height="417" /></div>
<div class="StepInstructions">
<p>Here I&#8217;ve zoomed to the dam spillway. I want to calculate the storage capacity of the dam below the outlet weir. In the image you can see the elevation of the outlet weir to be 3810&#8242;. We want the volume of the structure below that plane.</p></div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Run calculation</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250697351343.png?w=415&#038;h=281" alt="media_1250697351343.png" width="415" height="281" /></div>
<div class="StepInstructions">
<p>Areas and volumes can easily be calculated from the 3D Analyst tool bar as shown above.</p></div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle" style="font-size:20px;">Area and Volume Statistics</h3>
<div class="StepImage" style="margin:10px 0;"><img style="border:1px solid #ccc;padding:3px;" src="http://nesatellites.files.wordpress.com/2009/08/media_1250697555324.png?w=462&#038;h=474" alt="media_1250697555324.png" width="462" height="474" /></div>
<div class="StepInstructions">
<p>This is the dialogue box to calculate statistics about our surface. If you are working with multiple TIN surfaces, ensure you have the correct one selected. Then I change the value of the reference plane to the outlet elevation (3810&#8242;). I click the &#8220;&#8230; below plane&#8221; radio button and keep the Z factor value at 1 since our horizontal and verticle units are both in feet. All that is left is to let the extension calculate our areas and volume and optionally write these values to a text file. The text file is really useful if you want to compare the same site over time or perhaps see how different data sources can affect your results. The TIN need not be displayed to run this step. In fact if you are dealing with a very large surface it may be best not to display the layer if you have already verified that it was constructed the way you expected.</p></div>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nesatellites.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nesatellites.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nesatellites.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nesatellites.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nesatellites.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nesatellites.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nesatellites.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nesatellites.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nesatellites.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nesatellites.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nesatellites.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nesatellites.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nesatellites.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nesatellites.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=20&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nesatellites.wordpress.com/2009/08/19/modeling-terrain-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6a53186bebea96d34a4b235c3e6fced?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbrown42</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250694905418.png" medium="image">
			<media:title type="html">media_1250694905418.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250694967823.png" medium="image">
			<media:title type="html">media_1250694967823.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250695458694.png" medium="image">
			<media:title type="html">media_1250695458694.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250694570234.png" medium="image">
			<media:title type="html">media_1250694570234.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250695944774.png" medium="image">
			<media:title type="html">media_1250695944774.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250696033908.png" medium="image">
			<media:title type="html">media_1250696033908.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250697004692.png" medium="image">
			<media:title type="html">media_1250697004692.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250697351343.png" medium="image">
			<media:title type="html">media_1250697351343.png</media:title>
		</media:content>

		<media:content url="http://nesatellites.files.wordpress.com/2009/08/media_1250697555324.png" medium="image">
			<media:title type="html">media_1250697555324.png</media:title>
		</media:content>
	</item>
		<item>
		<title>Gloves</title>
		<link>http://nesatellites.wordpress.com/2009/08/18/gloves-2/</link>
		<comments>http://nesatellites.wordpress.com/2009/08/18/gloves-2/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 03:33:24 +0000</pubDate>
		<dc:creator>mbrown42</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Music Gloves Bigstereo]]></category>

		<guid isPermaLink="false">http://nesatellites.wordpress.com/?p=5</guid>
		<description><![CDATA[I just downloaded the new release from Gloves and I&#8217;m really liking it. I thought my first post here would be about GIS but I&#8217;m still working on that one. In the mean time you should check out &#8220;Too Much To Dream&#8221; over at Bigstereo. I&#8217;ll definitely check into their other works.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=5&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just downloaded the new release from <a title="Gloves Link" href="http://www.myspace.com/allyouneedisgloves" target="_blank">Gloves</a> and I&#8217;m really liking it. I thought my first post here would be about GIS but I&#8217;m still working on that one. In the mean time you should check out &#8220;<a title="Too Much To Dream Link" href="http://this.bigstereo.net/2009/08/17/gloves/" target="_blank">Too Much To Dream</a>&#8221; over at Bigstereo. I&#8217;ll definitely check into their other works.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nesatellites.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nesatellites.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nesatellites.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nesatellites.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nesatellites.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nesatellites.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nesatellites.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nesatellites.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nesatellites.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nesatellites.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nesatellites.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nesatellites.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nesatellites.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nesatellites.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=5&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nesatellites.wordpress.com/2009/08/18/gloves-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6a53186bebea96d34a4b235c3e6fced?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbrown42</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://nesatellites.wordpress.com/2009/08/17/hello-world/</link>
		<comments>http://nesatellites.wordpress.com/2009/08/17/hello-world/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 00:15:39 +0000</pubDate>
		<dc:creator>mbrown42</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[My first post on my first blog. In the future I plan to post information and links about things I find interesting.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=1&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My first post on my first blog.</p>
<p>In the future I plan to post information and links about things I find interesting.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nesatellites.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nesatellites.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nesatellites.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nesatellites.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nesatellites.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nesatellites.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nesatellites.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nesatellites.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nesatellites.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nesatellites.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nesatellites.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nesatellites.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nesatellites.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nesatellites.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nesatellites.wordpress.com&amp;blog=9037162&amp;post=1&amp;subd=nesatellites&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nesatellites.wordpress.com/2009/08/17/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6a53186bebea96d34a4b235c3e6fced?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mbrown42</media:title>
		</media:content>
	</item>
	</channel>
</rss>
