<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Online Journalism Blog</title>
	
	<link>http://onlinejournalismblog.com</link>
	<description>A conversation.</description>
	<lastBuildDate>Thu, 24 May 2012 08:39:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<cloud domain="onlinejournalismblog.com" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/onlinejournalismblog" /><feedburner:info uri="onlinejournalismblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>onlinejournalismblog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><item>
		<title>F1 Championship Points as a d3.js Powered Sankey Diagram</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/BoDtw-TFJXw/</link>
		<comments>http://blog.ouseful.info/2012/05/24/f1-championship-points-as-a-d3-js-powered-sankey-diagram/#comments</comments>
		<pubDate>Thu, 24 May 2012 08:39:26 +0000</pubDate>
		<dc:creator>Tony Hirst</dc:creator>
				<category><![CDATA[Anything you want]]></category>
		<category><![CDATA[onlinejournalismblog]]></category>

		<guid isPermaLink="false">http://blog.ouseful.info/?p=7899</guid>
		<description><![CDATA[d3.js crossed my path a couple of times yesterday: firstly, in the form of an enquiry about whether I&#8217;d be interested in writing a book on d3.js (I&#8217;m not sure I&#8217;m qualified: as I responded, I&#8217;m more of a script kiddie who sees things I can reuse, rather than have any understanding at all about [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ouseful.info&#38;blog=325417&#38;post=7899&#38;subd=ouseful&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>d3.js crossed my path a couple of times yesterday: firstly, in the form of an enquiry about whether I&#8217;d be interested in writing a book on d3.js (I&#8217;m not sure I&#8217;m qualified: as I responded, I&#8217;m more of a script kiddie who sees things I can reuse, rather than have any understanding at all about how d3.js does what it does&#8230;); secondly, via a link to d3.js creator Mike Bostock&#8217;s new demo of <a href="http://bost.ocks.org/mike/sankey/" onclick="urchinTracker('/outgoing/bost.ocks.org/mike/sankey/?referer=');">Sankey diagrams built using d3.js</a>:</p>
<p><a href="http://bost.ocks.org/mike/sankey/" onclick="urchinTracker('/outgoing/bost.ocks.org/mike/sankey/?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/sankeydiagram-d3js.png?w=700&h=560" alt="" title="sankeyDiagram-d3js" width="700" height="560" class="alignnone size-full wp-image-7901" /></a></p>
<p>Hmm&#8230; Sankey diagrams are good for visualising flow, so to get to grips myself with seeing if I could plug-and-play with the component, I needed an appropriate data set. F1 related data is usually my first thought as far as testbed data goes (no confidences to break, the STEM/innovation outreach/tech transfer context, etc etc) so what things flow in F1? What quantities are conserved whilst being passed between different classes of entity? How about points&#8230; points are awarded on a per race basis to drivers who are members of teams. It&#8217;s also a championship sport, run over several races. The individual Driver Championship is a competition between drivers to accumulate the most points over the course of the season, and the Constructor Chanmpionship is a battle between teams. Which suggests to me that a Sankey plot of points from races to drivers and then constructors might work?</p>
<p>So what do we need to do? First up, look at the source code for the demo using View Source. Here&#8217;s the relevant bit:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/05/sankey-get-data.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/05/sankey-get-data.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/sankey-get-data.png?w=700" alt="" title="sankey get data"   class="alignnone size-full wp-image-7903" /></a></p>
<p>Data is being pulled in from a relatively addressed file, <em>energy.json</em>. Let&#8217;s see what it looks like:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/05/sanky-data.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/05/sanky-data.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/sanky-data.png?w=700" alt="" title="sankey data"   class="alignnone size-full wp-image-7902" /></a></p>
<p>Okay &#8211; a node list and an edge list. From previous experience, I know that there is a d3.js <a href="http://networkx.lanl.gov/reference/readwrite.json_graph.html" onclick="urchinTracker('/outgoing/networkx.lanl.gov/reference/readwrite.json_graph.html?referer=');">JSON exporter</a> built into the Python networkx library, so maybe we can generate the data file from a network representation of the data in networkx?</p>
<p>Here we are: <a href="http://networkx.lanl.gov/reference/generated/networkx.readwrite.json_graph.node_link_data.html#networkx.readwrite.json_graph.node_link_data" onclick="urchinTracker('/outgoing/networkx.lanl.gov/reference/generated/networkx.readwrite.json_graph.node_link_data.html_networkx.readwrite.json_graph.node_link_data?referer=');">node_link_data(G)</a> &#8220;[r]eturn data in node-link format that is suitable for JSON serialization and use in Javascript documents.&#8221;</p>
<p>Next step &#8211; getting the data. I&#8217;ve already done a demo of visualising <a href="https://views.scraperwiki.com/run/treemap_demo_-_multi-round_sports_event/" onclick="urchinTracker('/outgoing/views.scraperwiki.com/run/treemap_demo_-_multi-round_sports_event/?referer=');">F1 championship points sourced from the Ergast motor racing API as a treemap</a> (but not blogged it? Hmmm&#8230;. must fix that) that draws on a JSON data feed <a href="https://scraperwiki.com/views/ergast_championship_gviz/" onclick="urchinTracker('/outgoing/scraperwiki.com/views/ergast_championship_gviz/?referer=');">constructed from data extracted from the Ergast API</a> so I can clone that code and use it as the basis for constructing a directed graph that represents points allocations: race nodes are linked to driver nodes with edges weighted by points scored in that race, and driver nodes are connected to teams by edges weighted according to the total number of points the driver has earned so far. (Hmm, that gives me an idea for a better way of coding the weight for that edge&#8230;)</p>
<p>I don&#8217;t have time to blog the how to of the code right now &#8211; train and boat to catch &#8211; but will do so later. If you want to look at the code, it&#8217;s here: <a href="https://scraperwiki.com/views/ergast_championship_nodelist/" onclick="urchinTracker('/outgoing/scraperwiki.com/views/ergast_championship_nodelist/?referer=');">Ergast Championship nodelist</a>. And here&#8217;s the result &#8211; <a href="https://views.scraperwiki.com/run/f1_championship_sankey_demo/" onclick="urchinTracker('/outgoing/views.scraperwiki.com/run/f1_championship_sankey_demo/?referer=');">F1 Chanpionship 2012 Points as a Sankey Diagram</a>:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/05/f1-points-sankey-diagram.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/05/f1-points-sankey-diagram.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/f1-points-sankey-diagram.png?w=700&h=369" alt="" title="F1 points sankey diagram" width="700" height="369" class="alignnone size-full wp-image-7900" /></a></p>
<p>See what I mean about being a cut and paste script kiddie?!;-)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ouseful.wordpress.com/7899/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gocomments/ouseful.wordpress.com/7899/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ouseful.wordpress.com/7899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ouseful.wordpress.com/7899/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/godelicious/ouseful.wordpress.com/7899/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ouseful.wordpress.com/7899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ouseful.wordpress.com/7899/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gofacebook/ouseful.wordpress.com/7899/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ouseful.wordpress.com/7899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ouseful.wordpress.com/7899/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gotwitter/ouseful.wordpress.com/7899/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ouseful.wordpress.com/7899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ouseful.wordpress.com/7899/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gostumble/ouseful.wordpress.com/7899/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ouseful.wordpress.com/7899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ouseful.wordpress.com/7899/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/godigg/ouseful.wordpress.com/7899/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ouseful.wordpress.com/7899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ouseful.wordpress.com/7899/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/goreddit/ouseful.wordpress.com/7899/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ouseful.wordpress.com/7899/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ouseful.info&#038;blog=325417&%23038;post=7899&%23038;subd=ouseful&%23038;ref=&%23038;feed=1" width="1" height="1" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=BoDtw-TFJXw:RdmuVVfKxO4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.ouseful.info/2012/05/24/f1-championship-points-as-a-d3-js-powered-sankey-diagram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/sankeydiagram-d3js.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/sankey-get-data.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/sanky-data.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/f1-points-sankey-diagram.png" length="" type="" />
		<feedburner:origLink>http://blog.ouseful.info/2012/05/24/f1-championship-points-as-a-d3-js-powered-sankey-diagram/</feedburner:origLink></item>
		<item>
		<title>Inter-Council Payments and the Google Fusion Tables Network Graph</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/L8bGed1ta6U/</link>
		<comments>http://blog.ouseful.info/2012/05/21/inter-council-payments-in-the-new-look-google-fusion-tables/#comments</comments>
		<pubDate>Mon, 21 May 2012 09:25:11 +0000</pubDate>
		<dc:creator>Tony Hirst</dc:creator>
				<category><![CDATA[Anything you want]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[DDJ]]></category>
		<category><![CDATA[onlinejournalismblog]]></category>
		<category><![CDATA[openlylocal]]></category>

		<guid isPermaLink="false">http://blog.ouseful.info/?p=7870</guid>
		<description><![CDATA[One of the great things about aggregating local spending data from different councils in the same place &#8211; such as on OpenlyLocal &#8211; is that you can start to explore structural relations in the way different public bodies of a similar type spend money with each other. On the local spend with corporates scraper on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ouseful.info&#38;blog=325417&#38;post=7870&#38;subd=ouseful&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the great things about aggregating local spending data from different councils in the same place &#8211; such as on OpenlyLocal &#8211; is that you can start to explore structural relations in the way different public bodies of a similar type spend money <em>with each other</em>.</p>
<p>On the <a href="https://scraperwiki.com/scrapers/local_spend_on_corporates/" onclick="urchinTracker('/outgoing/scraperwiki.com/scrapers/local_spend_on_corporates/?referer=');">local spend with corporates scraper</a> on Scraperwiki, which I set up to scrape how different councils spent money with particular suppliers, I realised I could also use the scraper to search for how councils spent money with other councils, by searching for suppliers containing phrases such as &#8220;district council&#8221; or &#8220;town council&#8221;. (We could also generate views to to see how councils wre spending money with different police authorities, for example.)</p>
<p>(The OpenlyLocal API doesn&#8217;t seem to work with the search, so I scraped the search results HTML pages instead. Results are paged, with 30 results per page, and what seems like a maximum of 1500 (50 pages) of results possible.)</p>
<p>The <em>publicmesh</em> table on the <a>scraper</a> captures spend going to a range of councils (not parish councils) from other councils. I also uploaded the data to Google Fusion tables (<a href="https://www.google.com/fusiontables/DataSource?docid=1Goam6ULWsmOpIGgPSoYe6c_47f2QHCD_f_GL46A" onclick="urchinTracker('/outgoing/www.google.com/fusiontables/DataSource?docid=1Goam6ULWsmOpIGgPSoYe6c_47f2QHCD_f_GL46A&amp;referer=');">public mesh spending data</a>), and then started to explore it using the new <a href="http://support.google.com/fusiontables/bin/answer.py?hl=en&amp;answer=2566732" onclick="urchinTracker('/outgoing/support.google.com/fusiontables/bin/answer.py?hl=en_amp_answer=2566732&amp;referer=');"><em>network graph</em></a> view (via the <em>Experiment</em> menu). So for example, we can get a quick view over how the various county councils make payments to each other:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/05/googl-fusion-table-ntworked-county-council-payments.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/05/googl-fusion-table-ntworked-county-council-payments.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/googl-fusion-table-ntworked-county-council-payments.png?w=700&h=498" alt="" title="googl fusion table - ntworked county council payments" width="700" height="498" class="alignnone size-full wp-image-7871" /></a></p>
<p>Hovering over a node highlights the other nodes its connected to (though it would be good if the text labels from the connected nodes were highlighted and labels for unconnected nodes were greyed out?)</p>
<p>(I think a Graphviz visualisation would actually be better, eg using <a href="http://code.google.com/p/canviz/" onclick="urchinTracker('/outgoing/code.google.com/p/canviz/?referer=');">Canviz</a>, because it can clearly show edges from A to B as well as B to A&#8230;)</p>
<p>As with many exploratory visualisations, this view helps us identify some more specific questions we might want to ask of the data, rather than presenting a &#8220;finished product&#8221;.</p>
<p>As well as the experimental network graph view, I also noticed there&#8217;s a new Experimental View for Google Fusion Tables. As well as the normal tabular view, we also get a record view, and (where geo data is identified?) a map view:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/05/google-fusion-tables-new-experimeental-view.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/05/google-fusion-tables-new-experimeental-view.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/google-fusion-tables-new-experimeental-view.png?w=700&h=440" alt="" title="Google fusion tables  new experimeental view" width="700" height="440" class="alignnone size-full wp-image-7878" /></a></p>
<p>What I&#8217;d quite like to see is a merging of map and network graph views&#8230;</p>
<p>One thing I noticed whilst playing with Google Fusion Tables is that getting different aggregate views is rather clunky and relies on column order in the table. So for example, here&#8217;s an aggregated view of how different county councils supply other councils:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/05/fusion-tables-aggregate-view.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/05/fusion-tables-aggregate-view.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/fusion-tables-aggregate-view.png?w=700&h=268" alt="" title="fusion tables aggregate view" width="700" height="268" class="alignnone size-full wp-image-7880" /></a></p>
<p>In order to aggregate by supplied council, we need to reorder the columns (the aggregate view aggregates columns as thet appear from left to right in the table view). From the Edit column, Modify Table:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/05/google-fusion-table-change-column-order.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/05/google-fusion-table-change-column-order.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/google-fusion-table-change-column-order.png?w=700" alt="" title="google fusion table change column order"   class="alignnone size-full wp-image-7881" /></a></p>
<p>(In my browser, I then had to reload the page for the updated schema to be reflected in the view). Then we can get the count aggregation:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/05/googe-fusion-table-aggrgate-view-reordered.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/05/googe-fusion-table-aggrgate-view-reordered.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/05/googe-fusion-table-aggrgate-view-reordered.png?w=700&h=273" alt="" title="googe fusion table aggrgate view reordered" width="700" height="273" class="alignnone size-full wp-image-7883" /></a></p>
<p>It would be so much easier if the aggregation view allowed you to order the columns there&#8230;</p>
<p>PS no time to blog this properly right now, but there are a couple of new javascript libraries that are worth mentioning in the datawrangling context.</p>
<p>In part coming out of the Guardian stable, <strong><a href="http://misoproject.com/" onclick="urchinTracker('/outgoing/misoproject.com/?referer=');">Misoproject</a></strong> is &#8220;an open source toolkit designed to expedite the creation of high-quality interactive storytelling and data visualisation content&#8221;. The initial <a href="http://misoproject.com/dataset/" onclick="urchinTracker('/outgoing/misoproject.com/dataset/?referer=');">dataset</a> library provides a set of routines for: loading data into the browser from a variety of sources (CSV, Google spreadsheets, JSON), including regular polling; creating and managing data tables and views of those tables within the browser, including column operations such as grouping, statistical operations (min, max, mean, moving average etc); playing nicely with a variety of client side graphics libraries (eg d3.js, Highcharts, Rickshaw and other JQuery graphics plugins).</p>
<p><strong><a href="http://okfnlabs.org/recline/" onclick="urchinTracker('/outgoing/okfnlabs.org/recline/?referer=');">Recline.js</a></strong> is a library from Max Ogden and the Open Knowledge Foundation that if its name is anything to go by is positioning itself as an alternative (or complement?) to Google Refine. To my mind though, it&#8217;s more akin to a Google Fusion Tables style user interface (&#8220;classic&#8221; version) wherever you need it, via a Javascript library. The data explorer allows you to import and preview CSV, Excel, Google Spreadsheet and ElasticSearch data from a URL, as well as via file upload (so for example, you can try it with the <a href="https://api.scraperwiki.com/api/1.0/datastore/sqlite?format=csv&amp;name=local_spend_on_corporates&amp;query=select+*+from+%60publicMesh%60&amp;apikey=" onclick="urchinTracker('/outgoing/api.scraperwiki.com/api/1.0/datastore/sqlite?format=csv_amp_name=local_spend_on_corporates_amp_query=select+_+from+_60publicMesh_60_amp_apikey=&amp;referer=');">public spend mesh data CSV from Scraperwiki</a>). Data can be sorted, filtered and viewed by facet, and there&#8217;s a set of integrated graphical tools for previewing and displaying data too. Refine.js views can also be shared and embedded, which makes this an ideal tool for data publishers to embed in their sites as a way of facilitating engagement with data on-site, as I expect we&#8217;ll see on <a href="http://thedatahub.org/" onclick="urchinTracker('/outgoing/thedatahub.org/?referer=');">the Data Hub</a> before too long.</p>
<p>More reviews of these two libraries later&#8230;</p>
<p>PPS These are also worth a look in respect of generating visualisations based on data stored in Google spreadsheets: <a href="http://datawrapper.de/" onclick="urchinTracker('/outgoing/datawrapper.de/?referer=');">DataWrapper</a> and <a href="http://multimedia.journalism.berkeley.edu/tools/freedive/" onclick="urchinTracker('/outgoing/multimedia.journalism.berkeley.edu/tools/freedive/?referer=');">Freedive</a> (like my old Guardian Datastore explorer, but done properly&#8230; Wizard led UI that helps you create your own searchable and embeddable database view direct from a Google Spreadsheet).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ouseful.wordpress.com/7870/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gocomments/ouseful.wordpress.com/7870/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ouseful.wordpress.com/7870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ouseful.wordpress.com/7870/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/godelicious/ouseful.wordpress.com/7870/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ouseful.wordpress.com/7870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ouseful.wordpress.com/7870/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gofacebook/ouseful.wordpress.com/7870/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ouseful.wordpress.com/7870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ouseful.wordpress.com/7870/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gotwitter/ouseful.wordpress.com/7870/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ouseful.wordpress.com/7870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ouseful.wordpress.com/7870/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gostumble/ouseful.wordpress.com/7870/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ouseful.wordpress.com/7870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ouseful.wordpress.com/7870/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/godigg/ouseful.wordpress.com/7870/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ouseful.wordpress.com/7870/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ouseful.wordpress.com/7870/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/goreddit/ouseful.wordpress.com/7870/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ouseful.wordpress.com/7870/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ouseful.info&#038;blog=325417&%23038;post=7870&%23038;subd=ouseful&%23038;ref=&%23038;feed=1" width="1" height="1" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=L8bGed1ta6U:BCuQQt4m8Ms:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.ouseful.info/2012/05/21/inter-council-payments-in-the-new-look-google-fusion-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/googl-fusion-table-ntworked-county-council-payments.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/google-fusion-tables-new-experimeental-view.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/fusion-tables-aggregate-view.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/google-fusion-table-change-column-order.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/05/googe-fusion-table-aggrgate-view-reordered.png" length="" type="" />
		<feedburner:origLink>http://blog.ouseful.info/2012/05/21/inter-council-payments-in-the-new-look-google-fusion-tables/</feedburner:origLink></item>
		<item>
		<title>Journalism Reloaded – What journalists need for the future</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/ehCNdUJnti0/</link>
		<comments>http://onlinejournalismblog.com/2012/05/16/journalism-reloaded-what-journalists-need-for-the-future/#comments</comments>
		<pubDate>Wed, 16 May 2012 13:51:03 +0000</pubDate>
		<dc:creator>alexandrastark</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[online journalism]]></category>
		<category><![CDATA[Alexandra Stark]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[pedagogy]]></category>
		<category><![CDATA[skills]]></category>
		<category><![CDATA[Tartu-Declaration]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=16358</guid>
		<description><![CDATA[In a guest post Alexandra Stark, Swiss journalist and Head of Studies at MAZ – the Swiss School of Journalism, argues that it’s time for journalists to take action on business models for supporting journalism. Stark proposes a broadened set of skills and a new structure to enable greater involvement from journalists, while also fostering further teaching of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F16%2Fjournalism-reloaded-what-journalists-need-for-the-future%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F05_2F16_2Fjournalism-reloaded-what-journalists-need-for-the-future_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F16%2Fjournalism-reloaded-what-journalists-need-for-the-future%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><em>In a guest post <strong><em><a href="http://www.alexandrastark.ch" target="_blank" onclick="urchinTracker('/outgoing/www.alexandrastark.ch?referer=');">Alexandra Stark</a></em></strong><em>, </em>Swiss journalist and Head of Studies at <a href="http://www.maz.ch" target="_blank" onclick="urchinTracker('/outgoing/www.maz.ch?referer=');">MAZ – the Swiss School of Journalism</a>,</em> <em>argues that it’s time for journalists to take action on business models for supporting journalism. Stark proposes a broadened set of skills and a new structure to enable greater involvement from journalists, while also fostering further teaching of such skills.</em></p>
<p>Ask a journalist if his or her job will remain important in the future: “Of course,” he or she will answer while privately thinking, “What a stupid question!” Try changing this stupid question just a bit, asking: “<em>How</em> will it be possible that you’ll still be able to do a good job in the future?” It’s likely you won’t receive an answer at all.<span id="more-16358"></span></p>
<p>Most journalists have never really thought about it. And if they have, they’ll probably tell you it’s not their job – it’s the task of someone else: perhaps the media owners, readers, foundations or even the state.</p>
<p>For the most part, journalists don’t count “thinking about the future” among their responsibilities. Yet is it really wise to leave our future to others – many of whom have interests in different directions? Shall we leave it to the media executives who’ve promised shareholders a 20 percent return on investments? To the audiences, who’ve grown accustomed to receiving everything for free, or simply taking what is presented? Shall we leave it to foundations or the state, which may change positions or run out of funding?</p>
<p>No. If we journalists want to be able to do a good job in the future, we should stop reacting – adapting – to what happens and start taking action ourselves.</p>
<p>Let me make this clear: basic journalistic skills &#8211; for example research, selection and presentation – remain crucial. We’re still talking about journalism.</p>
<p>But as the world becomes more complex, it is no longer sufficient to simply know how to write nice articles or to use a video camera.</p>
<p>Our potential to do what is now considered a “good job” has dramatically decreased due to technological changes, reduced pay and transformations in user behaviour.</p>
<figure id="attachment_16408" class="wp-caption alignnone" style="width: 720px"><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_Reloaded_Illu_1.jpg"><img class="size-full wp-image-16408" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_Reloaded_Illu_1.jpg" alt="Graphic: technology, economy and audience's impact on journalism" width="720" height="422" /></a><figcaption class="wp-caption-text">Journalism in a changing environment: Outside developments influence the possibility to create good journalism.</figcaption></figure>
<p><strong>Journalists need to take responsibility</strong></p>
<p>Until recently, most of us journalists didn’t especially care about these catalysts of change. Nor did our bosses, as a recent study* from the <a href="http://www.linguistik.zhaw.ch/de/linguistik/iam.html" target="_blank" onclick="urchinTracker('/outgoing/www.linguistik.zhaw.ch/de/linguistik/iam.html?referer=');">University of Applied Sciences of Winterthur</a> shows. The study is based on the <a href="http://www.ejta.eu/index.php/website/projects/" target="_blank" onclick="urchinTracker('/outgoing/www.ejta.eu/index.php/website/projects/?referer=');">Tartu-Declaration</a>, which lists 50 skills for journalists, accepted Europe-wide. When asked about the most important skills, 360 editors in chief from across Europe ranked the competencies as shown below:</p>
<table width="408" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="bottom" nowrap="nowrap" width="355"></td>
<td valign="top" width="53">Rank</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">reliability</td>
<td valign="top" width="53"> 1</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">good general knowledge</td>
<td valign="top" width="53"> 2</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">showing initiative</td>
<td valign="top" width="53"> 3</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to select information on the basis of reliability</td>
<td valign="top" width="53"> 4</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to work under time pressure</td>
<td valign="top" width="53"> 5</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to distinguish between main &amp; side issues</td>
<td valign="top" width="53"> 6</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to interpret selected information</td>
<td valign="top" width="53"> 7</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">knowledge of current events</td>
<td valign="top" width="53"> 8</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">willing to take criticism</td>
<td valign="top" width="53"> 9</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to take responsibility for the product</td>
<td valign="top" width="53">10</td>
</tr>
</tbody>
</table>
<p><em>Source: Koch, Carmen; Wyss, Vinzenz (2010)*</em></p>
<p>This ranking indicates that the skills editors in chief consider important are those closely related to the heart of journalistic work ­­­– the day-to-day-routine of creating content. The Tartu-Declaration does not mention many skills dealing with the aforementioned drivers of change, and the few which are not considered important by the editors in chief are as follows:</p>
<table width="408" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="bottom" nowrap="nowrap" width="355"></td>
<td colspan="2" valign="top" width="53">Rank</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">having the will to interact with the public</td>
<td colspan="2" valign="top" width="53">24</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to work with technical infrastructure</td>
<td colspan="2" valign="top" width="53">25</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to stimulate debate</td>
<td colspan="2" valign="top" width="53">34</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to work within budget limits</td>
<td colspan="2" valign="top" width="53">41</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to organise contributions from the public</td>
<td colspan="2" valign="top" width="53">44</td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to cooperate with technicians</td>
<td valign="top" width="52">45</td>
<td width="1"></td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">knowledge of market conditions</td>
<td valign="top" width="52">47</td>
<td width="1"></td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">mastering the basics of layout</td>
<td valign="top" width="52">48</td>
<td width="1"></td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">knowing the practical aspects of being a freelancer</td>
<td valign="top" width="52">49</td>
<td width="1"></td>
</tr>
<tr>
<td valign="bottom" nowrap="nowrap" width="355">ability to reflect on a future career</td>
<td valign="top" width="52">50</td>
<td width="1"></td>
</tr>
</tbody>
</table>
<p><em>Source: Koch, Carmen; Wyss, Vinzenz (2010)*</em></p>
<p>It is of course understandable that the focus of editors in chief will be on day-to-day business. Many newsrooms were forced to reduce staff, leaving remaining journalists the task of filing more stories. Overall, the situation is growing increasingly difficult, and changing circumstances continue to restrict our possibility to produce good journalism.</p>
<p>Yet this is wrong: we should stop getting used to the pie shrinking. We need to help make the pie grow again.</p>
<p>This is &#8211; of course &#8211; much easier said than done. No one knows the “correct” way to go about it, and while a few have tried problem-solving, the majority simply scrutinize their efforts and indulge in schadenfreude when they fail.</p>
<p>Most initiatives are driven by the business-side, with journalists rarely taking action. Why is that so? Because we still think that it’s not our business. If we really want to do our job in the future, we journalists should not only provide content, but also be involved in <em>securing the possibility to create good journalism.</em></p>
<figure id="attachment_16409" class="wp-caption alignnone" style="width: 720px"><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_Reloaded_Illu_2.jpg"><img class="size-full wp-image-16409" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_Reloaded_Illu_2.jpg" alt="Graphic: journalism impacting on technology, the economy, the audience" width="720" height="422" /></a><figcaption class="wp-caption-text">Journalists should not only write good articles, but also make sure they can do their job. Who else cares?</figcaption></figure>
<p>In a world where it is not clear where we are going, we need completely new skills. We should know about and be interested in the drivers of change and how they’ll affect journalism, that is: how the economy evolves, how technology develops and how our users change their habits.</p>
<h2><strong>A new set of competencies is required</strong></h2>
<p>In my <a href="http://www.maz.ch/service/publikationen/Stark_Journalism_reloaded.pdf" target="_blank" onclick="urchinTracker('/outgoing/www.maz.ch/service/publikationen/Stark_Journalism_reloaded.pdf?referer=');">Master’s thesis</a> (only in German, sorry!) I worked out additional sets of competencies, based on the Tartu-Declaration (left side of the graph). Along the three drivers of change I developed three groups of additional competencies (right side of the graph): technological, economic competencies and competencies related to audience (for a larger file please click the illustration).</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_reloaded_graph_big.jpg"><img class="alignnone size-full wp-image-16418" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_reloaded_graph_big.jpg" alt="" width="4358" height="2889" /></a></p>
<p><em>Journalism Reloaded: Extended competencies for the future of journalism.</em></p>
<p>We journalists need much more than basic day-to-day-skills. We need to develop deeper competencies to help us to influence the future of journalism.</p>
<p>For example, with regard to technological competencies (for a detailed description as well as the detailed list of competencies related to the economy and audience please refer to my thesis) this means journalists:</p>
<ul>
<li>are interested in the technological evolution in the media sector and the opportunities this evolution poses (for production and usage of content)</li>
<li>accept that both tasks and work-processes change because of technical development</li>
<li>can help, and thus want to shape and develop change</li>
<li>know that not everything that is technologically possible makes sense, and may even be ethically problematic</li>
<li>can use research, communications and production tools (hard- as well as software) efficiently</li>
</ul>
<h2><strong><em>How</em></strong><strong> do journalists acquire these competencies?</strong></h2>
<p>Not so long ago there were still many voices saying, “You can’t learn to be a journalist. You either are one, or you’re not.” That has changed.</p>
<p>Most people today agree that training helps make better journalists. But the old voices were not all wrong, there is a part of being a journalist one can’t learn. For example everything to do with <em>willingness</em>. You might be surprised there are so many competencies related to <em>willingness</em>. But they are crucial – if journalists are unwilling, you won’t be able to make them change.</p>
<p>Despite the fact that they’ll tell you the opposite, journalists don’t really like to change – this I learned in several change-projects I was involved with. As a colleague once told me, “Journalists love it when worlds collide, because that’s action. But pull their table ten centimetres over and they’ll get really annoyed!”</p>
<p>Therefore, I propose structuring competencies the following way:</p>
<figure id="attachment_16412" class="wp-caption alignnone" style="width: 720px"><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_Reloaded_Illu_4.jpg"><img class="size-full wp-image-16412" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_Reloaded_Illu_4.jpg" alt="To know, to be able, to want" width="720" height="422" /></a><figcaption class="wp-caption-text">Not all competencies can be taught, which is why structuring helps making the division of tasks easier.</figcaption></figure>
<p><strong><em>Where</em></strong><strong> do journalists get these competencies?</strong></p>
<p>Since <em>willingness</em> is about attitude and cannot be taught, competencies in this category must play a crucial role in the selection process (of editorial departments hiring staff as well as schools/universities recruiting students).</p>
<p><em>To be able</em> is meant both on an intellectual level and on the level of skills. While skills can be taught, intellectual ability can only be trained (in schools as well as on the job) and therefore has to be an element in the selection process as well.</p>
<p><em>To know</em> refers to professional knowledge as well as general education and expert knowledge. While professional knowledge can be taught, broad interest and expert knowledge has to be a precondition and therefore should also be part of the selection process:</p>
<figure id="attachment_16413" class="wp-caption alignnone" style="width: 720px"><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_Reloaded_Illu_5.jpg"><img class="size-full wp-image-16413" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Journalism_Reloaded_Illu_5.jpg" alt="What? How? Where/when?" width="720" height="422" /></a><figcaption class="wp-caption-text">Working toward a future of good journalism: Broadened competencies and a clear division of tasks.</figcaption></figure>
<p><strong>Let’s go for it!</strong></p>
<p>If we as journalists really want to be able to do what we do well – informing the audience, telling stories, uncovering scandals – we must become active and journalism schools must teach us how to do so.</p>
<p>Not so much for the newspapers of today, but certainly for the media we will be working for tomorrow.</p>
<p><em><a href="http://www.alexandrastark.ch" target="_blank" onclick="urchinTracker('/outgoing/www.alexandrastark.ch?referer=');">Alexandra Stark</a> (<a href="mailto:mail@alexandrastark.ch">mail@alexandrastark.ch</a>, Twitter: <a href="http://twitter.com/alexandrastark" onclick="urchinTracker('/outgoing/twitter.com/alexandrastark?referer=');">@alexandrastark</a>) <em>is Head of Studies at <a href="http://www.maz.ch" target="_blank" onclick="urchinTracker('/outgoing/www.maz.ch?referer=');">MAZ, the Swiss School of Journalism</a>.</em> She is a trained teacher and holds Masters degrees in International Relations (University St.Gallen) and New Media Journalism (University Leipzig). She was a freelance Moscow-correspondent, and continues to work as a freelancer specialising in economic coverage.</em></p>
<p><em>* no download available. Koch, Carmen; Wyss, Vinzenz (2010): The weighting of different journalistic competences: A survey with European editors in chief. Winterthur: Projektbericht</em></p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F16%2Fjournalism-reloaded-what-journalists-need-for-the-future%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div align="center"><a href="http://twitter.com/paulbradshaw" target="_blank" onclick="urchinTracker('/outgoing/twitter.com/paulbradshaw?referer=');"><img src="http://onlinejournalismblog.com/wp-content/plugins/igit-follow-me-after-post-button-new/twitter8.png" /></a><div style="font-size:8px;"><a href="http://php-freelancer.in/" style="color:#D2D2D2" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer"  onclick="urchinTracker('/outgoing/php-freelancer.in/?referer=');">PHP Freelancer</a></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=ehCNdUJnti0:Rzh7oQuYVz0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/05/16/journalism-reloaded-what-journalists-need-for-the-future/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://onlinejournalismblog.com/2012/05/16/journalism-reloaded-what-journalists-need-for-the-future/</feedburner:origLink></item>
		<item>
		<title>German social TV project “Rundshow”: merging internet and television</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/oaC50BFkJ8I/</link>
		<comments>http://onlinejournalismblog.com/2012/05/16/german-social-tv-project-rundshow-merging-internet-and-television/#comments</comments>
		<pubDate>Wed, 16 May 2012 08:49:45 +0000</pubDate>
		<dc:creator>franzi</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[television]]></category>
		<category><![CDATA[Bayerischer Rundfunk]]></category>
		<category><![CDATA[Franzi Baehrle]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[guest post]]></category>
		<category><![CDATA[Richard Gutjahr]]></category>
		<category><![CDATA[Rundshow]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=16436</guid>
		<description><![CDATA[In a guest post for OJB, cross-posted from her blog, Franzi Baehrle reviews a new German TV show which operates across broadcast, web and mobile. There&#8217;s a big experiment going on in German television. And I have to admit that I was slightly surprised that the rather conservative &#8220;Bayerischer Rundfunk&#8221; (BR, a public service broadcaster in [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F16%2Fgerman-social-tv-project-rundshow-merging-internet-and-television%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F05_2F16_2Fgerman-social-tv-project-rundshow-merging-internet-and-television_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F16%2Fgerman-social-tv-project-rundshow-merging-internet-and-television%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><em>In a guest post for OJB, <a href="http://franziskabaehrle.com/2012/05/15/german-social-tv-project-rundshow-merging-internet-and-television/" onclick="urchinTracker('/outgoing/franziskabaehrle.com/2012/05/15/german-social-tv-project-rundshow-merging-internet-and-television/?referer=');">cross-posted from her blog</a>, <strong>Franzi Baehrle </strong>reviews a new German TV show which operates across broadcast, web and mobile.</em></p>
<p>There&#8217;s a big experiment going on in German television. And I have to admit that I was slightly surprised that the rather conservative &#8220;<a href="http://www.br.de/index.html" onclick="urchinTracker('/outgoing/www.br.de/index.html?referer=');">Bayerischer Rundfunk</a>&#8221; (BR, a public service broadcaster in Bavaria), would be the one to start it.</p>
<p>Blogger and journalist <a href="http://gutjahr.biz/" onclick="urchinTracker('/outgoing/gutjahr.biz/?referer=');">Richard Gutjahr</a> was approached by BR to develop a format merging internet and TV. <span style="text-align: justify">On Monday night the &#8220;</span><a href="http://blog.br.de/rundshow/" onclick="urchinTracker('/outgoing/blog.br.de/rundshow/?referer=');">Rundshow</a><span style="text-align: justify">&#8221; was aired for the first time at 11pm German time, and will be running Mondays-Thursdays for the next four weeks.<span id="more-16436"></span> </span></p>
<p><span style="text-align: justify">Before going live on air, you could follow the team&#8217;s afternoon meeting in a </span><a href="http://blog.br.de/rundshow/2012/05/stream-redaktionskonferenz/" onclick="urchinTracker('/outgoing/blog.br.de/rundshow/2012/05/stream-redaktionskonferenz/?referer=');">live stream</a><span style="text-align: justify">, and be part of it via </span><a href="https://plus.google.com/102139188275710212353/posts" onclick="urchinTracker('/outgoing/plus.google.com/102139188275710212353/posts?referer=');">Google+</a><span style="text-align: justify"> hangout. You were informed about the show&#8217;s topic (&#8220;15M and success/fail of the occupy movement&#8221;) and the development of its research on </span><a href="http://twitter.com/#!/rundshow" onclick="urchinTracker('/outgoing/twitter.com/_/rundshow?referer=');">Twitter</a><span style="text-align: justify">, </span><a href="http://www.facebook.com/Rundshow" onclick="urchinTracker('/outgoing/www.facebook.com/Rundshow?referer=');">Facebook</a><span style="text-align: justify"> and Google+. And until the big day of the first show, you could also follow the preparations on those social networks and bring in your own ideas. </span></p>
<p><span style="text-align: justify">The team were explicitly asking for the audience&#8217;s opinion (and also at this stage invited them to hangouts). Moreover, they developed an app with which you can send comments, upload videos or pictures, respond to polls (the results then being included in the show) and rate the show live.</span></p>
<p style="text-align: justify"><img class="size-medium wp-image-425 alignleft" style="margin: 20px" src="http://franziskabaehrle.files.wordpress.com/2012/05/img_0884.png?w=200" alt="Rundshow app screengrab " width="200" height="300" /></p>
<p style="text-align: justify">Obviously, the show wasn&#8217;t only broadcast on TV, but also via live stream on the web.</p>
<p style="text-align: justify">You could also join a hangout during the show, with  participants included in the show and interviewed (as well as experts via Skype). Comments and tweets were  also shown on screen.</p>
<p style="text-align: justify">The live stream started a few minutes before the show and also lasted longer than the TV broadcast.</p>
<p style="text-align: justify">A few minutes after the start, #rundshow was already the trending topic on Twitter Germany.</p>
<h2 style="text-align: justify">Did it work?</h2>
<p style="text-align: justify">Bottom line: I really liked watching it. It was interesting to follow the discussion (even people from Spain and Greece joined the hangout and actually talked more than the German guys there), and the aired videos. A few of them explained the show itself, which was nice for the first episode, but I would have liked to see more topic-related content.</p>
<p style="text-align: justify">Moreover, the talks with the Google hangout group became even more interesting after the broadcast ended.</p>
<p style="text-align: justify">Some people were ranting about the show on Twitter. And yes, it wasn&#8217;t perfect. But it&#8217;s a huge experiment and no one can expect it to be perfect from the start (it would actually be odd if it was).</p>
<p style="text-align: justify">If it&#8217;s further developed and continued after those four weeks, it could become a milestone (if it isn&#8217;t already one).</p>
<p style="text-align: justify">I simply love the interactivity here: the audience is not an audience anymore, but a part of the show, even before it starts (Axel Bruns&#8217; term &#8220;<a href="http://www.slideshare.net/Snurb/from-prosumer-to-produser-understanding-userled-content-creation" onclick="urchinTracker('/outgoing/www.slideshare.net/Snurb/from-prosumer-to-produser-understanding-userled-content-creation?referer=');">produser</a>&#8221; would definitely fit here I think). You&#8217;re not just switching on the TV or clicking the play button in your browser, you can interact before, during and after the show, help to shape and develop it, share your opinion and content and even easily be <em>on</em> the show.</p>
<p style="text-align: justify">It&#8217;s great that Richard Gutjahr and his team took the step to develop a format like that, and I&#8217;m already looking forward to tonight&#8217;s episode.</p>
<p style="text-align: justify">The first night&#8217;s show <a href="http://mediathek-video.br.de/B7Mediathek.html?bccode=both" onclick="urchinTracker('/outgoing/mediathek-video.br.de/B7Mediathek.html?bccode=both&amp;referer=');">can we watched here</a>.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F16%2Fgerman-social-tv-project-rundshow-merging-internet-and-television%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div align="center"><a href="http://twitter.com/paulbradshaw" target="_blank" onclick="urchinTracker('/outgoing/twitter.com/paulbradshaw?referer=');"><img src="http://onlinejournalismblog.com/wp-content/plugins/igit-follow-me-after-post-button-new/twitter8.png" /></a><div style="font-size:8px;"><a href="http://php-freelancer.in/" style="color:#D2D2D2" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer"  onclick="urchinTracker('/outgoing/php-freelancer.in/?referer=');">PHP Freelancer</a></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=oaC50BFkJ8I:3f65HOJ_2UI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/05/16/german-social-tv-project-rundshow-merging-internet-and-television/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://onlinejournalismblog.com/2012/05/16/german-social-tv-project-rundshow-merging-internet-and-television/</feedburner:origLink></item>
		<item>
		<title>Dispatches’ Watching the Detectives: why journalists should be worried about the Communications Data Bill</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/I5Ob0CZtcoA/</link>
		<comments>http://onlinejournalismblog.com/2012/05/14/dispatches-watching-the-detectives-why-journalists-should-be-lobbying-against-the-communications-data-bill/#comments</comments>
		<pubDate>Mon, 14 May 2012 19:48:07 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[dispatches]]></category>
		<category><![CDATA[Leveson Inquiry]]></category>
		<category><![CDATA[Private detectives]]></category>
		<category><![CDATA[sources]]></category>
		<category><![CDATA[surveillance]]></category>
		<category><![CDATA[The Communications Data Bill]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=16429</guid>
		<description><![CDATA[Consider these two unrelated events: A bill is proposed to record every contact (and possibly search) made by every UK citizen, to be available to law enforcement agencies and stored by communication service providers An inquiry into press standards and a leaked Home Office report both uncover the ease with which private investigators can access [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F14%2Fdispatches-watching-the-detectives-why-journalists-should-be-lobbying-against-the-communications-data-bill%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F05_2F14_2Fdispatches-watching-the-detectives-why-journalists-should-be-lobbying-against-the-communications-data-bill_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F14%2Fdispatches-watching-the-detectives-why-journalists-should-be-lobbying-against-the-communications-data-bill%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Consider these two unrelated events:</p>
<ol>
<li><a href="http://www.telegraph.co.uk/technology/news/9254589/Snoopers-charter-web-spying-Bill-announced.html" onclick="urchinTracker('/outgoing/www.telegraph.co.uk/technology/news/9254589/Snoopers-charter-web-spying-Bill-announced.html?referer=');">A bill is proposed</a> to record every contact (and possibly search) made by every UK citizen, to be available to law enforcement agencies and stored by communication service providers</li>
<li>An <a href="http://www.independent.co.uk/news/uk/crime/detectives-ran-criminal-record-checks-on-labour-politicians-7720685.html" onclick="urchinTracker('/outgoing/www.independent.co.uk/news/uk/crime/detectives-ran-criminal-record-checks-on-labour-politicians-7720685.html?referer=');">inquiry into press standards</a> <em>and</em> <a href="http://www.channel4.com/news/new-police-corruption-alleged-in-secret-report" onclick="urchinTracker('/outgoing/www.channel4.com/news/new-police-corruption-alleged-in-secret-report?referer=');">a leaked Home Office report</a> both uncover the ease with which private investigators can access personal records through law enforcement and other agencies</li>
</ol>
<p>I&#8217;m worried about 1. because of 2. And tonight&#8217;s <a href="http://www.channel4.com/programmes/dispatches/episode-guide/series-109/episode-1" onclick="urchinTracker('/outgoing/www.channel4.com/programmes/dispatches/episode-guide/series-109/episode-1?referer=');">Dispatches: Watching the Detectives</a> does a particularly good job of <a href="http://www.guardian.co.uk/technology/2012/may/12/private-investigators-financial-criminal-records" onclick="urchinTracker('/outgoing/www.guardian.co.uk/technology/2012/may/12/private-investigators-financial-criminal-records?referer=');">illustrating</a> why. It is &#8220;the ease and extent to which the unregulated private investigation industry is willing to acquire personal data for a price&#8221; &#8211; not just from the police services, but the health services, benefits system, and other bodies, including commercial ones such as communications service providers (for an illustration of the data security of private companies, witness the Information Commissioner&#8217;s Office <a href="http://www.out-law.com/en/articles/2012/april/ico-will-aggregate-complaints-to-identify-serial-data-protection-offenders/" onclick="urchinTracker('/outgoing/www.out-law.com/en/articles/2012/april/ico-will-aggregate-complaints-to-identify-serial-data-protection-offenders/?referer=');">targeting them after a series of data protection breaches</a>).</p>
<p>If you&#8217;re a journalist, student journalist or blogger with any interest in protecting your sources, you should be watching the<strong> Communications Data Bill</strong> closely and understanding how it affects your job.</p>
<p>In the meantime, it&#8217;s also worth <a href="http://www.guardian.co.uk/technology/2012/apr/02/how-to-hide-emails-government-snooping" onclick="urchinTracker('/outgoing/www.guardian.co.uk/technology/2012/apr/02/how-to-hide-emails-government-snooping?referer=');">developing some good habits to protect your stories and your sources against unwanted snooping</a>. More on <a href="http://delicious.com/paulb/security" onclick="urchinTracker('/outgoing/delicious.com/paulb/security?referer=');">my Delicious bookmarks under &#8216;security&#8217;</a>.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F14%2Fdispatches-watching-the-detectives-why-journalists-should-be-lobbying-against-the-communications-data-bill%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div align="center"><a href="http://twitter.com/paulbradshaw" target="_blank" onclick="urchinTracker('/outgoing/twitter.com/paulbradshaw?referer=');"><img src="http://onlinejournalismblog.com/wp-content/plugins/igit-follow-me-after-post-button-new/twitter8.png" /></a><div style="font-size:8px;"><a href="http://php-freelancer.in/" style="color:#D2D2D2" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer"  onclick="urchinTracker('/outgoing/php-freelancer.in/?referer=');">PHP Freelancer</a></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=I5Ob0CZtcoA:hptDGyIXoWU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/05/14/dispatches-watching-the-detectives-why-journalists-should-be-lobbying-against-the-communications-data-bill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://onlinejournalismblog.com/2012/05/14/dispatches-watching-the-detectives-why-journalists-should-be-lobbying-against-the-communications-data-bill/</feedburner:origLink></item>
		<item>
		<title>FAQ: Blogging inspirations, tools and trends</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/10vQ3oaoCnU/</link>
		<comments>http://onlinejournalismblog.com/2012/05/12/faq-blogging-inspirations-tools-and-trends/#comments</comments>
		<pubDate>Sat, 12 May 2012 11:39:24 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[faq]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=16343</guid>
		<description><![CDATA[As part of the ongoing series of questions answered in public, here are another bunch: 1) What inspired you to become a blogger? Have you ever found it difficult to keep up regular posts/ stay dedicated to the same topic area? As someone teaching online journalism, I felt I should be exploring the medium myself. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F12%2Ffaq-blogging-inspirations-tools-and-trends%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F05_2F12_2Ffaq-blogging-inspirations-tools-and-trends_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F12%2Ffaq-blogging-inspirations-tools-and-trends%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>As part of the <a href="http://onlinejournalismblog.com/category/faq">ongoing series of questions answered in public</a>, here are another bunch:</p>
<h3>1) What inspired you to become a blogger? Have you ever found it difficult to keep up regular posts/ stay dedicated to the same topic area?</h3>
<p>As someone teaching online journalism, I felt I should be exploring the medium myself. What inspired me to continue, however, was the community I found along the way.</p>
<p>Yes, I sometimes find it difficult to post, but the great thing about blogging is that you have no deadlines to hit or boss to please, so if I can’t post for a while, I don’t – but as long as I have something to share, I can.<span id="more-16343"></span></p>
<p>Sometimes I’ve started blogs and then stopped after a while. Again, this is just part of the process. I learn along the way. <a href="http://onlinejournalismblog.com/2011/04/13/which-blog-platform-should-i-use-a-blog-audit/">There’s an audit summing up some of that here</a>.</p>
<h3>2) Do you believe blogs are crucial for a journalist trying to establish him/her self in the online world?</h3>
<p>Yes. You need a space to collect and share your knowledge, build your reputation, act as a space for communication, and force you to stick to something.</p>
<h3>3) As a journalist, which do you find more useful: Twitter, Facebook or blogs. Why?</h3>
<p>That’s like asking which is more useful: a hammer, a screwdriver, or a nail. Each is useful for different purposes.</p>
<h3>4) Which do you believe allowed you to best connect with your audience in terms of interactivity and views? (Facebook, Twitter or Blogs).</h3>
<p>That&#8217;s a similar question with a similar answer. It depends on the type of interactivity: blogs are good for in-depth comments and linking; Twitter is faster and more mobile but lacks the opportunity for depth (although it’s still possible). Facebook plugs in better to more people’s lives, but is more ephemeral (hard to archive or link to) and less public.</p>
<h3>5) Were there any significant changes in the blogging world that you&#8217;ve noticed from when you started blogging to now?</h3>
<p>Blogging has changed frequently. Some of the activity that used to take place on blogs, like linkblogging, now tends to happen on Twitter or Facebook. The style of blogging has changed as more journalists started blogging, and celebs, and so on. Every new group that adopted it has introduced new styles, etc.</p>
<h3>6) There are two arguments related to blogs: the first is that many believe blogs are dying because of new social medias replacing it (going with the new trend). The second argument is that rather then dying, it is transforming. For example, the fact that most bloggers link their Facebook/ Twitter/ blogs and Youtube accounts together to create a more wide array doesn&#8217;t mean that blogs are dying but rather that it is taking on another form.</h3>
<h3>Which argument do you think is more reasonable and why?</h3>
<p>‘Blogging’ has expanded beyond ‘the blog’. Any social network launched after blogs included a blogging facility, whether that was called ‘updates’ or whatever. Twitter is ‘microblogging’. YouTube is often used for videoblogging, and so on.</p>
<p>But blogs aren’t ‘dying’ – they’re just being added to by other media. And we’re also getting new types of blog, like Posterous, Tumblr, etc. To use the tool analogy again, it’s like saying that hammers are dying because of the invention of mallets.</p>
<h3>7) What is your view on Twitter&#8217;s character limit and Facebook (as a mini-blog) being used by professional journalists looking for information on a story? Do you believe the sacrifice in information for speed and availability is worth it?</h3>
<p>Again, different tools work better for different jobs. Sometimes you need speed and availability, sometimes depth and focus.</p>
<h3> <img src='http://onlinejournalismblog.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Do you believe traditional blogs (that are long-form) are able to compete with short blogs/ Twitter posts online, where readers prefer bite-size information and quick access? What do you believe are the pros and cons of each type.</h3>
<p>Readers ‘prefer’ different things at different times. So blogs compete when they meet those preferences, and not when they don’t. And they work together with Twitter.</p>
<p>Just as people prefer radio at some times (driving, painting, cooking) and TV at others (eating, relaxing), newspapers other still (travelling, relaxing), we need to use the right platforms at the right times for the right content.</p>
<h3>9) Because of Twitter and Blogs, citizen journalism is on the rise. Do you see this as good or bad thing?</h3>
<p>Anything that gives more people a voice is a good thing. I’m amazed at any journalist who doesn’t want to hear more voices – if they complain there are too many then they are effectively saying that they would prefer that someone else filter information for them, rather than doing the job they themselves are supposed to be paid for.</p>
<p>It also forces journalists to raise our game. If there’s more competition, if there are more versions of events, if there’s more information then we have to work harder to communicate clearly and compellingly; to verify what actually happened; and to combine that information.</p>
<h3>10) What do you think is the future of online journalist? Do you believe it will become more integrated with social media or will it follow a different path and create a more separate identity?</h3>
<p>Predicting the future is always going to be difficult because you cannot anticipate new developments. But those aside, I think economic demands will spur more collaborative journalism, which will mean more use of social media. Imagine asking someone 80 years ago if they thought the future of journalism would see it ‘more integrated with the telephone’. Communications technologies are going to be used by media industries: it’s a natural fit.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F12%2Ffaq-blogging-inspirations-tools-and-trends%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div align="center"><a href="http://twitter.com/paulbradshaw" target="_blank" onclick="urchinTracker('/outgoing/twitter.com/paulbradshaw?referer=');"><img src="http://onlinejournalismblog.com/wp-content/plugins/igit-follow-me-after-post-button-new/twitter8.png" /></a><div style="font-size:8px;"><a href="http://php-freelancer.in/" style="color:#D2D2D2" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer"  onclick="urchinTracker('/outgoing/php-freelancer.in/?referer=');">PHP Freelancer</a></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=10vQ3oaoCnU:5C637bF-KkM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/05/12/faq-blogging-inspirations-tools-and-trends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://onlinejournalismblog.com/2012/05/12/faq-blogging-inspirations-tools-and-trends/</feedburner:origLink></item>
		<item>
		<title>‘Chunking’ online content? Don’t assume we start at the same point</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/3aTZHELzy8g/</link>
		<comments>http://onlinejournalismblog.com/2012/05/08/chunking-online-content-dont-assume-we-start-at-the-same-point/#comments</comments>
		<pubDate>Tue, 08 May 2012 15:11:19 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[online journalism]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Andy Dickinson]]></category>
		<category><![CDATA[chunking]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[interfaces]]></category>
		<category><![CDATA[Mindy McAdams]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=16355</guid>
		<description><![CDATA[Online multimedia production has for a few years now come with the guidance to &#8216;chunk&#8217; content: instead of producing linear content, as you would for a space in a linear broadcast schedule, you split your content into specific chunks of material that each tackles a different aspect of the issue or story being covered. Interfaces [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F08%2Fchunking-online-content-dont-assume-we-start-at-the-same-point%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F05_2F08_2Fchunking-online-content-dont-assume-we-start-at-the-same-point_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F08%2Fchunking-online-content-dont-assume-we-start-at-the-same-point%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Online multimedia production has for a few years now come with the guidance to &#8216;chunk&#8217; content: instead of producing linear content, as you would for a space in a linear broadcast schedule, you split your content into specific chunks of material that each tackles a different aspect of the issue or story being covered. Interfaces like these show the idea in practice best:</p>
<p><img class="alignnone" src="http://www.paulcomptondesign.com/images/carousel/experienced/e4.jpg" alt="Being a Black Man interactive" width="640" height="298" /></p>
<p>The concept is particularly well explained by <a href="http://www.macloo.com/webwriting/chunks.htm" onclick="urchinTracker('/outgoing/www.macloo.com/webwriting/chunks.htm?referer=');">Mindy McAdams</a> (on text), and Andy Dickinson (on video, below):<span id="more-16355"></span></p>
<blockquote><p>&#8220;[T]ake an existing package and break it in to its key parts. Write a description of each chunk on to a card or post-it note. Lay them out in a line and then for each card add another for content you didn’t use at that point or expands on the content.</p></blockquote>
<div><img src="http://www.andydickinson.net/wp-content/uploads/2007/03/car1.jpg" alt="car1.jpg" /></div>
<blockquote><p>&#8220;Then try moving the content around in to sections that fit together. Pretty soon you will have the bare bones of a possible multimedia package.</p></blockquote>
<div><a href="http://www.andydickinson.net/2007/03/12/moving-from-tv-to-online/" onclick="urchinTracker('/outgoing/www.andydickinson.net/2007/03/12/moving-from-tv-to-online/?referer=');"><img src="http://www.andydickinson.net/wp-content/uploads/2007/03/car2.jpg" alt="Chunking video content" width="400" height="258" /></a></div>
<p>Talking with some students recently about their own multimedia projects, however, I realised a weakness with the approach: <strong>we tend to assume that everyone comes to the story through the same interface</strong>.</p>
<p>And this is wrong.</p>
<p>While the practice of chunking multimedia was becoming semi-conventional, another convention was forming: <a href="http://engage.tmgcustommedia.com/2011/01/what-if-we-treated-every-page-like-our-homepage/" onclick="urchinTracker('/outgoing/engage.tmgcustommedia.com/2011/01/what-if-we-treated-every-page-like-our-homepage/?referer=');">every page is a homepage</a>.</p>
<p>But in multimedia interactives, there&#8217;s only one homepage: the interface.</p>
<h2>Rethinking the interface</h2>
<p>When most multimedia interactives were Flash-based, this wasn&#8217;t a problem, because Flash doesn&#8217;t allow you to go &#8216;back&#8217; or &#8216;forward&#8217; between URLs so there was no need to consider the possibility of a user entering the interactive at different points (unless you split it into separate movies on different webpages). The whole movie sits on one URL, and you start at&#8230; the start.</p>
<p>With more and more interactive work using HTML5 or Javascript, however, that becomes a problem. Or rather: an <em>opportunity</em>.</p>
<p>As I&#8217;ve worked with students on <a href="http://onlinejournalismblog.com/2012/02/02/moving-away-from-the-story-5-roles-of-an-online-investigations-team/">investigations which were &#8217;chunked&#8217; into different elements (data; multimedia; explainers; case studies</a>) I&#8217;ve noticed the same opportunity: each &#8216;chunk&#8217; is its own homepage: a possible entry point for users into the investigation as a whole.</p>
<p>And that means being clear about the angle on each chunk &#8211; not just the product as a whole.</p>
<p>So if your multimedia interactive allows users to browse through a series of interviews, ask: what&#8217;s most newsworthy about each? What&#8217;s my headline to this, if I assume they haven&#8217;t seen any of the other related material? What other material might they want to see next? Will they want to share this individual element? Indeed, should it be published elsewhere too, if it isn&#8217;t already? How can it be best optimised for search engines?</p>
<p>In short, the interface is just our choice of arrangement for a set of multimedia elements. Our homepage: not, necessarily, everyone else&#8217;s.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F08%2Fchunking-online-content-dont-assume-we-start-at-the-same-point%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div align="center"><a href="http://twitter.com/paulbradshaw" target="_blank" onclick="urchinTracker('/outgoing/twitter.com/paulbradshaw?referer=');"><img src="http://onlinejournalismblog.com/wp-content/plugins/igit-follow-me-after-post-button-new/twitter8.png" /></a><div style="font-size:8px;"><a href="http://php-freelancer.in/" style="color:#D2D2D2" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer"  onclick="urchinTracker('/outgoing/php-freelancer.in/?referer=');">PHP Freelancer</a></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=3aTZHELzy8g:K9NdB5EnbOQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/05/08/chunking-online-content-dont-assume-we-start-at-the-same-point/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://onlinejournalismblog.com/2012/05/08/chunking-online-content-dont-assume-we-start-at-the-same-point/</feedburner:origLink></item>
		<item>
		<title>Create a council ward map with Scraperwiki</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/lBsjA0865dw/</link>
		<comments>http://onlinejournalismblog.com/2012/05/02/create-a-council-ward-map-with-scraperwiki/#comments</comments>
		<pubDate>Wed, 02 May 2012 10:19:56 +0000</pubDate>
		<dc:creator>danielbentley</dc:creator>
				<category><![CDATA[data journalism]]></category>
		<category><![CDATA[council wards]]></category>
		<category><![CDATA[elections]]></category>
		<category><![CDATA[fusion tables]]></category>
		<category><![CDATA[guest post]]></category>
		<category><![CDATA[KML]]></category>
		<category><![CDATA[mapit]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[scraperwiki]]></category>
		<category><![CDATA[scraping]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=16290</guid>
		<description><![CDATA[With local elections looming this is a great 20-30 minute project for any journalist wanting to create an interactive Google map of council ward boundaries. For this you will need: A Google account with Docs A Scraperwiki account Access to webspace to host an html file Firstly we want to scrape the council ward geometry [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F02%2Fcreate-a-council-ward-map-with-scraperwiki%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F05_2F02_2Fcreate-a-council-ward-map-with-scraperwiki_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F02%2Fcreate-a-council-ward-map-with-scraperwiki%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.16.41.png"><img src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.16.41.png" alt="Mapping council wards" width="398" height="294" /></a></p>
<p>With local elections looming this is a great 20-30 minute project for any journalist wanting to create an interactive Google map of council ward boundaries.</p>
<p>For this you will need:</p>
<ul>
<li><a href="http://docs.googlecom" target="_blank" onclick="urchinTracker('/outgoing/docs.googlecom?referer=');">A Google account with Docs</a></li>
<li><a href="https://scraperwiki.com/login/#signup" target="_blank" onclick="urchinTracker('/outgoing/scraperwiki.com/login/_signup?referer=');">A Scraperwiki account</a></li>
<li>Access to webspace to host an html file<span id="more-16290"></span></li>
</ul>
<p>Firstly we want to scrape the council ward geometry data held by <a href="http://mapit.mysociety.org" target="_blank" onclick="urchinTracker('/outgoing/mapit.mysociety.org?referer=');">MaPit by mysociety.org</a> and spit it out into a CSV file format that is compatible with Google&#8217;s mapping tools.</p>
<h2>Getting the ID for the council ward</h2>
<p>Go to the MaPit homepage and use the postcode search for a point in the town/city you want the ward data for. In the example I&#8217;ve searched using a Preston postcode.</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.31.07.png"><img class="alignnone size-full wp-image-16295" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.31.07.png" alt="" width="830" height="467" /></a></p>
<p>Then in the results page find the council you want data for and note down the id number next to it.</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.31.43.png"><img class="alignnone size-full wp-image-16294" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.31.43.png" alt="" width="827" height="573" /></a></p>
<h2>Adapting a scraper to scrape that council ward&#8217;s geometry</h2>
<p>Now login to your Scraperwiki and visit this page for <a href="https://scraperwiki.com/scrapers/council_ward_geometry/" target="_blank" onclick="urchinTracker('/outgoing/scraperwiki.com/scrapers/council_ward_geometry/?referer=');">reclosedev&#8217;s council ward scraper</a>. Click &#8216;Copy&#8217; and you&#8217;ll be taken to a code editor page.</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.39.16.png"><img class="alignnone size-full wp-image-16296" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.39.16.png" alt="" width="956" height="147" /></a></p>
<p>On Line 10 of the code you should see:</p>
<pre style="padding-left: 30px">10: PARENT_ID = 2366  # Preston City Council</pre>
<p>Change the 2366 value to the MaPit id of your council and change Preston City Council (anything after <strong>#</strong> is a <strong>comment</strong> and isn&#8217;t important to the code but it is useful to keep track of what you&#8217;re scraping).</p>
<p>Once you&#8217;d done this hit &#8216;Save Scraper&#8217;  the &#8216;Back to scraper overview&#8217;. This will take you to your own Scraperwiki page where the scraper is saved. It would be useful at this point to click on the pen symbol next to the scraper name and rename it &#8216;Your Council Ward geometry data&#8217;.</p>
<p>Then click <strong>RUN</strong> (or CTRL+R) to run your scraper, and wait a while for it to complete (usually no more than a couple of minutes).</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.46.47.png"><img class="alignnone size-medium wp-image-16297" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.46.47-300x57.png" alt="" width="300" height="57" /></a></p>
<p>When it has completed running, click <strong>Back to scraper overview</strong> (upper right) and on the section titled <strong>This scraper&#8217;s datastore</strong> click the <strong>swdata</strong> tab and you should see something similar to this:</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.48.38.png"><img class="alignnone size-full wp-image-16298" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-19.48.38.png" alt="" width="944" height="608" /></a></p>
<p>The first column contains the shape/geometry data of the council ward and the third column contains its name. Does it look right? Then hit <strong>download</strong> (in the upper right of this image) and choose <strong>CSV</strong> as the format.</p>
<p>CSV or comma separate values is an open table format readable by Excel, OpenOffice and Google Docs and any text editor.</p>
<p>We&#8217;re going to use Google Fusion Tables to convert the data to a map.</p>
<h2>Mapping the data</h2>
<p>Head over to your Google Docs account (or Drive if you&#8217;ve been switched over) and hit <strong>Create &gt; Table</strong>. When it asks you to import a new table choose and upload the CSV file you downloaded. On the next page you&#8217;ll be asked to specify the columns to import, leave this page as default and click <strong>Next</strong>.</p>
<p>On the next page name your table and attribute the data to the MaPit. Click <strong>Finish</strong>. We&#8217;re nearly there!</p>
<p>Under the <strong>Visualize</strong> menu item click <strong>Map</strong> and you&#8217;ll probably see a red blob similar to this.</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.02.08.png"><img class="alignnone size-full wp-image-16300" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.02.08.png" alt="" width="1025" height="588" /></a></p>
<p>If you want to make it prettier you can style this clicking &#8216;<strong>Configure styles&#8217;</strong>  and changing the settings for &#8216;<strong>Polygons</strong>&#8216;.</p>
<p>When you&#8217;re happy with the settings for that click inside one of your council wards. You should get a window like this:</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.06.04.png"><img class="alignnone size-full wp-image-16301" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.06.04.png" alt="" width="569" height="414" /></a></p>
<p>Not all that informative is it? To make it a bit more useful click &#8216;Configure info window&#8217; then select the &#8216;Custom&#8217; tab, delete what&#8217;s there and enter this code.</p>
<blockquote>
<pre>&lt;div class='googft-info-window' style='font-family: sans-serif'&gt;
 &lt;h2&gt;&lt;a href="http://mapit.mysociety.org/area/{id}.html" target="_blank"&gt;{name}&lt;/a&gt;&lt;/h2&gt;&lt;br&gt;
 &lt;/div&gt;</pre>
</blockquote>
<p>Which will give you a link to the MapIt within the information box:</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.16.41.png"><img class="alignnone size-full wp-image-16307" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.16.41.png" alt="" width="569" height="420" /></a></p>
<p>The final step is to embed this map in your webpage.</p>
<p>First click &#8216;<strong>Share</strong>&#8216; in the top right corner of the table page (not the Google+ sharebox) and change to either Public or Unlisted. Then hit <strong>File &gt; About</strong> and note down the Numeric ID.</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.19.52.png"><img class="alignnone size-full wp-image-16308" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.19.52.png" alt="" width="584" height="116" /></a></p>
<p>Go to the <a href="http://fusion-tables-api-samples.googlecode.com/svn/trunk/FusionTablesLayerWizard/src/index.html" target="_blank" onclick="urchinTracker('/outgoing/fusion-tables-api-samples.googlecode.com/svn/trunk/FusionTablesLayerWizard/src/index.html?referer=');">FusionTables LayerWizard</a> and enter this id in the first box. For location column select &#8216;<strong>kml</strong>&#8216; then hit &#8216;<strong>Put layer on map</strong>&#8216;.</p>
<p><em>Optional</em>: Click &#8216;<strong>Add a search feature</strong>&#8216; and &#8216;<strong>select based search</strong>&#8216;. For &#8216;<em>Select Label</em>&#8216; enter Search by ward name and for &#8216;<em>Column to query</em>&#8216; select &#8216;name&#8217;. Then <strong>add</strong>. What this allows you to do is to easily select the ward you want to view.</p>
<p>Zoom in to the Preview map to how you want the map displayed. Then copy and paste the code generated below into an html editor or plain text editor of your choice.</p>
<p>Replace lines 4-6</p>
<blockquote>
<pre>&lt;style&gt;
 #map-canvas { width:500px; height:400px; }
 &lt;/style&gt;</pre>
</blockquote>
<p>with this</p>
<blockquote>
<pre>&lt;style type="text/css"&gt;
 html { height: 100% }
 body { height: 100%; margin: 0; padding: 0 }
 #map-canvas { height: 100% }
 &lt;/style&gt;</pre>
</blockquote>
<p>Then cut line 43</p>
<blockquote>
<pre>&lt;div id="map-canvas"&gt;&lt;/div&gt;</pre>
</blockquote>
<p>and paste it at the end of the page between &lt;/div&gt; and &lt;/body&gt; like so&#8230;</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.42.43.png"><img class="alignnone size-full wp-image-16311" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.42.43.png" alt="" width="532" height="226" /></a></p>
<p>Save the file with the .html extension and try opening it in your browser. It should look a little like this.</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.45.32.png"><img class="alignnone size-large wp-image-16312" src="http://onlinejournalismblog.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-01-at-20.45.32-1024x605.png" alt="" width="1024" height="605" /></a></p>
<p>Upload this page to your webspace. Now you can either link to it or embed it in an iframe. This sample code should work for most purposes.</p>
<blockquote>
<pre>&lt;iframe id="ifrm" src="http://your.map.page/here.html" width="NUMBEROFPIXELS" height="NUMBER OF PIXELS"&gt;Your browser does not support iframes.&lt;/iframe&gt;</pre>
</blockquote>
<p><a href="http://openpreston.appspot.com/mapdemo.html" target="_blank" onclick="urchinTracker('/outgoing/openpreston.appspot.com/mapdemo.html?referer=');">Ta da!</a></p>
<p>This is really just scratching the surface of what Scraperwiki and Fusion Tables can do but I hope it served as an easy-ish introduction to them both. If this tutorial did not work for you or if you have any questions then leave a comment and I&#8217;ll help out as much I can.</p>
<p>&nbsp;</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F02%2Fcreate-a-council-ward-map-with-scraperwiki%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div align="center"><a href="http://twitter.com/paulbradshaw" target="_blank" onclick="urchinTracker('/outgoing/twitter.com/paulbradshaw?referer=');"><img src="http://onlinejournalismblog.com/wp-content/plugins/igit-follow-me-after-post-button-new/twitter8.png" /></a><div style="font-size:8px;"><a href="http://php-freelancer.in/" style="color:#D2D2D2" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer"  onclick="urchinTracker('/outgoing/php-freelancer.in/?referer=');">PHP Freelancer</a></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=lBsjA0865dw:gMwGHPG8kKw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/05/02/create-a-council-ward-map-with-scraperwiki/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://onlinejournalismblog.com/2012/05/02/create-a-council-ward-map-with-scraperwiki/</feedburner:origLink></item>
		<item>
		<title>Finding images and multimedia for your news project (without breaking copyright laws)</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/eo_L4N-MqBM/</link>
		<comments>http://onlinejournalismblog.com/2012/05/01/finding-images-and-multimedia-for-your-news-project-without-breaking-copyright-laws/#comments</comments>
		<pubDate>Tue, 01 May 2012 08:00:03 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[regulation, law and ethics]]></category>
		<category><![CDATA[UGC]]></category>
		<category><![CDATA[After Effects]]></category>
		<category><![CDATA[Angela Grant]]></category>
		<category><![CDATA[Audiosocket]]></category>
		<category><![CDATA[clip art]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[Creative Commons]]></category>
		<category><![CDATA[embedding]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[Irish Daily Mail]]></category>
		<category><![CDATA[istockphoto]]></category>
		<category><![CDATA[licences]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[Pond5]]></category>
		<category><![CDATA[public domain]]></category>
		<category><![CDATA[royalty free]]></category>
		<category><![CDATA[SmartSound]]></category>
		<category><![CDATA[stock]]></category>
		<category><![CDATA[Stock.XCHNG]]></category>
		<category><![CDATA[vimeo]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15532</guid>
		<description><![CDATA[Whether you need an image for your blog post, a soundtrack to your video or that YouTube clip for your documentary, if you&#8217;re dealing with multimedia it&#8217;s likely you&#8217;ll end up using &#8211; or wanting to use &#8211; someone else&#8217;s work as part of your own. Here are some basic tips on finding and using [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F01%2Ffinding-images-and-multimedia-for-your-news-project-without-breaking-copyright-laws%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F05_2F01_2Ffinding-images-and-multimedia-for-your-news-project-without-breaking-copyright-laws_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F01%2Ffinding-images-and-multimedia-for-your-news-project-without-breaking-copyright-laws%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<figure class="wp-caption alignnone" style="width: 500px"><a href="http://www.flickr.com/photos/gaelx/6915188757/" onclick="urchinTracker('/outgoing/www.flickr.com/photos/gaelx/6915188757/?referer=');"><img src="http://farm8.staticflickr.com/7052/6915188757_b176fbdf0f.jpg" alt="For copyright reasons image is not available (badge)" width="500" height="500" /></a><figcaption class="wp-caption-text">Image by gaelx</figcaption></figure>
<p>Whether you need an image for your blog post, a soundtrack to your video or that YouTube clip for your documentary, if you&#8217;re dealing with multimedia it&#8217;s likely you&#8217;ll end up using &#8211; or wanting to use &#8211; someone else&#8217;s work as part of your own.</p>
<p>Here are some basic tips on finding and using multimedia across the web in a way that won&#8217;t (hopefully) land you in hot water.<span id="more-15532"></span></p>
<h2>The public domain myth</h2>
<p>One of the mistakes that has repeatedly landed journalists and their employers in trouble is confusion over the term &#8220;<strong>public domain</strong>&#8220;.</p>
<p>Public domain has two possible meanings. In copyright terms, public domain refers to <strong>work whose copyright has expired</strong>, meaning that anyone can use it without having to ask the copyright holder. Disney &#8211; a fierce lobbyist itself for <a href="http://opendotdotdot.blogspot.co.uk/2010/05/how-they-stole-public-domain.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+blogspot/cBoI+(open...)&amp;utm_content=Google+Reader" onclick="urchinTracker('/outgoing/opendotdotdot.blogspot.co.uk/2010/05/how-they-stole-public-domain.html?utm_source=feedburner_amp_utm_medium=feed_amp_utm_campaign=Feed_+blogspot/cBoI+_open..._amp_utm_content=Google+Reader&amp;referer=');">extending copyright</a> &#8211; has used &#8216;public domain&#8217; material as the basis for most of its cartoons, from the work of the Grimm Brothers to a host of other fairy tales, myths and legends.</p>
<p>But sometimes you will hear journalists talk about something being &#8220;<strong>in the public domain</strong>&#8220;, in other words &#8216;public&#8217;. For instance, when the <a href="http://onlinejournalismblog.com/2010/01/28/another-newspaper-that-doesnt-know-copyright-law-or-ethics/">Irish Daily Mail published photos of an air traffic controller from her website</a>, they defended the decision on the grounds that the image was &#8220;in the public domain&#8221;.</p>
<p>But <strong>this is not the same</strong>.</p>
<p>For example, pretty much every piece of media, almost by definition, is &#8220;in the public domain&#8221;. Newspapers and magazines sit on the newsstands; television and radio reports are broadcast on huge city centre screens and speakers.</p>
<p>But if you take that content and reproduce it in its entirety without permission, you are breaking copyright law.</p>
<p>It seems odd that media organisations so used to protecting their own, very public, content, should think that another person&#8217;s photo, or video, or report, should be fair game because it is &#8220;in the public domain&#8221;. But they do.</p>
<p>If you want public domain (in the sense of &#8216;copyright expired&#8217;) content, there are some useful sources. The <a href="http://publicdomainreview.org/" onclick="urchinTracker('/outgoing/publicdomainreview.org/?referer=');">Public Domain Review</a>, for example, publishes a range of public domain work and has <a href="http://publicdomainreview.org/guide-to-finding-interesting-public-domain-works-online/" onclick="urchinTracker('/outgoing/publicdomainreview.org/guide-to-finding-interesting-public-domain-works-online/?referer=');">this guide to finding them</a>. And <strong>Angela Grant</strong> <a href="http://newsvideographer.com/2010/06/03/how-to-find-public-domain-video/" onclick="urchinTracker('/outgoing/newsvideographer.com/2010/06/03/how-to-find-public-domain-video/?referer=');">writes here about finding public domain video</a>, among other things (note that Angela refers to US law, not that of other countries).</p>
<p>But never assume something is public domain because it is &#8220;in public&#8221;.</p>
<p>One point to make: while an image, story, or composition may be out of copyright, its performance, re-design or re-telling may not.</p>
<p>Just ask Disney.</p>
<h2>Creative Commons &#8211; making UGC copyright explicit</h2>
<p>If you&#8217;re dealing with content that&#8217;s been published on a platform like Flickr or YouTube, you may be able to find out the copyright status of that content relatively easily.</p>
<p>Both allow users to easily establish copyright through the Creative Commons licence. You can either look for that licence in the relevant part of the page hosting the content.</p>
<p>On YouTube it is under the video:</p>
<figure class="wp-caption alignnone" style="width: 659px"><a href="http://www.youtube.com/t/creative_commons" onclick="urchinTracker('/outgoing/www.youtube.com/t/creative_commons?referer=');"><img src="http://s.ytimg.com/yt/img/pic_cc_on_watch-vflPSHaZB.png" alt="YouTube licensing information" width="659" height="240" /></a><figcaption class="wp-caption-text">Where to find a YouTube video&#039;s licensing information - image from YouTube. Click to see original in context.</figcaption></figure>
<p>On Flickr this is on the right hand side under <strong>License</strong>:</p>
<figure id="attachment_16269" class="wp-caption alignnone" style="width: 329px"><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/04/Flickr_licence.png"><img class="size-full wp-image-16269" src="http://onlinejournalismblog.com/wp-content/uploads/2012/04/Flickr_licence.png" alt="Flickr licence" width="329" height="257" /></a><figcaption class="wp-caption-text">Look for an image&#039;s licensing information on Flickr on the right hand column</figcaption></figure>
<p>Make sure you click on that licence to find out what terms it requires.</p>
<p>Creative Commons, for example, has a number of elements:</p>
<ul>
<li>Whether the material can be used only in noncommercial contexts, or for commercial use as well</li>
<li>Whether the material can be adapted and changed, or must be left unchanged</li>
<li>Whether you must use the same CC licence if you use this material (e.g. you cannot use a noncommercial licence but then allow your work to be used commercially)</li>
<li>Whether you must <strong>attribute</strong> the work (this is where many people breach the licence)</li>
</ul>
<p>If you&#8217;re unsure of where your work fits against those criteria (for example, whether it&#8217;s considered as &#8220;commercial&#8221;), then approach the copyright holder for clarity. Remember that the CC licence is only a default position, and can be negotiated. Also, if you cannot get any response and decide to publish anyway, your attempts to contact the copyright holder will be important if there are any legal proceedings.</p>
<p>If you want others to publish their content under a CC licence, it helps if you publish at least some of your own work under a CC licence too. Indeed, if it contains other CC material, their licences may require you to.</p>
<div>
<p>Flickr and YouTube aren&#8217;t the only sites that use Creative Commons licences, of course. To search for media under a CC licence (including on those sites), use <a href="http://search.creativecommons.org/" onclick="urchinTracker('/outgoing/search.creativecommons.org/?referer=');">the search facility on the Creative Commons site</a> and select the engine you want to search through.</p>
<p>There are also specialist sites for sharing music under CC, such as <a href="http://www.freesound.org/" onclick="urchinTracker('/outgoing/www.freesound.org/?referer=');">Freesound</a>.</p>
<p>Even if the media you are interested in using does not use a CC licence, of course, you can still approach the copyright holder for permission to use it.</p>
</div>
<h2>Embedding versus re-broadcasting</h2>
<p>If the media is hosted on a platform like YouTube, you may be able to <em>embed</em> it on a webpage without seeking permission at all: if the creator* has enabled embedding then they would have little argument in suing for breach of copyright because a) by enabling embedding they have given an &#8216;implied&#8217; right; and b) they could stop you publishing it instantly by disabling embedding. Also, your embedding of their media would not lead to any loss of revenue (as advertising is embedded too), so it is unlikely that there would be any damages to sue for.</p>
<p><em>*note: this does not apply to video created by other people and uploaded by someone other than the copyright holder.</em></p>
<h2>Reality bites</h2>
<p>Of course, it&#8217;s one thing to talk about the strict legal position, and another to talk about what actually happens. Journalists regularly publish content that breaks the law &#8211; but make a judgement about the likelihood of ending up in court over that. For example, I can say that the Queen is corrupt (a defamatory statement) and be almost certain that the Queen is not going to sue me (because she has a history of not doing so).</p>
<p>Media lawyers are not just there to advise publishers on their strict legal position, but on the balance of risk involved, and how to reduce those risks. While you cannot always avoid risks, you can avoid them in simple ways:</p>
<ul>
<li>Always try to establish the copyright situation regarding any media you use: who holds the copyright (there may be more than one copyright owner: for example, performer and composer), and what are the terms of the licence?</li>
<li>Try to contact the copyright holder if you&#8217;re in any doubt &#8211; even if you can&#8217;t contact them your efforts to do so will help you if you do end up in court.</li>
<li>Always attribute authorship and link to the source (this can be done in title credits, captions and/or links on the host webpage). Copyright claims normally revolve around loss of earnings: anything that may have contributed to that (i.e. not linking to the source) will likely add to damages.</li>
</ul>
<div>
<h2>Minimal cost and royalty free</h2>
<p>&#8216;Royalty free&#8217; is a vague term which is often confused with, simply, &#8216;free&#8217;. It most often refers to media which is paid for once and can then be used multiple times in different contexts. For example, you might pay for a CD of &#8216;royalty free&#8217; music or sound effects which can be used across multiple video projects &#8211; saving you the hassle of acquiring permissions every time for different music.</p>
<p>Or you might buy a CD of royalty free images (clip art, for example) that you can use across various design projects.</p>
<p>If you&#8217;re studying in a school of media, or working in a large media organisation, they will probably have some royalty free media for students or employees to use &#8211; so ask around to find out what&#8217;s available.</p>
<p>But don&#8217;t use it for the sake of it: the quality can vary. In addition, many other media projects may have relied on the same libraries, so you can lose distinctiveness.</p>
<p>You should also be aware that the licences of even so-called &#8216;royalty free&#8217; material can be restrictive: <a href="http://en.wikipedia.org/wiki/Royalty-free_music" onclick="urchinTracker('/outgoing/en.wikipedia.org/wiki/Royalty-free_music?referer=');">the Wikipedia entry on royalty free music</a> notes that &#8220;the royalty-free music license at <a title="SmartSound" href="http://en.wikipedia.org/wiki/SmartSound" onclick="urchinTracker('/outgoing/en.wikipedia.org/wiki/SmartSound?referer=');">SmartSound</a> states &#8220;You must obtain a &#8220;mechanical&#8221; license for replication of quantities in excess of 10,000 units.&#8221; (<a href="http://www.smartsound.com/products/licenseinfo.html" onclick="urchinTracker('/outgoing/www.smartsound.com/products/licenseinfo.html?referer=');">Read the licence here</a>)</p>
<p>Thankfully for those who want more diversity, the internet has made new types of royalty free media &#8211; and new pricing &#8211; possible, as a wider range of photographers and other media creators can now sell their work through online marketplaces.</p>
<p><a href="http://www.pond5.com/" onclick="urchinTracker('/outgoing/www.pond5.com/?referer=');">Pond5</a> has sound effects, photos, video, illustrations, music and even <a href="http://www.pond5.com/after-effects/1/*.html" onclick="urchinTracker('/outgoing/www.pond5.com/after-effects/1/_.html?referer=');">After Effects projects</a> from $2 up &#8211; as well as occasional <a href="http://www.pond5.com/free-sound-effects" onclick="urchinTracker('/outgoing/www.pond5.com/free-sound-effects?referer=');">free material</a>. <a href="http://www.istockphoto.com/" onclick="urchinTracker('/outgoing/www.istockphoto.com/?referer=');">iStockphoto</a> covers most of those, and adds <a href="http://www.istockphoto.com/flash" onclick="urchinTracker('/outgoing/www.istockphoto.com/flash?referer=');">Flash files</a> too &#8211; again at often very cheap prices. Quality, however, does cost more.</p>
<p><a href="http://www.sxc.hu/" onclick="urchinTracker('/outgoing/www.sxc.hu/?referer=');">Stock.XCHNG</a> deserves special mention, boasting that it is the world&#8217;s &#8220;leading free stock photo site&#8221; and hosting thousands of royalty free images. Even if the image is &#8216;free&#8217;, however, it&#8217;s only free under the terms of the licence &#8211; so always check them.</p>
<p>On the audio front, there are sites like <a href="http://audiosocket.com/" onclick="urchinTracker('/outgoing/audiosocket.com/?referer=');">Audiosocket</a>, which allow you to browse and licence independent music for your film (if you use Vimeo <a href="http://techcrunch.com/2011/09/21/vimeo-launches-audiosocket-powered-music-store-to-bring-tunes-to-video/" onclick="urchinTracker('/outgoing/techcrunch.com/2011/09/21/vimeo-launches-audiosocket-powered-music-store-to-bring-tunes-to-video/?referer=');">you can also add this through their music store</a>).</p>
<p>If you know of other sources or issues to consider in finding material for multimedia, I&#8217;d love to know.</p>
</div>
<p><em>For more on these issues, and for related tools and links, see my bookmarks at <a href="http://delicious.com/paulb/creativecommons" onclick="urchinTracker('/outgoing/delicious.com/paulb/creativecommons?referer=');">http://delicious.com/paulb/creativecommons</a></em></p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F05%2F01%2Ffinding-images-and-multimedia-for-your-news-project-without-breaking-copyright-laws%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div align="center"><a href="http://twitter.com/paulbradshaw" target="_blank" onclick="urchinTracker('/outgoing/twitter.com/paulbradshaw?referer=');"><img src="http://onlinejournalismblog.com/wp-content/plugins/igit-follow-me-after-post-button-new/twitter8.png" /></a><div style="font-size:8px;"><a href="http://php-freelancer.in/" style="color:#D2D2D2" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer" title="PHP Freelancer , PHP Freelancer India , Hire PHP Freelancer"  onclick="urchinTracker('/outgoing/php-freelancer.in/?referer=');">PHP Freelancer</a></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=eo_L4N-MqBM:8RRxl9sTu08:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/05/01/finding-images-and-multimedia-for-your-news-project-without-breaking-copyright-laws/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://onlinejournalismblog.com/2012/05/01/finding-images-and-multimedia-for-your-news-project-without-breaking-copyright-laws/</feedburner:origLink></item>
		<item>
		<title>Working With Excel Spreadsheet Files Without Using Excel…</title>
		<link>http://feedproxy.google.com/~r/onlinejournalismblog/~3/QeUjjj7KQ6g/</link>
		<comments>http://blog.ouseful.info/2012/04/30/working-with-excel-files-without-using-excel/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 11:58:54 +0000</pubDate>
		<dc:creator>Tony Hirst</dc:creator>
				<category><![CDATA[data]]></category>
		<category><![CDATA[onlinejournalismblog]]></category>

		<guid isPermaLink="false">http://blog.ouseful.info/?p=7698</guid>
		<description><![CDATA[One of the most frequently encountered ways of sharing small datasets is in the form of Excel spreadsheet (.xls) files, notwithstanding all that can be said In Praise of CSV;-) The natural application for opening these files is Microsoft Excel, but what if you don&#8217;t have a copy of Excel available? There are other desktop [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ouseful.info&#38;blog=325417&#38;post=7698&#38;subd=ouseful&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the most frequently encountered ways of sharing small datasets is in the form of Excel spreadsheet (.xls) files, notwithstanding all that can be said <a href="http://blog.datamarket.com/2012/04/17/in-praise-of-csv/" onclick="urchinTracker('/outgoing/blog.datamarket.com/2012/04/17/in-praise-of-csv/?referer=');">In Praise of CSV</a>;-) The natural application for opening these files is Microsoft Excel, but what if you don&#8217;t have a copy of Excel available?</p>
<p>There are other desktop office suites that can open spreadsheet files, of course, such as Open Office. As long as they&#8217;re not too big, spreadsheet files can also be uploaded to and then opened using a variety of online services, such as Google Spreadsheets, Google Fusion Tables or Zoho Sheet. But spreadsheet applications aren&#8217;t the only data wrangling tools that can be used to open xls files&#8230; Here are a couple more that should be part of every data wrangler&#8217;s toolbox&#8230;</p>
<p>(If you want to play along, the file I&#8217;m going to play with is a spreadsheet containing the names and locations of GP practices in England. The file can be found on the <a href="https://indicators.ic.nhs.uk/webview/" onclick="urchinTracker('/outgoing/indicators.ic.nhs.uk/webview/?referer=');">NHS Indicators portal</a> &#8211; here&#8217;s <a href="https://indicators.ic.nhs.uk/download/GP%20Practice%20data/summaries/demography/Practice%20Addresses%20Final.xls" onclick="urchinTracker('/outgoing/indicators.ic.nhs.uk/download/GP_20Practice_20data/summaries/demography/Practice_20Addresses_20Final.xls?referer=');">the actual spreadsheet</a>.)</p>
<p><a href="http://ouseful.files.wordpress.com/2012/04/gp-practices-location-file.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/04/gp-practices-location-file.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/04/gp-practices-location-file.png?w=700&h=476" alt="" title="GP Practices location file" width="700" height="476" class="alignnone size-full wp-image-7706" /></a></p>
<p>Firstly, <a href="http://code.google.com/p/google-refine/" onclick="urchinTracker('/outgoing/code.google.com/p/google-refine/?referer=');">Google Refine</a>. Google Refine is a cross-platform, browser based tool that helps with many of the chores relating to getting a dataset tidied up so that you can use it elsewhere, as well as helping out with data reconcilation or augmenting rows with annotations provided by separate online services. You can also use it as a quick-and-dirty tool for opening an xls spreadsheet from a URL, knocking the data into shape, and dumping it to a CSV file that you can use elsewhere. To start with, choose the option to create a project by importing a file from a web address (the XLS spreadsheet URL):</p>
<p><a href="http://ouseful.files.wordpress.com/2012/04/google-refine-import.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/04/google-refine-import.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/04/google-refine-import.png?w=700&h=174" alt="" title="google refine import" width="700" height="174" class="alignnone size-full wp-image-7705" /></a></p>
<p>Once loaded, you get a preview view..</p>
<p><a href="http://ouseful.files.wordpress.com/2012/04/google-refine-importing-xls.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/04/google-refine-importing-xls.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/04/google-refine-importing-xls.png?w=700&h=398" alt="" title="google refine - importing xls" width="700" height="398" class="alignnone size-full wp-image-7704" /></a></p>
<p>You can tidy up the data that you are going to use in your project via the preview panel. In this case, I&#8217;m going to ignore the leading lines and just generate a dataset that I can export directly as a CSV file once I&#8217;ve got the data into my project.</p>
<p><a href="http://ouseful.files.wordpress.com/2012/04/importing-xls-with-config.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/04/importing-xls-with-config.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/04/importing-xls-with-config.png?w=700&h=380" alt="" title="importing xls with config" width="700" height="380" class="alignnone size-full wp-image-7703" /></a></p>
<p>If I then create a project around this dataset, I can trivially export it again using a format of my own preference:</p>
<p><a href="http://ouseful.files.wordpress.com/2012/04/google-refine-export.png" onclick="urchinTracker('/outgoing/ouseful.files.wordpress.com/2012/04/google-refine-export.png?referer=');"><img src="http://ouseful.files.wordpress.com/2012/04/google-refine-export.png?w=700&h=283" alt="" title="google refine export" width="700" height="283" class="alignnone size-full wp-image-7708" /></a></p>
<p>So that&#8217;s one way of using Google Refine as a simple file converter service that allows you to preview and to a certain extent shape the data in XLS spreadsheet, as well as converting it to other file types.</p>
<p>The second approach I want to mention is to use a really handy Python software library (<a href="https://secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html" onclick="urchinTracker('/outgoing/secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html?referer=');">xlrd &#8211; Excel Reader</a>) in Scraperwiki. The <a href="https://scraperwiki.com/docs/python/python_excel_guide/" onclick="urchinTracker('/outgoing/scraperwiki.com/docs/python/python_excel_guide/?referer=');">Scraperwiki tutorial on Excel scraping</a> gives a great example of how to get started, which I cribbed wholesale to produce the following snippet.</p>
<p><pre class="brush: python;">import scraperwiki
import xlrd

#cribbing https://scraperwiki.com/docs/python/python_excel_guide/
def cellval(cell):
    if cell.ctype == xlrd.XL_CELL_EMPTY:    return None
    return cell.value

def dropper(table):
    if table!='':
        try: scraperwiki.sqlite.execute('drop table &quot;'+table+'&quot;')
        except: pass

def reGrabber():
    #dropper('GPpracticeLookup')
    url = 'https://indicators.ic.nhs.uk/download/GP%20Practice%20data/summaries/demography/Practice%20Addresses%20Final.xls'
    xlbin = scraperwiki.scrape(url)
    book = xlrd.open_workbook(file_contents=xlbin)

    sheet = book.sheet_by_index(0)        

    keys = sheet.row_values(8)           
    keys[1] = keys[1].replace('.', '')
    print keys

    for rownumber in range(9, sheet.nrows):           
        # create dictionary of the row values
        values = [ cellval(c) for c in sheet.row(rownumber) ]
        data = dict(zip(keys, values))
        #print data
        scraperwiki.sqlite.save(table_name='GPpracticeLookup',unique_keys=['Practice Code'], data=data)

#Uncomment the next line if you want to regrab the data from the original spreadsheet
reGrabber()</pre></p>
<p>You can find my scraper here: <a href="https://scraperwiki.com/scrapers/uk_nhs_gp_practices_lookup/" onclick="urchinTracker('/outgoing/scraperwiki.com/scrapers/uk_nhs_gp_practices_lookup/?referer=');">UK NHS GP Practices Lookup</a>. What&#8217;s handy about this approach is that having scraped the spreadsheet data into a Scraperwiki database, I can now query it as database data via the Scraperwiki API.</p>
<p>(Note that the Google Visualisation API query language would also let me treat the spreadsheet data as a database if I uploaded it to Google Spreadsheets.)</p>
<p>So, if you find yourself with an Excel spreadsheet, but no Microsoft Office to hand, fear not&#8230; There are plenty of other tools other there you can appropriate to help you get the data out of the file and into a form you can work with:-)</p>
<p>PS R is capable of importing Excel files, I think, but the libraries I found don&#8217;t seem to compile onto Max OS/X?</p>
<p>PPS ***DATA HEALTH WARNING*** I haven&#8217;t done much testing of either of these approaches using spreadsheets containing multiple workbooks, complex linked formulae or macros. They may or may not be appropriate in such cases&#8230; but for simple spreadsheets, they&#8217;re fine&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ouseful.wordpress.com/7698/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gocomments/ouseful.wordpress.com/7698/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ouseful.wordpress.com/7698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ouseful.wordpress.com/7698/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/godelicious/ouseful.wordpress.com/7698/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ouseful.wordpress.com/7698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ouseful.wordpress.com/7698/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gofacebook/ouseful.wordpress.com/7698/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ouseful.wordpress.com/7698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ouseful.wordpress.com/7698/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gotwitter/ouseful.wordpress.com/7698/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ouseful.wordpress.com/7698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ouseful.wordpress.com/7698/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gostumble/ouseful.wordpress.com/7698/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ouseful.wordpress.com/7698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ouseful.wordpress.com/7698/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/godigg/ouseful.wordpress.com/7698/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ouseful.wordpress.com/7698/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ouseful.wordpress.com/7698/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/goreddit/ouseful.wordpress.com/7698/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ouseful.wordpress.com/7698/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ouseful.info&#038;blog=325417&%23038;post=7698&%23038;subd=ouseful&%23038;ref=&%23038;feed=1" width="1" height="1" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onlinejournalismblog?a=QeUjjj7KQ6g:N_mO9TKO4Fw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onlinejournalismblog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.ouseful.info/2012/04/30/working-with-excel-files-without-using-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://ouseful.files.wordpress.com/2012/04/google-refine-export.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/04/importing-xls-with-config.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/04/google-refine-import.png" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/04/google-refine-importing-xls.png" length="" type="" />
<enclosure url="" length="" type="" />
<enclosure url="http://ouseful.files.wordpress.com/2012/04/gp-practices-location-file.png" length="" type="" />
		<feedburner:origLink>http://blog.ouseful.info/2012/04/30/working-with-excel-files-without-using-excel/</feedburner:origLink></item>
	</channel>
</rss>

