<?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>AuthorityLabs &#187; Google</title>
	<atom:link href="http://authoritylabs.com/blog/tag/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://authoritylabs.com</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2012 20:05:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Implementing Schema.org Microdata</title>
		<link>http://authoritylabs.com/blog/implementing-schema-microdata/</link>
		<comments>http://authoritylabs.com/blog/implementing-schema-microdata/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 16:45:16 +0000</pubDate>
		<dc:creator>Dawn Wentzell</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[microdata]]></category>
		<category><![CDATA[Schema.org]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://authoritylabs.com/?p=2456</guid>
		<description><![CDATA[Last week, Google, Bing and Yahoo announced collaboration on a single standard for structured markup. Yes, I’m talking about Schema.org and utilizing Microdata for “Rich Snippets.” Since then, many sites have posted about why Schema.org might be good, bad or otherwise for site owners; some balanced, some not. Personally, I think structured markup and machine-readable [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://authoritylabs.com/wp-content/uploads/schema.png"><img class="alignright size-full wp-image-2457" src="http://authoritylabs.com/wp-content/uploads/schema.png" alt="" width="185" height="63" /></a>Last week, Google, Bing and Yahoo announced collaboration on a single standard for structured markup. Yes, I’m talking about Schema.org and utilizing Microdata for “Rich Snippets.”</p>
<p>Since then, many sites have posted about why Schema.org might be <a href="http://www.seomoz.org/blog/schemaorg-a-new-approach-to-structured-data-for-seo">good</a>, <a href="http://econsultancy.com/us/blog/7603-schema-org-good-for-google-bing-and-yahoo-bad-for-everyone-else">bad</a> or <a href="http://www.seobythesea.com/?p=5608">otherwise</a> for site owners; some <a href="http://www.seobythesea.com/?p=5608">balanced</a>, some  <a href="http://www.readwriteweb.com/archives/is_schemaorg_really_a_google_land_grab.php">not</a>. Personally, I think structured markup and machine-readable information is always good to have on your site, regardless of potential SEO benefits. I’ve had a love for structured markup (in the form of Microformats) since I first laid eyes on hCard several years ago. I could have written a whole post about why I think Schema.org is good for SEO, but instead I decided to implement it on a site of mine.<br />
<span id="more-2456"></span><br />
I co-own a <a href="http://bookbrothel.com/">book review site</a>, and I’ve been meaning to implement the microformat hReview on it for over a year. I never got around to it because it involved creating custom post types in WordPress, and I knew that would be a time-consuming affair. I finally bit the bullet and sat down to do that on Sunday. That part took about 5 hours of my day.</p>
<p>Then, I started implementing microdata. From never having implemented microdata before in my life (like I said, I was a Microformats fan), I found out what markup I needed, added it to my template, and tested it in about an hour.</p>
<p>I started out by making a list of all of the attributes about books that we use in a review. Then I determined which item type (<em>itemtype</em>) it would be associated with – for my purposes, <a href="http://schema.org/Book">Book</a>, <a href="http://schema.org/Review">Review</a> , and <a href="http://schema.org/Rating">Rating</a> were all I needed. Then, I noted which item property (<em>itemprop</em>) I would use. Then it was simply a matter of adding the appropriate markup to my existing HTML and PHP.</p>
<p><a href="http://authoritylabs.com/wp-content/uploads/microdata-paper.jpg"><img class="aligncenter size-full wp-image-2458" src="http://authoritylabs.com/wp-content/uploads/microdata-paper.jpg" alt="" width="500" height="268" /></a></p>
<p>There were a couple of attributes that were confusing – for example, do I use <em>description</em> or <em>reviewBody</em> from Review? Do I use <em>aggregateRating</em> from Review, or <em>reviewRating</em> from Rating? The examples on Schema.org were helpful to a degree, but I still felt like I was guessing at proper use. Time will tell if I’ve used the appropriate item properties. I also wasn’t sure if I had to upgrade the doctype to HTML5 or not, but I chose not to as only modern browsers support it and some of my users have older browsers.</p>
<p><a href="http://authoritylabs.com/wp-content/uploads/microdata-markup.png"><img class="aligncenter size-full wp-image-2459" src="http://authoritylabs.com/wp-content/uploads/microdata-markup.png" alt="" width="500" height="268" /></a></p>
<p>To test that you’ve implemented microdata correctly, you can use <a href="http://www.google.com/webmasters/tools/richsnippets">Google’s Rich Snippet testing tool</a>. However, it was throwing errors for things it should not have had a problem with (I suspect it was getting a lot of use over the last week as people rushed to add microdata to their sites), so I looked for an alternative. I found this <a href="http://krofdrakula.github.com/microdata-tool/">Microdata Tool</a> using jQuery to test that I had applied the code correctly; unfortunately it can’t show how Google might display this data in the SERPs.</p>
<p style="text-align: center"><a href="http://authoritylabs.com/wp-content/uploads/testing-microdata.png"><img class="aligncenter size-full wp-image-2460" src="http://authoritylabs.com/wp-content/uploads/testing-microdata.png" alt="" width="500" height="286" /></a></p>
<p>One of the arguments the naysayers against Schema.org are using is that it will take too long/too many resources to implement, but clearly that is not the case. I’m going to continue to tinker with microdata and my review template, and monitor my organic search rankings and conversion rates to determine just what the effect of adding it will be over time.</p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/implementing-schema-microdata/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Location-Based Data: The Next Frontier for Local Search?</title>
		<link>http://authoritylabs.com/blog/location-based-data/</link>
		<comments>http://authoritylabs.com/blog/location-based-data/#comments</comments>
		<pubDate>Tue, 17 May 2011 18:00:48 +0000</pubDate>
		<dc:creator>Dawn Wentzell</dc:creator>
				<category><![CDATA[Insights]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[local SEO]]></category>
		<category><![CDATA[location-based services]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://authoritylabs.com/?p=2319</guid>
		<description><![CDATA[When Google released their new Local search results format in October, 2010, SEOs quickly determined that the number of reviews and overall rating associated with a business were ranking factors. They also predicted that these would be quickly be gamed. It was an easy ranking factor to launch the new integrated SERPs with, as they [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When Google released their new Local search results format in October, 2010, SEOs quickly determined that the number of reviews and overall rating associated with a business were ranking factors. They also predicted that these would be quickly be gamed.</p>
<p><a href="http://authoritylabs.com/wp-content/uploads/directions.jpg"><img class="alignleft size-medium wp-image-2321" src="http://authoritylabs.com/wp-content/uploads/directions-300x246.jpg" alt="" width="300" height="246" /></a>It was an easy ranking factor to launch the new integrated SERPs with, as they already had piles and piles of review data from their own properties as well as sites they’d partnered with. But Google’s algorithms are not static, and it couldn’t be too long before the Local algorithm included other ranking factors.</p>
<p>Now, it looks like they might be starting to think about other options. A paper submitted to the upcoming Very Large Data Bases conference, on <a href="http://www.vldb.org/pvldb/vol4/p290-venetis.pdf">Hyper-Local, Directions-Based ranking</a> and written by two Googlers along with two other researchers, proposes a method for using direction queries…say, of the sort a user might enter into Google Maps…to determine interest in particular places that could possibly be used for ranking such places.<br />
<span id="more-2319"></span><br />
Greg Linden has a post summarizing the <a href="http://glinden.blogspot.com/2011/05/value-of-google-maps-directions-logs.html">key points of the paper</a>, and wrote, “the core idea is that, when people ask for directions from A to B, it shows that people are interested in B, especially if they happen to be at or near A.”</p>
<p>And of course, who happens to have piles and piles of data regarding direction queries?</p>
<p>I’m sure there are some people out there already thinking about how they could game this. But this got me thinking: what other sources of hyper-local, location-based, user-generated data is out here that could supplement direction queries?</p>
<p><strong>GPS Trails on Android Devices</strong></p>
<p>I’ve always believed that Google developed Android simply as a massive data mining engine. After the recent debacle where it was discovered Apple devices store GPS data, it was also uncovered that <a href="http://www.huffingtonpost.com/2011/04/22/google-android-and-apple-track-your-location_n_852529.html">Android does too</a>, which is not entirely unsurprising.</p>
<p>*removes tinfoil hat*</p>
<p>However, the paper addresses the main issue with GPS trails, in that “GPS datasets typically contain many positions for a few users,” and Greg points out that “just being in a location doesn&#8217;t make it clear that it is your endpoint or that you want to be there.”</p>
<p>All good points.</p>
<p><strong>Location-Based Check-In Services</strong></p>
<p><a href="http://authoritylabs.com/wp-content/uploads/foursquare.png"><img class="alignright size-medium wp-image-2329" src="http://authoritylabs.com/wp-content/uploads/foursquare-300x300.png" alt="" width="100" height="100" /></a>So what applications do people use when they want to be somewhere and want to tell people about it? Well, with increasing frequency, people are checking into location-based games like Foursquare, Gowalla, and Facebook Places.</p>
<p>Sure, this data would be heavily skewed to early adopters, owners of mobile devices, and geeks, but it could be another indicator of interest in places.</p>
<p><strong>Twitter</strong></p>
<p><a href="http://authoritylabs.com/wp-content/uploads/twitter_bird.png"><img class="alignright size-full wp-image-2327" src="http://authoritylabs.com/wp-content/uploads/twitter_bird.png" alt="" width="200" height="200" /></a>Google already partners with Twitter to use their data. The Twitter API includes a portion for GPS coordinates, and many mobile Twitter apps and third-party supporting sites like Twitpic have a setting that allow users to embed their coordinates in their tweets. Rather convenient, considering the number of people who tweet frequently from doctor’s waiting rooms, restaurants, grocery store line-ups, etc.</p>
<p>&nbsp;</p>
<p>Of course, we’re not there yet. This paper is to be presented at VLDB in August, so it’s not even being implemented by Google yet.  And by the time something like this is anywhere nearing integration into the Local algorithm, Foursquare and the like may not even exist. But with more users adopting mobile devices faster than desktop computers, and everyone under the sun trying to develop a location-based app, the opportunity is certainly there.</p>
<p><em>Photo: <a href="http://www.flickr.com/photos/23am/236464145/">23am.com</a>/Flickr</em></p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/location-based-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Local Results Updated</title>
		<link>http://authoritylabs.com/blog/local-results-updated/</link>
		<comments>http://authoritylabs.com/blog/local-results-updated/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 18:52:30 +0000</pubDate>
		<dc:creator>Chase Granberry</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[local SEO]]></category>

		<guid isPermaLink="false">http://blog.authoritylabs.com/?p=1072</guid>
		<description><![CDATA[After the latest local changes Google made to the search results we had a lot of updates to do with regards to how we process the local results. Those updates are now live and have been for a few days. Here&#8217;s an overview on how we parse each kind of local search result we&#8217;re getting [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>After the latest local changes Google made to the search results we had a lot of updates to do with regards to how we process the local results. Those updates are now live and have been for a few days. Here&#8217;s an overview on how we parse each kind of local search result we&#8217;re getting served. We&#8217;re currently getting served three different types: the old style, the newest integrated style, and another style similar to the old style only the text that preceeds that pack starts with &#8220;Places for&#8230;&#8221;.</p>
<p>We&#8217;ve had a few questions on exactly how we plan on calculating rankings with these new results and why. Basically we try and make the &#8220;rank&#8221; reflect where that site would actually be located within a traditional search results page.<span id="more-1072"></span></p>
<p>Click on each image to see the full serp.</p>
<p><strong>Integrated Local Results</strong></p>
<p><strong><a href="http://blog.authoritylabs.com/wp-content/uploads/google-new-places-results.png"><img class="alignnone size-full wp-image-1075" style="border: 3px solid #666;" title="google-new-places-results-thumb" src="http://blog.authoritylabs.com/wp-content/uploads/google-new-places-results-thumb.png" alt="" width="550" height="250" /></a></strong></p>
<p><strong> </strong></p>
<p><strong>Places for Results</strong></p>
<p><strong><a href="http://blog.authoritylabs.com/wp-content/uploads/places-for-results.png"><img class="alignnone size-full wp-image-1074" style="border: 3px solid #666;" title="places-for-results-thumb" src="http://blog.authoritylabs.com/wp-content/uploads/places-for-results-thumb.png" alt="" width="550" height="250" /></a></strong></p>
<p><strong>Fully Integrated Results</strong></p>
<p><strong><a href="http://blog.authoritylabs.com/wp-content/uploads/intermingled-local-web-results-google.png"><img class="alignnone size-full wp-image-1075" style="border: 3px solid #666;" title="google-new-places-results-thumb" src="http://blog.authoritylabs.com/wp-content/uploads/google-new-places-results-thumb.png" alt="" width="550" height="250" /></a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/local-results-updated/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Data Collection With Google Spreadsheets</title>
		<link>http://authoritylabs.com/blog/data-collection-with-google-spreadsheets/</link>
		<comments>http://authoritylabs.com/blog/data-collection-with-google-spreadsheets/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 16:23:53 +0000</pubDate>
		<dc:creator>Brian LaFrance</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Insights]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[spreadsheet]]></category>

		<guid isPermaLink="false">http://blog.authoritylabs.com/?p=842</guid>
		<description><![CDATA[Here at AuthorityLabs, we really like to play with data. Whether it&#8217;s checking website rankings or tracking indexed pages, we&#8217;re crunching a ton of data all day, every day. Recently, we&#8217;ve started playing with some features in Google Spreadsheets that seem to have an almost endless possibility for collecting and manipulating data. Using the functions [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Here at AuthorityLabs, we really like to play with data. Whether it&#8217;s <a href="http://authoritylabs.com/">checking website rankings</a> or <a href="http://blog.authoritylabs.com/the-benefits-of-our-new-indexed-page-feature/">tracking indexed pages</a>, we&#8217;re crunching a ton of data all day, every day. Recently, we&#8217;ve started playing with some features in <a href="http://docs.google.com/spreadsheets">Google Spreadsheets</a> that seem to have an almost endless possibility for collecting and manipulating data.  Using the <a href="http://docs.google.com/support/bin/answer.py?hl=en&amp;topic=11318&amp;answer=75507">functions for external data</a>, we&#8217;ve put together a list with a few ways to help speed up common tasks related to SEO.  While it&#8217;s <a href="http://googlesystem.blogspot.com/2007/09/google-spreadsheets-lets-you-import.html">not a new feature</a>, I think it&#8217;s probably underused. <span id="more-842"></span></p>
<p>The ideas below make use of <a href="http://www.w3.org/TR/xpath/">XPath</a>. If you&#8217;re not familiar with XPath, <a href="http://www.w3schools.com/xpath/">here&#8217;s a good resource</a> to pick up a basic understanding and <a href="https://addons.mozilla.org/en-US/firefox/addon/1095/reviews/">here&#8217;s a Firefox plugin</a> to help finding the XPath for elements in a document.</p>
<h2>Check SERPs</h2>
<p>While we think we have the best tool around for checking search results, Google Spreadsheets can provide a quick and free way to see how a site is performing. For the results below, we&#8217;ve entered the following into the first cell of the spreadsheet:</p>
<p><code>=importXML("http://www.google.com/search?q=digital+cameras&amp;hl=en&amp;gl=US", "//a[@class='l']/@href")</code></p>
<p>Let&#8217;s break that down a little bit.</p>
<p><code>=importXML()</code> &#8211; This is the function that Google uses to import the document at the specified URL.</p>
<p><code>http://www.google.com/search?q=digital+cameras&amp;hl=en&amp;gl=US</code> &#8211; This is the URL of the search results page for [digital cameras] at US based (<code>gl=US</code>) English (<code>hl=en</code>) results at Google.com.  You can add <code>&amp;num=100</code> to the end of this URL to expand the results to 100.  Note that these results may include more than just the standard organic listings, so keep that in mind when figuring out how a site is performing.</p>
<p><code>//a[@class='l']/@href</code> &#8211; This is the XPath query that is used to parse out the data we are looking for.  In this case, we are looking for the <code>href</code> attribute of links with a css class of l.</p>
<h2>Compare International SERPs</h2>
<p>Looking for an easy way to compare site performance in different countries? If you&#8217;re looking for English results, just change <code>gl=US</code> in the above example to whichever <a href="http://code.google.com/apis/adwords/docs/appendix/countrycodes.html">two character country code</a> Google is using.  For the example below, we have used the following to get UK and Australia results -</p>
<p><code>=importXML("http://www.google.com/search?q=digital+cameras&amp;hl=en&amp;gl=UK", "//a[@class='l']/@href")</code></p>
<p><code>=importXML("http://www.google.com/search?q=digital+cameras&amp;hl=en&amp;gl=AU", "//a[@class='l']/@href")</code></p>
<h2>Analyze a Page&#8217;s Links</h2>
<p>Sometimes a situation comes up where you really need to look at a list of all links on a page and what anchor text those links are using.  Google spreadsheets makes it easy to get these links into a spreadsheet for your searching and sorting pleasure.  Drop the following <code>ImportXML()</code> functions into cells that are side by side in your spreadsheet and let Google do the work for you.</p>
<p><code>=importXML("http://www.yourpageurl.com", "//a")</code></p>
<p><code>=importXML("http://www.yourpageurl.com", "//a/@href")</code></p>
<p>The following is an example of the end result.  Can anyone clue me in on why SEOmoz recommends using absolute links but uses relative links all over the place?</p>
<h2>Other Ideas</h2>
<p><strong>Reputation Monitoring and Reporting</strong> &#8211; Get creative with <a href="http://search.twitter.com/advanced">Twitter&#8217;s advanced search</a>, del.icio.us&#8217; <a href="http://www.delicious.com/popular/">popular lists</a> and tags, and <a href="http://blogsearch.google.com/">Google&#8217;s blog search</a> to document and report on a client&#8217;s reputation or recent mentions.</p>
<p><strong>Importing Data From a Feed</strong> &#8211; The <code>ImportFeed()</code> function lets you quickly populate a spreadsheet with data from an rss or similar feed. This method doesn&#8217;t even need any XPath knowledge to make it work. The downside is that it appears to be limited to importing 20 feed items at a time and sometimes doesn&#8217;t work as expected.</p>
<p>Keep in mind that if you want to take the most advantage of the data you&#8217;re grabbing, there is a good chance you will need to export the spreadsheets for use in Excel or as a CSV.  It appears that there isn&#8217;t an easy way to sort and manipulate the data that results from these functions due to the way that everything is referenced in the cells of the spreadsheets.  I&#8217;d be interested in hearing how others are using these features. Maybe there are easier ways of doing some of the above items, but paired with a little creativity, someone who has no idea about writing code can create their own system for scraping and analyzing data.</p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/data-collection-with-google-spreadsheets/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Google Barcode</title>
		<link>http://authoritylabs.com/blog/google-barcode/</link>
		<comments>http://authoritylabs.com/blog/google-barcode/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 05:46:22 +0000</pubDate>
		<dc:creator>Chase Granberry</dc:creator>
				<category><![CDATA[Housekeeping]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[interesting]]></category>

		<guid isPermaLink="false">http://blog.authoritylabs.com/?p=372</guid>
		<description><![CDATA[Ha &#8230; Google&#8217;s changed their logo to a barcode! I fired up the Barcode Scanner app on my G1 to decrypt it and guess what, it&#8217;s Google in barcode. I&#8217;d been making some updates to the blog and loaded up Google (because it&#8217;s my default page). It&#8217;s hard to miss, but there Turns out the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Ha &#8230; Google&#8217;s changed their <a title="Barcode on Google" href="http://www.google.com/">logo to a barcode</a>! I fired up the <a title="Android Barcode Scanner" href="http://googlemobile.blogspot.com/2009/05/google-product-search-for-android-now.html">Barcode Scanner app</a> on my G1 to decrypt it and guess what, it&#8217;s Google in <a title="Barcodes" href="http://en.wikipedia.org/wiki/Barcode">barcode</a>.</p>
<p>I&#8217;d been making some updates to the blog and loaded up Google (because it&#8217;s my default page). It&#8217;s hard to miss, but there <img src='http://authoritylabs.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Turns out the original barcode patent was filed October 7th, 1952 by Wallace Flint.</p>
<p><img class="alignleft size-full wp-image-378" title="google-logo-barcode" src="http://blog.authoritylabs.com/wp-content/uploads/2009/10/screenshot-google-barcode1.png" alt="google-barcode-logo" width="242" height="104" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/google-barcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc (User agent is rejected)
Object Caching 443/476 objects using apc

Served from: authoritylabs.com @ 2012-02-04 14:43:20 -->
