<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Online Journalism Blog</title>
	<atom:link href="http://onlinejournalismblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://onlinejournalismblog.com</link>
	<description>A conversation.</description>
	<lastBuildDate>Mon, 06 Feb 2012 15:26:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<cloud domain='onlinejournalismblog.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Journalist Filters on Twitter – The Reuters View</title>
		<link>http://blog.ouseful.info/2012/02/03/journalist-filters-on-twitter-the-reuters-view/</link>
		<comments>http://blog.ouseful.info/2012/02/03/journalist-filters-on-twitter-the-reuters-view/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:57:58 +0000</pubDate>
		<dc:creator>Tony Hirst</dc:creator>
				<category><![CDATA[onlinejournalismblog]]></category>

		<guid isPermaLink="false">http://blog.ouseful.info/?p=6962</guid>
		<description><![CDATA[It seems that Reuters has a new product out &#8211; Reuters Social Pulse. As well as highlighting &#8220;the stories being talked about by the newsmakers we follow&#8221;, there is an area highlighting &#8220;the Reuters &#038; Klout 50 where we rank America’s most social CEOs.&#8221; Of note here is that this list is ordered by Klout [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ouseful.info&#38;blog=325417&#38;post=6962&#38;subd=ouseful&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It seems that Reuters has a new product out &#8211; <a href="http://blogs.reuters.com/mediafile/2012/02/02/reuters-social-pulse/" onclick="urchinTracker('/outgoing/blogs.reuters.com/mediafile/2012/02/02/reuters-social-pulse/?referer=');">Reuters Social Pulse</a>. As well as highlighting &#8220;the stories being talked about by the newsmakers we follow&#8221;, there is an area highlighting &#8220;the <a href="http://www.reuters.com/reuters-klout-50" onclick="urchinTracker('/outgoing/www.reuters.com/reuters-klout-50?referer=');">Reuters &amp; Klout 50</a> where we rank America’s most social CEOs.&#8221; Of note here is that this list is ordered by Klout score. Reuters don&#8217;t own Klout (yet?!) do they?! </p>
<p>The offering also includes a view of the world through the tweets of Reuters own staff. Apparently, &#8220;Reuters has over 3,000 journalists around the world, many of whom are doing amazing work on Twitter. That is too many to keep up with on a Twitter list, so we created a directory <a href="http://www.reuters.com/journalist-twitter-directory" onclick="urchinTracker('/outgoing/www.reuters.com/journalist-twitter-directory?referer=');">Reuters Twitter Directory</a>] that shows you our best tweeters by topic. It let’s you find our reporters, bloggers and editors by category and location so you can drill down to business journalists in India, if you so choose, or tech writers in the UK.&#8221;</p>
<p>If you view the source of Reuters Twitter directory page, you can find a Javascript object that lists all(?) the folk in the Reuters Twitter directory and the tags they are associated with&#8230; Hmm, I thought&#8230; Hmmm&#8230;</p>
<p>If we grab that object, and pop it into Python, it&#8217;s easy enough to create a  bipartite network that links journalists to the categories they are associated with:</p>
<p><pre class="brush: python;">import simplejson
import networkx as nx
#http://mlg.ucd.ie/files/summer/tutorial.pdf
from networkx.algorithms import bipartite

g = nx.Graph()

#need to bring in reutersJournalistList
users=simplejson.loads(reutersJournalistList)

#I had some 'issues' with the parsing for some reason? Required this hack in the end...
for user in users:
	for x in user:
		if x=='users':
			u=user[x][0]['twitter_screen_name']
			print 'user:',user[x][0]['twitter_screen_name']
			for topic in user[x][0]['topics']:
				print '- topic:',topic
				#Add edges from journalist name to each tag they are associated with
				g.add_edge(u,topic)
#print bipartite.is_bipartite(g)
#print bipartite.sets(g)

#Save a graph file we can visualise in Gephi corresponding to bipartite graph
nx.write_graphml(g, &quot;usertags.graphml&quot;)

#We can find the sets of names/tags associated with the disjoint sets in the graph
users,tags=bipartite.sets(g)

#Collapse the bipartite graph to a graph of journalists connected via a common tag
ugraph= bipartite.projected_graph(g, users)
nx.write_graphml(ugraph, &quot;users.graphml&quot;)

#Collapse the bipartite graph to a set of tags connected via a common journalist
tgraph= bipartite.projected_graph(g, tags)
nx.write_graphml(tgraph, &quot;tags.graphml&quot;)

#Dump a list of the journalists Twitter IDs
f=open(&quot;users.txt&quot;,&quot;w+&quot;)
for uo in users: f.write(uo+'\n')
f.close()</pre></p>
<p>Having generated graph files, we can then look to see how the tags cluster as a result of how they were applied to journalists associated with several tags:</p>
<p><a href="http://www.flickr.com/photos/psychemedia/6811403673/" title="Photo Sharing" onclick="urchinTracker('/outgoing/www.flickr.com/photos/psychemedia/6811403673/?referer=');"><img src="http://farm8.staticflickr.com/7030/6811403673_65a245e938.jpg" width="500" height="428" alt="Reuters journalists twitter directory cotags" /></a></p>
<p>Alternatively, we can look to see which journalists are connected by virtue of being associated with similar tags (hmm, I wonder if edge weight carries information about how many tags each connected pair may be associated through?). In this case, I size the nodes by betweenness centrality to try to highlight journalists that bridge topic areas:</p>
<p><a href="http://www.flickr.com/photos/psychemedia/6811417129/" title="Photo Sharing" onclick="urchinTracker('/outgoing/www.flickr.com/photos/psychemedia/6811417129/?referer=');"><img src="http://farm8.staticflickr.com/7166/6811417129_1da8b8329e.jpg" width="500" height="447" alt="Reuters twitter journalists list via cotags, sized by betweenness centrality" /></a></p>
<p>Association through shared tags (as applied by Reuters) is one thing, but there is also structure arising from friendship networks&#8230;So to what extent do the Reuters Twitter List journalists follow each other (again, sizing by betweenness centrality):</p>
<p><a href="http://www.flickr.com/photos/psychemedia/6811428169/" title="Photo Sharing" onclick="urchinTracker('/outgoing/www.flickr.com/photos/psychemedia/6811428169/?referer=');"><img src="http://farm8.staticflickr.com/7156/6811428169_4c0727687e.jpg" width="500" height="479" alt="Reuters twitter journalists friend connections sized by betweenness centrality" /></a></p>
<p>Finally, here&#8217;s a quick look at folk followed by 15 or more of the folk in the Reuters Twitter journalists list: this is the common source area on Twitter for the journalists on the list. This time, I size nodes by eigenvector centrality.</p>
<p><a href="http://www.flickr.com/photos/psychemedia/6811440445/" title="Photo Sharing" onclick="urchinTracker('/outgoing/www.flickr.com/photos/psychemedia/6811440445/?referer=');"><img src="http://farm8.staticflickr.com/7173/6811440445_429fe3cf98.jpg" width="500" height="423" alt="FOlk followed by 15 or more of folk on reuters twitter journliasts list, size by eigenvector centrality" /></a></p>
<p>So why bother with this? Because journalists provide a filter onto the way the world is reported to us through the media, and as a result the perspective we have of the world as portrayed through the media.  If we see journalists as providing independent fairwitness services, then having some sort of idea about the extent to which they are sourcing their information severally, or from a common pool, can be handy. In the above diagram, for example, I try to highlight common sources (folk followed by at least 15 of the journalists on the Twitter list). But I could equally have got a feeling for the range of sources by producing a much larger and sparser graph, such as all the folk followed by journalists on the list, or folk followed by only 1 person on the list (40,000 people or so in all &#8211; see below), or by 2 to 5 people on the list&#8230;</p>
<p><a href="http://www.flickr.com/photos/psychemedia/6811635317/" title="Photo Sharing" onclick="urchinTracker('/outgoing/www.flickr.com/photos/psychemedia/6811635317/?referer=');"><img src="http://farm8.staticflickr.com/7165/6811635317_4c81a789a2.jpg" width="500" height="441" alt="The twitterverse as directly and publicly followed by folk on the Reuters Journalists twitter list" /></a></p>
<p>Friends lists are one sort of filter every Twitter user has onto the content been shared on Twitter, and something that&#8217;s easy to map. There are other views of course &#8211; the list of people mentioning a user is readily available to every Twitter user, and it&#8217;s easy enough to set up views around particular hashtags or search terms. Grabbing the journalists associated with one or more particular tags, and then mapping their friends (or, indeed, followers) is also possible, as is grabbing the follower lists for one or more journalists and then looking to see who the friends of the followers are, thus positioning the the journalist in the social media environment as perceived by their followers.</p>
<p>I&#8217;m not sure that value Reuters sees in the stream of tweets from the folk on its Twitter journalists lists, or the Twitter networks they have built up, but the friend lenses at least we can try to map out. And via the bipartite user/tag graph, it also becomes trivial for us to find journalists with interests in Facebook and advertising, for example&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ouseful.wordpress.com/6962/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gocomments/ouseful.wordpress.com/6962/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ouseful.wordpress.com/6962/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ouseful.wordpress.com/6962/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/godelicious/ouseful.wordpress.com/6962/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ouseful.wordpress.com/6962/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ouseful.wordpress.com/6962/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gofacebook/ouseful.wordpress.com/6962/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ouseful.wordpress.com/6962/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ouseful.wordpress.com/6962/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gotwitter/ouseful.wordpress.com/6962/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ouseful.wordpress.com/6962/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ouseful.wordpress.com/6962/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/gostumble/ouseful.wordpress.com/6962/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ouseful.wordpress.com/6962/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ouseful.wordpress.com/6962/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/godigg/ouseful.wordpress.com/6962/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ouseful.wordpress.com/6962/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ouseful.wordpress.com/6962/" onclick="urchinTracker('/outgoing/feeds.wordpress.com/1.0/goreddit/ouseful.wordpress.com/6962/?referer=');"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ouseful.wordpress.com/6962/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ouseful.info&amp;blog=325417&amp;post=6962&amp;subd=ouseful&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.ouseful.info/2012/02/03/journalist-filters-on-twitter-the-reuters-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
<enclosure url="http://farm8.staticflickr.com/7030/6811403673_65a245e938.jpg" length="" type="" />
<enclosure url="http://farm8.staticflickr.com/7166/6811417129_1da8b8329e.jpg" length="" type="" />
<enclosure url="http://farm8.staticflickr.com/7156/6811428169_4c0727687e.jpg" length="" type="" />
<enclosure url="http://farm8.staticflickr.com/7173/6811440445_429fe3cf98.jpg" length="" type="" />
<enclosure url="http://farm8.staticflickr.com/7165/6811635317_4c81a789a2.jpg" length="" type="" />
		</item>
		<item>
		<title>Video: Heather Brooke&#8217;s tips on investigating, and using the FOI and Data Protection Acts</title>
		<link>http://onlinejournalismblog.com/2012/02/03/video-heather-brookes-tips-on-investigating-and-using-the-foi-and-data-protection-acts/</link>
		<comments>http://onlinejournalismblog.com/2012/02/03/video-heather-brookes-tips-on-investigating-and-using-the-foi-and-data-protection-acts/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 08:15:15 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[data journalism]]></category>
		<category><![CDATA[Data Protection Act]]></category>
		<category><![CDATA[foi]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[heather brooke]]></category>
		<category><![CDATA[help me investigate]]></category>
		<category><![CDATA[investigative journalism]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[welfare]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15784</guid>
		<description><![CDATA[The following 3 videos first appeared on the Help Me Investigate blog, Help Me Investigate: Health and Help Me Investigate: Welfare. I thought I&#8217;d collect them together here too. As always, these are published under a Creative Commons licence, so you are welcome to re-use, edit and combine with other video, with attribution (and a link!). First, Heather Brooke&#8217;s tips<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/02/03/video-heather-brookes-tips-on-investigating-and-using-the-foi-and-data-protection-acts/">Read more...</a></span>]]></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%2F02%2F03%2Fvideo-heather-brookes-tips-on-investigating-and-using-the-foi-and-data-protection-acts%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F02_2F03_2Fvideo-heather-brookes-tips-on-investigating-and-using-the-foi-and-data-protection-acts_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F03%2Fvideo-heather-brookes-tips-on-investigating-and-using-the-foi-and-data-protection-acts%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The following 3 videos first appeared <a href="http://helpmeinvestigate.posterous.com/video-heather-brooke-tips-for-starting-to-inv" title="Help Me Investigate blog - Heather Brooke" onclick="urchinTracker('/outgoing/helpmeinvestigate.posterous.com/video-heather-brooke-tips-for-starting-to-inv?referer=');">on the Help Me Investigate blog</a>, <a href="http://helpmeinvestigate.com/health/tag/heather-brooke/" title="Help Me Investigate Health - Heather Brooke" onclick="urchinTracker('/outgoing/helpmeinvestigate.com/health/tag/heather-brooke/?referer=');">Help Me Investigate: Health</a> and <a href="http://helpmeinvestigate.com/welfare/tag/heather-brooke" title="Help Me Investigate Health - Heather Brooke" onclick="urchinTracker('/outgoing/helpmeinvestigate.com/welfare/tag/heather-brooke?referer=');">Help Me Investigate: Welfare</a>. I thought I&#8217;d collect them together here too. As always, these are published under a Creative Commons licence, so you are welcome to re-use, edit and combine with other video, with attribution (and a link!).</p>
<p>First, Heather Brooke&#8217;s tips for starting to investigate public bodies:</p>
<p><iframe width="600" height="338" src="http://www.youtube.com/embed/TS6F9wcakSc?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Her advice on investigating health, welfare and crime:</p>
<p><iframe width="600" height="338" src="http://www.youtube.com/embed/QKSQx3f5xdw?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>And on using the Data Protection Act:</p>
<p><iframe width="600" height="338" src="http://www.youtube.com/embed/zuag5-0FS2Q?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F03%2Fvideo-heather-brookes-tips-on-investigating-and-using-the-foi-and-data-protection-acts%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/02/03/video-heather-brookes-tips-on-investigating-and-using-the-foi-and-data-protection-acts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving away from &#8216;the story&#8217;: 5 roles of an online investigations team</title>
		<link>http://onlinejournalismblog.com/2012/02/02/moving-away-from-the-story-5-roles-of-an-online-investigations-team/</link>
		<comments>http://onlinejournalismblog.com/2012/02/02/moving-away-from-the-story-5-roles-of-an-online-investigations-team/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 13:39:22 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[data journalism]]></category>
		<category><![CDATA[birmingham city university]]></category>
		<category><![CDATA[churnalism]]></category>
		<category><![CDATA[investigative journalism]]></category>
		<category><![CDATA[organisation]]></category>
		<category><![CDATA[team roles]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15793</guid>
		<description><![CDATA[In almost a decade of teaching online journalism I repeatedly come up against the same two problems: people who are so wedded to the idea of the self-contained &#8216;story&#8217; that they struggle to create journalism outside of that (e.g. the journalism of linking, liveblogging, updating, explaining, or saying what they don&#8217;t know); and people stuck in the habit of churning<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/02/02/moving-away-from-the-story-5-roles-of-an-online-investigations-team/">Read more...</a></span>]]></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%2F02%2F02%2Fmoving-away-from-the-story-5-roles-of-an-online-investigations-team%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F02_2F02_2Fmoving-away-from-the-story-5-roles-of-an-online-investigations-team_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F02%2Fmoving-away-from-the-story-5-roles-of-an-online-investigations-team%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>In almost a decade of teaching online journalism I repeatedly come up against the same two problems:</p>
<ul>
<li>people who are so wedded to the idea of <strong>the self-contained &#8216;story&#8217;</strong> that they struggle to create journalism outside of that (e.g. the journalism of linking, liveblogging, updating, explaining, or saying <em>what they don&#8217;t know</em>);</li>
<li>and people stuck in the habit of <strong>churning out easy-win articles</strong> rather than investing a longer-term effort in something of depth.</li>
</ul>
<p>Until now I&#8217;ve addressed these problems largely through teaching and individual feedback. But for the next 3 months I&#8217;ll be trying a new way of <em>organising</em> students that hopes to address those two problems. As always, I thought I&#8217;d share it here to see what you think.</p>
<h2>Roles in a team: moving from churnalism to depth</h2>
<p>Here’s what I’m trying (for context: this is on an undergraduate module <a href="http://www.bcu.ac.uk/courses/media-and-communication-journalism" onclick="urchinTracker('/outgoing/www.bcu.ac.uk/courses/media-and-communication-journalism?referer=');">at Birmingham City University</a>):</p>
<p>Students are allocated one of 5 roles within a group, investigating a particular public interest question. They investigate that for 6 weeks, at which point they are rotated to a different role and a new investigation (I&#8217;m weighing up whether to have some sort of job interview at that point).</p>
<p>The group format allows &#8211; I hope &#8211; for something interesting to happen: students are not under pressure to deliver &#8216;stories&#8217;, but instead blog about their investigation, as explained below. They are still learning newsgathering techniques, and production techniques, but the team structure makes these explicitly different to those that they would learn elsewhere.</p>
<p>The hope is that it will be much more difficult for them to just transfer print-style stories online, or to reach for he-said/she-said sources to fill the space between ads. With only one story to focus on, students should be forced to engage more, to do deeper and deeper into an issue, and to be more creative in how they communicate what they find out.</p>
<p><em>(It&#8217;s interesting to note that<a href="http://www.knightdigitalmediacenter.org/leadership_blog/comments/20111128_at_the_new_haven_register_reorganization_emphasizes_investigative_/" onclick="urchinTracker('/outgoing/www.knightdigitalmediacenter.org/leadership_blog/comments/20111128_at_the_new_haven_register_reorganization_emphasizes_investigative_/?referer=');"> at least one news organisation is attempting something similar with a restructuring late last year</a>)</em></p>
<p>Only one member of the team is primarily concerned with the story, and that is the editor:</p>
<h2>The Editor (ED)</h2>
<p>It is the editor&#8217;s role to identify what exactly the story is that the team is pursuing, and plan how the resources of the team should be best employed in pursuing that. It will help if they form the story as a hypothesis to be tested by the team gathering evidence &#8211; following <a href="http://unesdoc.unesco.org/images/0019/001930/193078e.pdf" onclick="urchinTracker('/outgoing/unesdoc.unesco.org/images/0019/001930/193078e.pdf?referer=');">Mark Lee Hunter’s story based inquiry method (PDF)</a>.</p>
<p>Qualities needed and developed by the editor include:</p>
<ul>
<li>A nose for a story</li>
<li>Project management skills</li>
<li>Newswriting &#8211; the ability to communicate a story effectively</li>
</ul>
<h2>The Community Manager (CM)</h2>
<p>The community manager’s focus is on the communities affected by the story being pursued. They should be engaging regularly with those communities &#8211; contributing to forums, having conversations with members on Twitter; following updates on Facebook; attending real world events; commenting on blogs or photo/video sharing sites, and so on.</p>
<p>They are the two-way channel between that community and the news team: feeding leads from the community to the editor, and taking a lead from the editor in finding contacts from the community (experts, case studies, witnesses).</p>
<p>Qualities needed and developed by the community manager include:</p>
<ul>
<li>Interpersonal skills &#8211; the ability to listen to and communicate with different people</li>
<li>A nose for a story</li>
<li>Contacts in the community</li>
<li>Social network research skills &#8211; the ability to find sources and communities online</li>
</ul>
<h2>The Data Journalist (DJ)</h2>
<p>While the community manager is focused on people, the data journalist is focused on documentation: datasets, reports, documents, regulations, and anything that frames the story being pursued.</p>
<p>It is their role to find that documentation &#8211; and to make sense of it. This is a key role because <a href="http://www.niemanlab.org/2011/12/nprs-stateimpact-project-explores-regional-topics-through-focused-data-driven-journalism/" onclick="urchinTracker('/outgoing/www.niemanlab.org/2011/12/nprs-stateimpact-project-explores-regional-topics-through-focused-data-driven-journalism/?referer=');">stories often come from signs being ignored</a> (data) or regulations being ignored (documents).</p>
<p>Qualities needed and developed by the data journalist include:</p>
<ul>
<li>Research skills &#8211; advanced online search and use of libraries</li>
<li>Analysis skills &#8211; such as using spreadsheets</li>
<li>Ability to decipher jargon &#8211; often by accessing experts (the CM can help)</li>
</ul>
<h2>The Multimedia Journalist (MMJ)</h2>
<p>The multimedia journalist is focused on the sights, sounds and people that bring a story to life. In an investigation, these will typically be the &#8216;victims&#8217; and the &#8216;targets&#8217;.</p>
<p>They will film interviews with case studies; organise podcasts where various parties play the story out; collect galleries of images to illustrate the reality behind the words.</p>
<p>They will work closely with the CM as their roles can overlap, especially when accessing sources. The difference is that the CM is concerned with a larger quantity of interactions and information; the MM is concerned with quality: much fewer interactions and richer detail.</p>
<p>Qualities needed and developed by the MMJ include:</p>
<ul>
<li>Ability to find sources: experts, witnesses, case studies</li>
<li>Technical skills: composition; filming or recording; editing</li>
<li>Planning: pre-interviewing, research, booking kit</li>
</ul>
<h2>The Network Aggregator (NA)</h2>
<p>The NA is the person who keeps the site ticking over while the rest of the team is working on the bigger story.</p>
<p>They publish regular links to related stories around the country. They are also the person who provides the wider context of that story: what else is happening in that field or around that issue; are similar issues arising in other places around the country. Typical content includes backgrounders, explainers, and updates from around the world.</p>
<p>This is the least demanding of the roles, so they should also be available to support other members of the team when required, following up minor leads on related stories. They should not be ‘just linking’, but getting original stories too, particularly by &#8216;joining the dots&#8217; on information coming in.</p>
<p>Qualities needed and developed by the NA include:</p>
<ul>
<li>Information management &#8211; following as many feeds, newsletters and other relevant soures of information</li>
<li>Wide range of contacts &#8211; speaking to the usual suspects regularly to get a feel for the pulse of the issue/sector</li>
<li>Ability to turn around copy quickly</li>
</ul>
<h2>Publish regular pieces that come together in a larger story</h2>
<p>If this works, I&#8217;m hoping students will produce different types of content on their way to that &#8216;big story&#8217;, as follows:</p>
<ul>
<li>Linkblogging &#8211; simple posts that link to related articles elsewhere with a key quote (rather than wasting resources rewriting them)</li>
<li>Profiles of key community members</li>
<li>Backgrounders and explainers on key issues</li>
<li>Interviews with experts, case studies and witnesses, published individually first, then edited together later</li>
<li>Aggregation and curation &#8211; pulling together a gallery of images, for example; or key tweets on an issue; or key facts on a particular area (who, what, where, when, how); or rounding up an event or discussion</li>
<li>Datablogging &#8211; finding and publishing key datasets and documents and translating them/pulling out key points for a wider audience.</li>
<li>The story so far &#8211; taking users on a journey of what facts have been discovered, and what remains to be done.</li>
</ul>
<p>You can <a href="https://docs.google.com/document/d/1fcjsF7R0efV3ZacIR78nlSaOB1M9RQo0UMghdo2AQUo/edit" onclick="urchinTracker('/outgoing/docs.google.com/document/d/1fcjsF7R0efV3ZacIR78nlSaOB1M9RQo0UMghdo2AQUo/edit?referer=');">read more on the expectations of each role in this document</a>. And there&#8217;s a diagram indicating how group members might interact below:</p>
<div id="attachment_15801" class="wp-caption alignnone" style="width: 589px"><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/02/OJ_investigations_team.jpg"><img class=" wp-image-15801 " src="http://onlinejournalismblog.com/wp-content/uploads/2012/02/OJ_investigations_team.jpg" alt="Investigations team flowchart" width="579" height="454" /></a><p class="wp-caption-text">Investigations team flowchart</p></div>
<p>What will make the difference is how disciplined the editor is in ensuring that their team keeps moving towards the ultimate aim, and that they can combine the different parts into a significant whole.</p>
<p><strong><em>If you&#8217;ve any suggestions or experiences on how this might work better, I&#8217;d very much welcome them.</em></strong></p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F02%2Fmoving-away-from-the-story-5-roles-of-an-online-investigations-team%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/02/02/moving-away-from-the-story-5-roles-of-an-online-investigations-team/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>&#8220;Data laundering&#8221;</title>
		<link>http://onlinejournalismblog.com/2012/02/01/data-laundering/</link>
		<comments>http://onlinejournalismblog.com/2012/02/01/data-laundering/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 20:20:59 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[data journalism]]></category>
		<category><![CDATA[data laundering]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[tony hirst]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15795</guid>
		<description><![CDATA[Wonderful post by Tony Hirst in which he sort-of-coins* a lovely neologism in explaining how data can be &#8220;laundered&#8221;: &#8220;The Deloitte report was used as evidence by Facebook to demonstrate a particular economic benefit made possible by Facebook’s activities. The consultancy firm&#8217;s caveats were ignored, (including the fact that the data may in part at least have come from Facebook itself), in reporting this<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/02/01/data-laundering/">Read more...</a></span>]]></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%2F02%2F01%2Fdata-laundering%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F02_2F01_2Fdata-laundering_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F01%2Fdata-laundering%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://blog.ouseful.info/2012/02/01/sleight-of-hand-and-data-laundering-in-evidence-based-policy-making/" onclick="urchinTracker('/outgoing/blog.ouseful.info/2012/02/01/sleight-of-hand-and-data-laundering-in-evidence-based-policy-making/?referer=');">Wonderful post by Tony Hirst</a> in which he sort-of-coins* a lovely neologism in explaining how data can be &#8220;laundered&#8221;:</p>
<blockquote><p>&#8220;The Deloitte report was used <em>as evidence</em> by Facebook to <em>demonstrate</em> a particular economic benefit made possible by Facebook’s activities. The consultancy firm&#8217;s caveats were ignored, (including the fact that the data may in part at least have come from Facebook itself), in reporting this claim.</p>
<p>&#8220;So: this is <em>data laundering</em>, right? We have some dodgy evidence, about which we’re biased, so we give it to an “independent” consultant who re-reports it, albeit with caveats, that we can then report, minus the caveats. Lovely, clean evidence. Our lobbyists can then go to a lazy policy researcher and take this scrubbed evidence, referencing it as finding in the Deloitte report, so that it can make its way into a policy briefing.&#8221;</p></blockquote>
<p>So, perhaps we can now say &#8220;Follow the data&#8221; in the same way that we &#8220;Follow the money&#8221;?</p>
<p><em>*Although a <a href="http://www.google.co.uk/webhp?sourceid=chrome-instant&amp;ix=iea&amp;ie=UTF-8&amp;ion=1#sclient=psy-ab&amp;hl=en&amp;site=webhp&amp;source=hp&amp;q=%22data%20laundering%22&amp;pbx=1&amp;oq=&amp;aq=&amp;aqi=&amp;aql=&amp;gs_sm=&amp;gs_upl=&amp;fp=6a7a29b7fc21776a&amp;ix=iea&amp;ion=1&amp;ix=iea&amp;ion=1&amp;bav=on.2,or.r_gc.r_pw.,cf.osb&amp;fp=6a7a29b7fc21776a&amp;biw=1025&amp;bih=482&amp;ix=iea&amp;ion=1" onclick="urchinTracker('/outgoing/www.google.co.uk/webhp?sourceid=chrome-instant_amp_ix=iea_amp_ie=UTF-8_amp_ion=1_sclient=psy-ab_amp_hl=en_amp_site=webhp_amp_source=hp_amp_q=_22data_20laundering_22_amp_pbx=1_amp_oq=_amp_aq=_amp_aqi=_amp_aql=_amp_gs_sm=_amp_gs_upl=_amp_fp=6a7a29b7fc21776a_amp_ix=iea_amp_ion=1_amp_ix=iea_amp_ion=1_amp_bav=on.2_or.r_gc.r_pw._cf.osb_amp_fp=6a7a29b7fc21776a_amp_biw=1025_amp_bih=482_amp_ix=iea_amp_ion=1&amp;referer=');">search for &#8220;money laundering&#8221; generates thousands of results on Google</a>, most of them seemingly <a href="http://sectorprivate.wordpress.com/2009/03/16/my-definition-of-data-laundering-as-inspired-by-william-gibson-from-mona-lisa-overdrive/" onclick="urchinTracker('/outgoing/sectorprivate.wordpress.com/2009/03/16/my-definition-of-data-laundering-as-inspired-by-william-gibson-from-mona-lisa-overdrive/?referer=');">influenced by serial neologist William Gibson</a>&#8216;s use of the term to refer to using illegally acquired data, I can&#8217;t find an example of it being used in the way that Tony means it.</em></p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F01%2Fdata-laundering%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/02/01/data-laundering/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Leveson: the Internet Pops In</title>
		<link>http://onlinejournalismblog.com/2012/02/01/leveson-the-internet-pops-in/</link>
		<comments>http://onlinejournalismblog.com/2012/02/01/leveson-the-internet-pops-in/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 13:04:41 +0000</pubDate>
		<dc:creator>gherman</dc:creator>
				<category><![CDATA[newspapers]]></category>
		<category><![CDATA[online journalism]]></category>
		<category><![CDATA[regulation, law and ethics]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[ACTA]]></category>
		<category><![CDATA[Camilla Wright]]></category>
		<category><![CDATA[Daphne Keller]]></category>
		<category><![CDATA[EC]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Gary Herman]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Leveson]]></category>
		<category><![CDATA[NUJ]]></category>
		<category><![CDATA[PIPA]]></category>
		<category><![CDATA[Popbitch]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[SOPA]]></category>
		<category><![CDATA[Viviane Reding]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15789</guid>
		<description><![CDATA[The following post was originally published by Gary Herman on the NUJ New Media blog. It&#8217;s reproduced here with permission. Here at Newmedia Towers we are being swamped by events which at long last are demonstrating that the internet is really rather relevant to the whole debate about media ethics and privacy. So this is by way of a short<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/02/01/leveson-the-internet-pops-in/">Read more...</a></span>]]></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%2F02%2F01%2Fleveson-the-internet-pops-in%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F02_2F01_2Fleveson-the-internet-pops-in_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F01%2Fleveson-the-internet-pops-in%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><em>The following post was <a href="http://www.nujnewmedia.org.uk/index.html?id=242&amp;category=news" onclick="urchinTracker('/outgoing/www.nujnewmedia.org.uk/index.html?id=242_amp_category=news&amp;referer=');">originally published by <strong>Gary Herman</strong> on the NUJ New Media blog</a>. It&#8217;s reproduced here with permission.</em></p>
<p>Here at Newmedia Towers we are being swamped by events which at long last are demonstrating that the internet is really rather relevant to the whole debate about media ethics and privacy. So this is by way of a short and somewhat belated survey of the news tsunami &#8211; Google, Leveson, Twitter, ACTA, the EU and more.</p>
<p>When Camilla Wright, founder of celebrity gossip site Popbitch (which some years ago broke the news of Victoria Beckham&#8217;s pregnancy possibly before she even knew about it), testified before Leveson last week (26 January 2012) [<em><a href="http://www.guardian.co.uk/media/2012/jan/26/leveson-inquiry-facebook-google-popbitch-live" onclick="urchinTracker('/outgoing/www.guardian.co.uk/media/2012/jan/26/leveson-inquiry-facebook-google-popbitch-live?referer=');">Guardian liveblog</a>; <a href="http://www.levesoninquiry.org.uk/wp-content/uploads/2012/01/Witness-Statement-of-Camilla-Wright.pdf" onclick="urchinTracker('/outgoing/www.levesoninquiry.org.uk/wp-content/uploads/2012/01/Witness-Statement-of-Camilla-Wright.pdf?referer=');">Wright's official written statement (PDF)</a></em>] the world found out (if it could be bothered) how Popbitch is used by newspaper hacks to plant stories so that they can then be said to have appeared on the internet. Anyone remember the Drudge report, over a decade ago?</p>
<p>Wright, of course, made a somewhat lame excuse that Popbitch is a counterweight to gossip magazines which are full of stories placed by the PR industry.</p>
<p>But most interesting is the fact that Wright claimed that Popbitch is self-regulated and that it works.</p>
<p>Leveson pronounced that he is not sure there is &#8216;so much of a difference&#8217; between what Popbitch does and what newspapers do &#8211; which is somehow off the point. Popbitch &#8211; like other websites &#8211; has a global reach by definition and Wright told the Inquiry that Popbitch tries to comply with local laws wherever it was available &#8211; claims also made more publicly by Google and Yahoo! when they have in the past given in to Chinese pressure to release data that actually or potentially incriminated users and, more recently, by Twitter when it announced its intention to regulate tweets on a country-by-country basis.</p>
<p>Trivia &#8211; like the stuff Popbitch trades &#8211; aside, the problem is real. A global medium will cross many jurisdictions and be accessible within many different cultures. What one country welcomes, another may ban. And who should judge the merits of each?</p>
<h2>Confusing the internet with its applications</h2>
<p>The Arab Spring showed us that social media &#8211; like mobile phones, CB radios, fly-posted silkscreen prints, cheap offset litho leaflets and political ballads before them &#8211; have the power to mobilise and focus dissent. Twitter&#8217;s announcement should have been expected &#8211; after all, tweeting was never intended to be part of the revolutionaries&#8217; tool-kit.</p>
<p>There are already alternatives to Twitter &#8211; Vibe, Futubra, Plurk, Easy Chirp and Blackberry Messenger, of course &#8211; and the technology itself will not be restrained by the need to expand into new markets. People confuse the internet with its applications &#8211; a mistake often made by those authorities who seek to impose a duty to police content on those who convey it.</p>
<p>Missing the point again, Leveson asked whether it would be useful to have an external ombudsman to advise Popbitch on stories and observed that a common set of standards across newspapers and websites might also help.</p>
<p>While not dismissing the idea, Wright made the point that the internet made it easy for publications to bypass UK regulators.</p>
<p>This takes us right into the territory of Google, Facebook and the various attempts by US and international authorities to introduce regulation and impose duties on websites themselves to police them.</p>
<h2>ACTA, SOPA and PIPA</h2>
<p>The latest example is the <strong>Anti-Counterfeit Trade Agreement (ACTA)</strong> &#8211; a shadowy international treaty which,<a href="http://news.cnet.com/8301-13578_3-20004450-38.html" onclick="urchinTracker('/outgoing/news.cnet.com/8301-13578_3-20004450-38.html?referer=');"> according to Google&#8217;s legal directo</a>r, Daphne Keller, speaking over a year ago, has &#8216;metastasized&#8217; from a proposal on border security and counterfeit goods to an international legal framework covering copyright and the internet.</p>
<p>According to a draft of ACTA, released for public scrutiny after pressure from the European Union, internet providers who disable access to pirated material and adopt a policy to counter unauthorized &#8216;transmission of materials protected by copyright&#8217; will be protected against legal action.</p>
<p>Fair use rights would not be guaranteed under the terms of the agreement.</p>
<p>Many civil liberty groups have protested the process by which ACTA has been drafted as anti-democratic and ACTA&#8217;s provisions as draconian.</p>
<p>Google&#8217;s Keller described ACTA as looking &#8216;a lot like cultural imperialism&#8217;.</p>
<p>Google later became active in the successful fight against the US <strong>Stop Online Piracy Act (SOPA)</strong> and the related<strong> Protect Intellectual Proerty Act (PIPA)</strong>, which contained similar provisions to ACTA.</p>
<p>Google has been remarkably quite on the Megaupload case, however. This saw the US take extraterritorial action against a Hong Kong-based company operating a number of websites accused of copyright infringement.</p>
<p>The arrest of all Megaupload&#8217;s executives and the closure of its sites may have the effect of erasing perfectly legitimate and legal data held on the company&#8217;s servers &#8211; something which would on the face of it be an infringement of the rights of Megaupload users who own the data.</p>
<h2>Privacy</h2>
<p>Meanwhile, Google &#8211; in its growing battle with Facebook &#8211; has announced its intention to introduce a single privacy regime for 60 or so of its websites and services which will allow the company to aggregate all the data on individual users the better to serve ads.</p>
<p>Facebook already does something similar, although the scope of its services is much, much narrower than Google&#8217;s.</p>
<p>Privacy is at the heart of the current action against Google by Max Mosley, who wants the company to take down all links to external websites from its search results if those sites cover the events at the heart of his successful libel suit against News International.</p>
<p>Mosley is suing Google in the UK, France and Germany, and Daphne Keller popped up at the Leveson Inquiry, together with David-John Collins, head of corporate communications and public affairs for Google UK, to answer questions about the company&#8217;s policies on regulation and privacy.</p>
<p>Once again, the argument regarding different jurisdictions and the difficulty of implementing a global policy was raised by Keller and Collins.</p>
<p>Asked about an on-the-record comment by former Google chief executive, Eric Schmidt, that &#8216;only miscreants worry about net privacy&#8217;, Collins responded that the comment was not representative of Google&#8217;s policy on privacy, which it takes &#8216;extremely seriously&#8217;.</p>
<p>There is, of course, an interesting disjuncture between Google&#8217;s theoretical view of privacy and its treatment of its users. When it comes to examples like Max Mosley, Google pointed out &#8211; quite properly &#8211; that it can&#8217;t police the internet, that it does operate across jurisdictions and that it does ensure that there are comprehensive if somewhat esoteric mechanisms for removing private data and links from the Google listings and caches.</p>
<p>Yet it argues that, if individuals choose to use Google, whatever data they volunteer to the company is fair game for Google &#8211; even where that data involves third persons who may not have assented to their details being known or when, as happened during the process of building Google&#8217;s StreetView application, the company collected private data from domestic wi-fi routers without the consent or knowledge of the householders.</p>
<p>Keller and Collins brought their double-act to the UK parliament a few days later when they appeared before the joint committee on privacy and injunctions, chaired by John Whittingdale MP.</p>
<p>When asked why Google did not simply &#8216;find and destroy&#8217; all instances of the images and video that Max Mosley objected to, they repeated their common mantras &#8211; Google is not the internet, and neither can nor should control the websites its search results list.</p>
<p>Accused by committee member Lord MacWhinney of &#8216;ducking and diving&#8217; and of former culture minister, Ben Bradshaw of being &#8216;totally unconvincing&#8217;, Keller noted that Google could in theory police the sites it indexed, but that &#8216;doing so is a bad idea&#8217;.</p>
<h2>No apparatus disinterested and qualified enough</h2>
<p>That seems indisputable &#8211; regulating the internet should not be the job of providers like Google, Facebook or Twitter. On the contrary, the providers are the ones to be regulated, and this should be the job of legislatures equipped (unlike the Whittingdale committee) with the appropriate level of understanding and coordinated at a global level.</p>
<p>The internet requires global oversight &#8211; but we have no apparatus that is disinterested and qualified enough to do the job.</p>
<p>A new front has been opened in this battle by the latest draft rules on data protection issued by Viviane Reding&#8217;s Justice Directorate at the European Commission on 25 January.</p>
<p>Reding is no friend of Google or the big social networks and is keen to draw them into a framework of legislation that will &#8211; should the rules pass into national legislation &#8211; be coordinated at EU level.</p>
<p>Reding&#8217;s big ideas include a &#8216;right to be forgotten&#8217; which will apply to online data only and an extension of the scope of personal data to cover a user&#8217;s IP address. Confidentiality should be built-in to online systems according to the new rules &#8211; an idea called &#8216;privacy by design&#8217;.</p>
<p>These ideas are already drawing flak from corporates like Google who point out that the &#8216;right to be forgotten&#8217; is something that the company already upholds as far as the data it holds is concerned.</p>
<p>Reding&#8217;s draft rules includes an obligation by so-called &#8216;data controllers&#8217; such as Google to notify third parties when someone wishes their data to be removed, so that links and copies can also be removed.</p>
<p>Not surprisingly, Google objects to this requirement which, if not exactly a demand to police the internet, is at least a demand to &#8216;help the police with their enquiries&#8217;.</p>
<p>The problem will not go away: how do you make sure that a global medium protects privacy, removes defamation and respects copyright while preserving its potential to empower the oppressed and support freedom of speech everywhere?</p>
<p>Answers on a postcard, please.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F01%2Fleveson-the-internet-pops-in%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/02/01/leveson-the-internet-pops-in/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Location, Location, Location</title>
		<link>http://onlinejournalismblog.com/2012/02/01/location-location-location/</link>
		<comments>http://onlinejournalismblog.com/2012/02/01/location-location-location/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 07:55:05 +0000</pubDate>
		<dc:creator>Damian Radcliffe</dc:creator>
				<category><![CDATA[mobile journalism]]></category>
		<category><![CDATA[newspapers]]></category>
		<category><![CDATA[online journalism]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[television]]></category>
		<category><![CDATA[UGC]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[BBC]]></category>
		<category><![CDATA[BBC Local Radio]]></category>
		<category><![CDATA[British Library]]></category>
		<category><![CDATA[check in]]></category>
		<category><![CDATA[Clear Channel]]></category>
		<category><![CDATA[Community Radio]]></category>
		<category><![CDATA[daily deals]]></category>
		<category><![CDATA[Examiner.com]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[gowalla]]></category>
		<category><![CDATA[hyperlocal]]></category>
		<category><![CDATA[Hyperlocal Advertising]]></category>
		<category><![CDATA[iptv]]></category>
		<category><![CDATA[journalism]]></category>
		<category><![CDATA[Journalism Foundation]]></category>
		<category><![CDATA[JWire]]></category>
		<category><![CDATA[LBS]]></category>
		<category><![CDATA[local advertising]]></category>
		<category><![CDATA[local newspapers]]></category>
		<category><![CDATA[local tv]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[Location Based Services]]></category>
		<category><![CDATA[Networked Neighbourhoods]]></category>
		<category><![CDATA[Patch]]></category>
		<category><![CDATA[Pew Research Cen]]></category>
		<category><![CDATA[PitnPots]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15778</guid>
		<description><![CDATA[In this guest post, Damian Radcliffe highlights some recent developments in the intersection between hyper-local SoLoMo (social, location, mobile). His more detailed slides looking at 20 developments across the sector during the last two months of 2011 are cross-posted at the bottom of this article. Facebook’s recent purchase of location-based service Gowalla (Slide 19 below,) suggests that the social network<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/02/01/location-location-location/">Read more...</a></span>]]></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%2F02%2F01%2Flocation-location-location%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F02_2F01_2Flocation-location-location_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F01%2Flocation-location-location%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><em>In this guest post, </em><a href="http://www.linkedin.com/in/damianradcliffe" target="_blank" onclick="urchinTracker('/outgoing/www.linkedin.com/in/damianradcliffe?referer=');">Damian Radcliffe</a><em> highlights some recent developments in the intersection between hyper-local </em><a href="http://www.slideshare.net/kleinerperkins/kpcb-top-10-mobile-trends-feb-2011" target="new" onclick="urchinTracker('/outgoing/www.slideshare.net/kleinerperkins/kpcb-top-10-mobile-trends-feb-2011?referer=');"><em>SoLoMo</em></a><em> (social, location, mobile).</em> <em>His more detailed slides looking at 20 developments across the sector during the last two months of 2011 are cross-posted at the bottom of this article. </em></p>
<p>Facebook’s <a href="http://blog.gowalla.com/post/13782997303/gowalla-going-to-facebook" onclick="urchinTracker('/outgoing/blog.gowalla.com/post/13782997303/gowalla-going-to-facebook?referer=');">recent purchase</a> of location-based service <a href="http://gowalla.com/" onclick="urchinTracker('/outgoing/gowalla.com/?referer=');">Gowalla</a> (Slide 19 below,) suggests that the social network still thinks there is a future for this type of “check in” service. <a href="http://techcrunch.com/2010/02/25/location-sxsw/" onclick="urchinTracker('/outgoing/techcrunch.com/2010/02/25/location-sxsw/?referer=');">Touted</a> as “the next big thing” ever since Foursquare <a href="http://mashable.com/2009/03/16/foursquare/" onclick="urchinTracker('/outgoing/mashable.com/2009/03/16/foursquare/?referer=');">launched</a> at SXSW in 2009, to date Location Based Services (LBS) haven’t quite lived up to the hype.</p>
<p>Certainly there’s plenty of data to suggest that the public don’t quite share the enthusiasm of many Silicon Valley investors. Yet.</p>
<p>Part of their challenge is that not only is awareness of services relatively low  &#8211;  just 30% of respondents in a survey of 37,000 people by Forrester (Slide 27) &#8211; but their benefits are also not necessarily clearly understood.</p>
<p>In 2011, a <a href="http://bit.ly/juW8VH" onclick="urchinTracker('/outgoing/bit.ly/juW8VH?referer=');">study</a> by youth marketing agency Dubit found about half of UK teenagers are not aware of location-based social networking services such as Foursquare and Facebook Places, with 58% of those who had heard of them saying they “do not see the point” of sharing geographic information.</p>
<p>Safety concerns may not be the primary concern of Dubit’s respondents, but as the “<a href="http://pleaserobme.com/" onclick="urchinTracker('/outgoing/pleaserobme.com/?referer=');">Please Rob Me</a>” website <a href="http://pleaserobme.com/why" onclick="urchinTracker('/outgoing/pleaserobme.com/why?referer=');">says</a>: <em>“….on one end we&#8217;re leaving lights on when we&#8217;re going on a holiday, and on the other we&#8217;re telling everybody on the internet we&#8217;re not home… The danger is publicly telling people where you are. This is because it leaves one place you&#8217;re definitely not&#8230; home.”  </em></p>
<p>Reinforcing this concern are several <a href="http://www.telegraph.co.uk/finance/personalfinance/insurance/7625382/Insurers-10-favourite-reasons-not-to-pay.html" onclick="urchinTracker('/outgoing/www.telegraph.co.uk/finance/personalfinance/insurance/7625382/Insurers-10-favourite-reasons-not-to-pay.html?referer=');">stories</a> from both the UK and the <a href="http://www.lovemoney.com/news/cars-computers-and-sport/computers/10014/why-facebook-means-your-bills-will-rise" onclick="urchinTracker('/outgoing/www.lovemoney.com/news/cars-computers-and-sport/computers/10014/why-facebook-means-your-bills-will-rise?referer=');">US</a> of insurers refusing to pay out after a domestic burglary, where victims have announced via social networks that they were away on holiday &#8211; or having a beer downtown.</p>
<p>For LBS to go truly mass market &#8211; and Forrester (see Slide 27)  found that only 5% of mobile users were monthly LBS users &#8211; smartphone growth will be a key part of the puzzle. Recent <a href="http://bit.ly/rWgcZZ" onclick="urchinTracker('/outgoing/bit.ly/rWgcZZ?referer=');">Ofcom data</a> reported that:</p>
<ul>
<li>Ownership nearly doubled in the UK between February 2010 and August 2011 (from 24% to 46%).</li>
<li>46% of UK internet users also used their phones to go online in October 2011.</li>
</ul>
<p>For now at least, most of our location based activity would seem to be based on previous online behaviours. So, search continues to dominate.</p>
<p>Google in a recent blog post described local search ads as “<a href="http://googleblog.blogspot.com/2011/10/mo-mentum-whats-new-with-mobile-search.html" onclick="urchinTracker('/outgoing/googleblog.blogspot.com/2011/10/mo-mentum-whats-new-with-mobile-search.html?referer=');">so hot right now</a>” (Slide 22, <a href="http://www.slideshare.net/mrdamian/hyperlocal-update-septoct-2011" onclick="urchinTracker('/outgoing/www.slideshare.net/mrdamian/hyperlocal-update-septoct-2011?referer=');">Sept-Oct 2011 update</a>). The search giant <a href="http://googlemobileads.blogspot.com/2010/09/new-hyperlocal-ad-feature-provides.html" onclick="urchinTracker('/outgoing/googlemobileads.blogspot.com/2010/09/new-hyperlocal-ad-feature-provides.html?referer=');">launched</a> hyper-local search ads a year ago, along with a “<a href="http://googlenewsblog.blogspot.com/2011/05/introducing-news-near-you-on-google.html" onclick="urchinTracker('/outgoing/googlenewsblog.blogspot.com/2011/05/introducing-news-near-you-on-google.html?referer=');">News Near You</a>” feature in May 2011.  (See: <a href="http://www.slideshare.net/mrdamian/hyper-local-update-april-11-and-may-11" onclick="urchinTracker('/outgoing/www.slideshare.net/mrdamian/hyper-local-update-april-11-and-may-11?referer=');">April-May 2011 update</a>, Slide 27.)</p>
<p>Meanwhile, BIA/Kelsey <a href="http://www.biakelsey.com/Company/Press-Releases/110518-Local-Search-Advertising-Revenues-to-Reach-$8.2-Billion-by-2015.asp" onclick="urchinTracker('/outgoing/www.biakelsey.com/Company/Press-Releases/110518-Local-Search-Advertising-Revenues-to-Reach-_8.2-Billion-by-2015.asp?referer=');">forecast</a> that local search advertising revenues in the US will increase from $5.1 billion in 2010 to $8.2 billion in 2015. Their figures suggest by 2015, 30% of search will be local.</p>
<p>The other notable growth area, location based mobile advertising,  also offers a different slant on the typical “check in” service which Gowalla et al tend to specialise in. Borrell <a href="http://bit.ly/uUHKhw" onclick="urchinTracker('/outgoing/bit.ly/uUHKhw?referer=');">forerecasts</a> this space will increase 66% in the US during 2012 (Slide 22).<strong></strong></p>
<p>The most high profile example of this service in the UK is <a href="https://www.o2more.co.uk/home" onclick="urchinTracker('/outgoing/www.o2more.co.uk/home?referer=');">O2 More</a>, which triggers advertising or deals when a user passes through certain locations – offering a clear <em>financial</em> incentive for sharing your location.</p>
<p>Perhaps this &#8211; along with tailored news and information manifest in services such as <a href="http://googlenewsblog.blogspot.com/2011/05/introducing-news-near-you-on-google.html" onclick="urchinTracker('/outgoing/googlenewsblog.blogspot.com/2011/05/introducing-news-near-you-on-google.html?referer=');">News Near You</a>, <a href="http://postcodegazette.com/" onclick="urchinTracker('/outgoing/postcodegazette.com/?referer=');">Postcode Gazette</a> and India’s <a href="http://taazza.com/" onclick="urchinTracker('/outgoing/taazza.com/?referer=');">Taazza</a> – is the way forward.</p>
<p><a href="http://www.jiepang.com/" onclick="urchinTracker('/outgoing/www.jiepang.com/?referer=');">Jiepang</a>, China’s leading Location-Based Social Mobile App, offered a recent example of how to do this. Late last year they <a href="http://www.businesswire.com/news/home/20111108005179/en/China%E2%80%99s-Leading-Location-Based-Social-Mobile-App-Jiepang" onclick="urchinTracker('/outgoing/www.businesswire.com/news/home/20111108005179/en/China_E2_80_99s-Leading-Location-Based-Social-Mobile-App-Jiepang?referer=');">partnered with Starbucks</a>, offering users a virtual Starbucks badge if they “checked-in” at a Starbucks store in the Shanghai, Jiangsu and Zhejiang provinces. When the number of badges issued hit 20,000, all badge holders got a free festive upgrade to a larger cup size. When coupled with the ease of NFC technology deployed to allow users to &#8220;check in&#8221; then it’s easy to understand the consumer benefit of such a service.</p>
<p>Mine’s a venti gingerbread latte. No cream. Xièxiè.</p>
<iframe src="http://www.slideshare.net/slideshow/embed_code/10982694" width="600" height="489" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br/><br/>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F02%2F01%2Flocation-location-location%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/02/01/location-location-location/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Twitter&#8217;s &#8216;censorship&#8217; is nothing new &#8211; but it is different</title>
		<link>http://onlinejournalismblog.com/2012/01/30/twitters-censorship-is-nothing-new-but-it-is-different/</link>
		<comments>http://onlinejournalismblog.com/2012/01/30/twitters-censorship-is-nothing-new-but-it-is-different/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 12:00:44 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[online journalism]]></category>
		<category><![CDATA[regulation, law and ethics]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[boycott]]></category>
		<category><![CDATA[censorship]]></category>
		<category><![CDATA[ethan zuckerman]]></category>
		<category><![CDATA[evgeny morozov]]></category>
		<category><![CDATA[mireille raad]]></category>
		<category><![CDATA[net delusion]]></category>
		<category><![CDATA[twitterblackout]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15773</guid>
		<description><![CDATA[Over the weekend thousands of Twitter users boycotted the service in protest at the announcement that the service will begin withholding tweets based on the demands of local governments and law enforcement. Protesting against censorship is laudable, but it is worth pointing out that most online services already do the same, whether it&#8217;s Google&#8217;s Orkut; Apple removing apps from its<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/01/30/twitters-censorship-is-nothing-new-but-it-is-different/">Read more...</a></span>]]></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%2F01%2F30%2Ftwitters-censorship-is-nothing-new-but-it-is-different%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F01_2F30_2Ftwitters-censorship-is-nothing-new-but-it-is-different_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F01%2F30%2Ftwitters-censorship-is-nothing-new-but-it-is-different%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Over the weekend thousands of Twitter users <a href="http://communities.washingtontimes.com/neighborhood/business-being-diva/2012/jan/28/twitter-blackout-tweeters-protest-refusing-tweet/" onclick="urchinTracker('/outgoing/communities.washingtontimes.com/neighborhood/business-being-diva/2012/jan/28/twitter-blackout-tweeters-protest-refusing-tweet/?referer=');">boycotted</a> the service in protest at the <a href="http://blog.twitter.com/2011/01/tweets-must-flow.html" onclick="urchinTracker('/outgoing/blog.twitter.com/2011/01/tweets-must-flow.html?referer=');">announcement</a> that the service will begin withholding tweets based on the demands of local governments and law enforcement.</p>
<p>Protesting against censorship is laudable, but it is worth pointing out that most online services already do the same, whether it&#8217;s Google&#8217;s Orkut; Apple removing apps from its store; or <a href="http://www.guardian.co.uk/uk/2011/apr/29/facebook-activist-pages-purged" onclick="urchinTracker('/outgoing/www.guardian.co.uk/uk/2011/apr/29/facebook-activist-pages-purged?referer=');">Facebook disabling protest groups</a>.</p>
<p>Evgeny Morozov&#8217;s book The Net Delusion provides a good indicative list of examples:</p>
<blockquote><p>“In the run-up to the Olympic torch relay passing through Hong Kong in 2008, [Facebook] shut down several groups, while many pro-Tibetan activists had their accounts deactivated for “persistent misuse of the site &#8230; Twitter has been accused of silencing online tribute to the 2008 Gaza War. Apple has been bashed for blocking Dalai Lama–related iPhone apps from its App Store for China &#8230; Google, which owns Orkut, a social network that is surprisingly popular in India, has been accused of being too zealous in removing potentially controversial content that may be interpreted as calling for religious and ethnic violence against both Hindus and Muslims.”</p></blockquote>
<p>What&#8217;s notable about the Twitter announcement is that it suggests that censorship will be local rather than global, and transparent rather than secret. Techdirt have <a href="http://www.techdirt.com/blog.php?d=26&amp;m=1&amp;y=2012" onclick="urchinTracker('/outgoing/www.techdirt.com/blog.php?d=26_amp_m=1_amp_y=2012&amp;referer=');">noted this</a>, and <a href="http://mireille.it/twitterwithholdcontent/" onclick="urchinTracker('/outgoing/mireille.it/twitterwithholdcontent/?referer=');">Mireille Raad explains the distinction particularly well</a>:</p>
<blockquote>
<ul>
<li>&#8220;Censorship is not silent and will not go un-noticed like most other censoring systems</li>
<li>The official twitter help center article includes the way to bypass it – simply – all you have to do is change your location to another country and overwrite the IP detection.<br />
Yes, that is all, and it is included in the help center</li>
<li><strong>Quantity</strong> – can you imagine a govt trying to censor on a tweet by tweet basis a trending topic like Occupy or Egypt or Revolution – the amount of tweets can bring up the fail whale despite the <a href="http://mireille.it/how-twitter-works/" target="_blank" onclick="urchinTracker('/outgoing/mireille.it/how-twitter-works/?referer=');">genius twitter architecture</a> , so imagine what is gonna happen to a paper work based system.</li>
<li><strong>Speed</strong> – twitter, probably one of the fastest updating systems online -  and legislative bodies move at glaringly different speeds – It is impossible for a govt to be able to issue enough approval for a trending topic or anything with enough tweets/interest on.</li>
<li><strong>Curiosity </strong><strong>kills the cat </strong> and with such an one-click-bypass process, most people will become interested in checking out that “blocked” content. People are willing to sit through endless hours of tech training and use shady services to access blocked content – so this is like doing them a service.&#8221;</li>
</ul>
</blockquote>
<p>I&#8217;m also reminded of <a href="http://www.guardian.co.uk/technology/blog/2012/jan/03/the-internet-best-dissent-start" onclick="urchinTracker('/outgoing/www.guardian.co.uk/technology/blog/2012/jan/03/the-internet-best-dissent-start?referer=');">Ethan Zuckerman&#8217;s &#8216;Cute Cats Theory&#8217; of censorship and revolution</a>, as explained by Cory Doctorow:</p>
<blockquote><p>&#8220;When YouTube is taken off your nation&#8217;s internet, everyone notices, not just dissidents. So if a state shuts down a site dedicated to exposing official brutality, only the people who care about that sort of thing already are likely to notice.</p>
<p>&#8220;But when YouTube goes dark, all the people who want to look at cute cats discover that their favourite site is gone, and they start to ask their neighbours why, and they come to learn that there exists video evidence of official brutality so heinous and awful that the government has shut out all of YouTube in case the people see it.&#8221;</p></blockquote>
<p>What Twitter have announced (and <a href="http://blog.twitter.com/2012/01/tweets-still-must-flow.html" onclick="urchinTracker('/outgoing/blog.twitter.com/2012/01/tweets-still-must-flow.html?referer=');">since clarified</a>) perhaps makes this all-or-nothing censorship less likely, but it also adds to the <a href="http://en.wikipedia.org/wiki/Streisand_effect" onclick="urchinTracker('/outgoing/en.wikipedia.org/wiki/Streisand_effect?referer=');">&#8216;Don&#8217;t look at that!&#8217; effect</a>. The very act of censorship, online, can create a signal that is counter-productive. As journalists we should be more attuned to spotting <a href="http://chillingeffects.org/search.cgi" onclick="urchinTracker('/outgoing/chillingeffects.org/search.cgi?referer=');">those signals</a>.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F01%2F30%2Ftwitters-censorship-is-nothing-new-but-it-is-different%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/01/30/twitters-censorship-is-nothing-new-but-it-is-different/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A lesson in UGC, copyright, and the law (again)</title>
		<link>http://onlinejournalismblog.com/2012/01/27/a-lesson-in-ugc-copyright-and-the-law-again/</link>
		<comments>http://onlinejournalismblog.com/2012/01/27/a-lesson-in-ugc-copyright-and-the-law-again/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 20:56:28 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[regulation, law and ethics]]></category>
		<category><![CDATA[television]]></category>
		<category><![CDATA[UGC]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[O2]]></category>
		<category><![CDATA[Sky]]></category>
		<category><![CDATA[Terence Eden]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15762</guid>
		<description><![CDATA[Terence Eden filmed the above video demonstrating O2&#8242;s phone security flaw. He put it on YouTube with the standard copyright licence. And someone at Sky News ignored that when they used it without permission. But what&#8217;s interesting about Terence&#8217;s blog post about the experience is the legal position that Sky then negotiated from &#8211; an experience that journalism students, journalists<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/01/27/a-lesson-in-ugc-copyright-and-the-law-again/">Read more...</a></span>]]></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%2F01%2F27%2Fa-lesson-in-ugc-copyright-and-the-law-again%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F01_2F27_2Fa-lesson-in-ugc-copyright-and-the-law-again_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F01%2F27%2Fa-lesson-in-ugc-copyright-and-the-law-again%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><iframe width="600" height="338" src="http://www.youtube.com/embed/67b4GTI2Tto?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Terence Eden filmed the above video demonstrating<a href="http://www.t3.com/news/o2-shares-phone-numbers-through-mobile-browsing" onclick="urchinTracker('/outgoing/www.t3.com/news/o2-shares-phone-numbers-through-mobile-browsing?referer=');"> O2&#8242;s phone security flaw</a>. He put it on YouTube with the standard copyright licence. And someone at Sky News ignored that when they used it without permission. But what&#8217;s interesting about <a href="http://shkspr.mobi/blog/index.php/2012/01/sky-news-infringed-my-copyright/" onclick="urchinTracker('/outgoing/shkspr.mobi/blog/index.php/2012/01/sky-news-infringed-my-copyright/?referer=');">Terence&#8217;s blog post about the experience</a> is the legal position that Sky then negotiated from &#8211; an experience that journalism students, journalists and hyperlocal bloggers can learn from.</p>
<p>Here is what Sky came back with after negotiations stalled when Eden invoked copyright  law in asking for £1500 for using his video (&#8220;£300 for the broadcast of the video [based on NUJ rates ...] £400 for them failing to ask permission, another £400 for them infringing my copyright, and then £400 for them violating my moral rights.&#8221;):</p>
<blockquote><p>&#8220;After consulting with our Sky lawyers our position is that we believe a £300 settlement is a fair and appropriate sum.<br />
&#8220;Our position is:</p>
<ul>
<li>The £300 is in respect of what you describes as “infringement of copyright” rather than any “union rate”;</li>
<li>Contrary to what you claim, we did not act as if you had assigned us all rights. Specifically, we did not claim ownership nor seek to profit from it by licensing to others;</li>
<li>Criminal liability will not attach in relation to an inadvertent use of footage;</li>
<li>English law does not recognise violation of moral rights;</li>
<li>There is no authority that an infringement in these circumstances attracts four times the usual licence fee. To the contrary, the usual measure is what the reasonable cost of licensing would have been.&#8221;</li>
</ul>
</blockquote>
<p>This sounds largely believable &#8211; particularly as Sky were &#8220;very quick&#8221; to take the infringing content down. That would be a factor in any subsequent legal case.</p>
<p>Notably, <a href="http://www.wonderlandblog.com/wonderland/2011/08/the-daily-mail-knowingly-and-commercially-used-my-photos-despite-my-denying-them-permission.html" onclick="urchinTracker('/outgoing/www.wonderlandblog.com/wonderland/2011/08/the-daily-mail-knowingly-and-commercially-used-my-photos-despite-my-denying-them-permission.html?referer=');">the Daily Mail example he quotes</a> &#8211; where the newspaper reportedly paid £2000 for 2 images &#8211; included an email exchange where the photographer explicitly refuses the website permission to reproduce his photographs, and a period of time when the images remained online after he had complained.</p>
<p>These are all factors to consider whichever side of the situation you end up in.</p>
<p>PS: Part of Eden&#8217;s reason for pursuing Sky over their use of his video was the company&#8217;s position in pursuing &#8220;a copyright maximalist agenda&#8221; which Eden believes is damaging to the creative industries. He points out that:</p>
<blockquote><p>&#8220;The Digital Economy Act doesn’t allow me to sue Sky News for distributing my content for free without my permission. An individual can lose their Internet access for sharing a movie, however there don’t seem to be any sanctions against a large company for sharing my copyrighted work without permission.&#8221;</p></blockquote>
<p>An interesting point.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F01%2F27%2Fa-lesson-in-ugc-copyright-and-the-law-again%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/01/27/a-lesson-in-ugc-copyright-and-the-law-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The £10,000 question: who benefits most from a tax threshold change?</title>
		<link>http://onlinejournalismblog.com/2012/01/27/the-10000-question-who-benefits-most-from-a-tax-threshold-change/</link>
		<comments>http://onlinejournalismblog.com/2012/01/27/the-10000-question-who-benefits-most-from-a-tax-threshold-change/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 16:34:05 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[data journalism]]></category>
		<category><![CDATA[guido fawkes]]></category>
		<category><![CDATA[IFS]]></category>
		<category><![CDATA[james ball]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[tax threshold]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15755</guid>
		<description><![CDATA[Here&#8217;s a great test for eagle-eyed journalists, tweeted by Guardian&#8217;s James Ball. It&#8217;s a tale of two charts that claim to show the impact of a change in the income tax threshold to £10,000. Here&#8217;s the first: And here&#8217;s the second: So: same change, very different stories. In one story (Institute for Fiscal Studies) it is the the wealthiest that<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/01/27/the-10000-question-who-benefits-most-from-a-tax-threshold-change/">Read more...</a></span>]]></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%2F01%2F27%2Fthe-10000-question-who-benefits-most-from-a-tax-threshold-change%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F01_2F27_2Fthe-10000-question-who-benefits-most-from-a-tax-threshold-change_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F01%2F27%2Fthe-10000-question-who-benefits-most-from-a-tax-threshold-change%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Here&#8217;s a great test for eagle-eyed journalists, <a href="https://twitter.com/#!/jamesrbuk/status/162927850683514880" onclick="urchinTracker('/outgoing/twitter.com/_/jamesrbuk/status/162927850683514880?referer=');">tweeted by Guardian&#8217;s James Ball</a>. It&#8217;s a tale of two charts that claim to show the impact of a <a href="http://www.egovmonitor.com/node/45843" onclick="urchinTracker('/outgoing/www.egovmonitor.com/node/45843?referer=');">change in the income tax threshold to £10,000</a>. Here&#8217;s the first:</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/01/threshold-change-by-income-decile.jpg"><img class="alignnone size-full wp-image-15756" src="http://onlinejournalismblog.com/wp-content/uploads/2012/01/threshold-change-by-income-decile.jpg" alt="Change in post-tax income as a percentage of gross income" width="448" height="252" /></a></p>
<p>And here&#8217;s the second:</p>
<p><a href="http://onlinejournalismblog.com/wp-content/uploads/2012/01/income_tax_impact_IFS.jpg"><img class="alignnone  wp-image-15757" src="http://onlinejournalismblog.com/wp-content/uploads/2012/01/income_tax_impact_IFS.jpg" alt="Net impact of income tax threshold change on incomes - IFS" width="420" height="305" /></a></p>
<p>So: same change, very different stories. In one story (Institute for Fiscal Studies) it is the the wealthiest that appear to benefit the most; but in the other (<a href="http://order-order.com/2012/01/26/cleggs-progressive-10000-threshold-hike-benefits-low-income-earners-most/" onclick="urchinTracker('/outgoing/order-order.com/2012/01/26/cleggs-progressive-10000-threshold-hike-benefits-low-income-earners-most/?referer=');">Taxpayers&#8217; Alliance via Guido Fawkes</a>) it&#8217;s the poorest who are benefiting.</p>
<p>Did you spot the difference? The different y axis is a slight clue &#8211; the first chart covers a wider range of change &#8211; but it&#8217;s the legend that gives the biggest hint: one is measuring change as a percentage of <em>gross</em> income (before, well, taxes); the other as a change in <em>net</em> income (after tax).</p>
<p>James&#8217;s colleague Mary Hamilton <a href="https://twitter.com/#!/newsmary/status/162939489285713920" onclick="urchinTracker('/outgoing/twitter.com/_/newsmary/status/162939489285713920?referer=');">put it</a> like this: &#8220;4.5% of very little is of course much less than 1% of loads.&#8221; Or, more specifically: 4.6% of £10,853 (the second decile mentioned in Fawkes&#8217; post) is £499.24; 1.1% of £47,000 (the 9th decile according to <a href="https://docs.google.com/spreadsheet/ccc?key=0ApTo6f5Yj1iJdGJNb1dXcjdmTTgyQ2h5R1lFSUp3TlE" onclick="urchinTracker('/outgoing/docs.google.com/spreadsheet/ccc?key=0ApTo6f5Yj1iJdGJNb1dXcjdmTTgyQ2h5R1lFSUp3TlE&amp;referer=');">the same ONS figures</a>) is £517. (Without raw data, it&#8217;s hard to judge what figures are being used &#8211; if you include earnings over that £47k marker then it changes things, for example, and there&#8217;s no link to the net earnings).</p>
<p>In a nutshell, like James, I&#8217;m not entirely sure why they differ so strikingly. So, further statistical analysis welcome.</p>
<p>UPDATE: Seems a bit of a Twitter fight erupted between Guido Fawkes and James Ball over the source of the IFS data. James links to <a href="http://www.ifs.org.uk/election/launch_browne_phillips.pdf" onclick="urchinTracker('/outgoing/www.ifs.org.uk/election/launch_browne_phillips.pdf?referer=');">this pre-election document</a> containing the chart and <a href="http://www.ifs.org.uk/budgets/budget2011/budget2011_jb.pdf" onclick="urchinTracker('/outgoing/www.ifs.org.uk/budgets/budget2011/budget2011_jb.pdf?referer=');">this one on &#8216;Budget 2011&#8242;</a>. Guido <a href="https://twitter.com/#!/GuidoFawkes/status/163003578468925440" onclick="urchinTracker('/outgoing/twitter.com/_/GuidoFawkes/status/163003578468925440?referer=');">says</a> the chart&#8217;s &#8220;projections were based on policy forecasts that didn&#8217;t pan out&#8221;. I&#8217;ve not had the chance to properly scrutinise the claims of either James or Guido. I&#8217;ve also yet to see a direct link to the Taxpayers&#8217; Alliance data, so that is equally in need of unpicking.</p>
<p>In this post, however, my point isn&#8217;t to do with the specific issue (or who is &#8216;right&#8217;) but rather how it can be presented in different ways, and the importance of having access to the raw data to &#8216;unspin&#8217; it.</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F01%2F27%2Fthe-10000-question-who-benefits-most-from-a-tax-threshold-change%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/01/27/the-10000-question-who-benefits-most-from-a-tax-threshold-change/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A new Scottish datablog (and a treemap in Liverpool)</title>
		<link>http://onlinejournalismblog.com/2012/01/27/a-new-scottish-datablog-and-a-treemap-in-liverpool/</link>
		<comments>http://onlinejournalismblog.com/2012/01/27/a-new-scottish-datablog-and-a-treemap-in-liverpool/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 15:24:03 +0000</pubDate>
		<dc:creator>Paul Bradshaw</dc:creator>
				<category><![CDATA[data journalism]]></category>
		<category><![CDATA[newspapers]]></category>
		<category><![CDATA[datablog]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Jennifer O'Mahony]]></category>
		<category><![CDATA[ofsted]]></category>
		<category><![CDATA[scotsman]]></category>

		<guid isPermaLink="false">http://onlinejournalismblog.com/?p=15748</guid>
		<description><![CDATA[The Scotsman has a newish data blog, set up (I&#8217;m rather proud to say) by one of my former PA/Telegraph trainees: Jennifer O&#8217;Mahony. This is particularly important as so much data covered in the &#8216;national&#8217; press tends to be English-only due to devolution. The Department of Education, for example, only publishes English education data. If you want Scottish education data you need<br /><span class="read_more"><a href="http://onlinejournalismblog.com/2012/01/27/a-new-scottish-datablog-and-a-treemap-in-liverpool/">Read more...</a></span>]]></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%2F01%2F27%2Fa-new-scottish-datablog-and-a-treemap-in-liverpool%2F" onclick="urchinTracker('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fonlinejournalismblog.com_2F2012_2F01_2F27_2Fa-new-scottish-datablog-and-a-treemap-in-liverpool_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F01%2F27%2Fa-new-scottish-datablog-and-a-treemap-in-liverpool%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The Scotsman <a href="http://thesteamie.scotsman.com/viewtags.aspx?id=25" onclick="urchinTracker('/outgoing/thesteamie.scotsman.com/viewtags.aspx?id=25&amp;referer=');">has a newish data blog</a>, set up (I&#8217;m rather proud to say) by one of my former PA/Telegraph trainees: Jennifer O&#8217;Mahony. This is particularly important as so much data covered in the &#8216;national&#8217; press tends to be English-only due to devolution.</p>
<p>The Department of Education, for example, only<a href="http://www.education.gov.uk/inyourarea/" onclick="urchinTracker('/outgoing/www.education.gov.uk/inyourarea/?referer=');"> publishes English education data</a>. If you want Scottish education data you need to go to the <a href="http://www.scotland.gov.uk/Topics/Statistics/Browse/School-Education" onclick="urchinTracker('/outgoing/www.scotland.gov.uk/Topics/Statistics/Browse/School-Education?referer=');">Scottish Government website</a> or <a href="http://www.ltscotland.org.uk/" onclick="urchinTracker('/outgoing/www.ltscotland.org.uk/?referer=');">Education Scotland</a>. <a href="http://www.ofsted.gov.uk/about-us" onclick="urchinTracker('/outgoing/www.ofsted.gov.uk/about-us?referer=');">Ofsted</a> inspects schools in England; for Scottish schools reports you need to visit <a href="http://www.hmie.gov.uk/AboutUs/InspectionResources/" onclick="urchinTracker('/outgoing/www.hmie.gov.uk/AboutUs/InspectionResources/?referer=');">HM Inspectorate of Education</a>. (Meanwhile, the <a href="http://www.statistics.gov.uk/hub/children-education-skills/school-and-college-education/school-and-colleges/index.html" onclick="urchinTracker('/outgoing/www.statistics.gov.uk/hub/children-education-skills/school-and-college-education/school-and-colleges/index.html?referer=');">National Statistics site, publishes data from England, Scotland, Wales and Northern Ireland</a>).</p>
<p>So if there&#8217;s any Scottish data &#8211; or that of Wales or Northern Ireland &#8211; that you want me to help with, let me or <a href="https://twitter.com/#!/jaomahony" onclick="urchinTracker('/outgoing/twitter.com/_/jaomahony?referer=');">Jennifer</a> know. By way of illustrating the process, here&#8217;s a post <a title="Scraping, mapping scottish education data" href="http://helpmeinvestigate.com/education/2012/01/free-school-meals-in-scottish-primary-schools-data-visualisation/" onclick="urchinTracker('/outgoing/helpmeinvestigate.com/education/2012/01/free-school-meals-in-scottish-primary-schools-data-visualisation/?referer=');">over on Help Me Inves</a><a href="http://helpmeinvestigate.com/education/2012/01/free-school-meals-in-scottish-primary-schools-data-visualisation/" onclick="urchinTracker('/outgoing/helpmeinvestigate.com/education/2012/01/free-school-meals-in-scottish-primary-schools-data-visualisation/?referer=');">tigate: Education on how I helped Jennifer collect data on free school meals in Scotland</a>.</p>
<h2>A treemap in Liverpool</h2>
<p>On the same note of non-national data journalism, here&#8217;s a<a href="http://blogs.liverpooldailypost.co.uk/dalestreetblues/2012/01/infographic-showing-the-huge-s.html" onclick="urchinTracker('/outgoing/blogs.liverpooldailypost.co.uk/dalestreetblues/2012/01/infographic-showing-the-huge-s.html?referer=');"> particularly nice bit of data visualisation at the Liverpool Post</a>. It&#8217;s not often you see treemaps on a local newspaper website &#8211; this one was designed by <a href="https://twitter.com/#!/Ilanimator" onclick="urchinTracker('/outgoing/twitter.com/_/Ilanimator?referer=');">Ilan Sheady</a> based on data gathered by City Editor <a href="https://twitter.com/#!/davidbartlett1/status/162449105266814976" onclick="urchinTracker('/outgoing/twitter.com/_/davidbartlett1/status/162449105266814976?referer=');">David Bartlett</a> after a day&#8217;s <a href="http://onlinejournalismblog.com/2012/01/06/a-days-training-in-data-journalism/">data journalism training</a>.</p>
<p><img src="http://blogs.liverpooldailypost.co.uk/dalestreetblues/assets_c/2012/01/Liverpool%20Waters%20graphic-thumb-450x319-173400.jpg" alt="Infographic showing the huge scale of the £5.5bn Liverpool Waters scheme" /></p>
<p>&nbsp;</p>
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fonlinejournalismblog.com%2F2012%2F01%2F27%2Fa-new-scottish-datablog-and-a-treemap-in-liverpool%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>]]></content:encoded>
			<wfw:commentRss>http://onlinejournalismblog.com/2012/01/27/a-new-scottish-datablog-and-a-treemap-in-liverpool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

