<?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>Computational Legal Studies™ &#187; dynamic visualization</title>
	<atom:link href="http://computationallegalstudies.com/tag/dynamic-visualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://computationallegalstudies.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 05:59:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>GraphMovie: A Library for Generating Movies from Dynamic Graphs with igraph</title>
		<link>http://computationallegalstudies.com/2010/01/17/graphmovie-a-library-for-generating-movies-from-dynamic-graphs-with-igraph/</link>
		<comments>http://computationallegalstudies.com/2010/01/17/graphmovie-a-library-for-generating-movies-from-dynamic-graphs-with-igraph/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 21:55:40 +0000</pubDate>
		<dc:creator>mjbommar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dynamic visualization]]></category>
		<category><![CDATA[network analysis]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://computationallegalstudies.com/?p=3348</guid>
		<description><![CDATA[Over the past few months, we&#8217;ve developed a library for simply generating dynamic network animations. We&#8217;ve used this library in visualizations like (1) Visualizing the Gawaher Interactions of Umar Farouk Abdulmutallab, the Christmas Day Bomber and (2) Dynamic Animation of &#8230; <a href="http://computationallegalstudies.com/2010/01/17/graphmovie-a-library-for-generating-movies-from-dynamic-graphs-with-igraph/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Over the past few months, we&#8217;ve developed a library for simply generating dynamic network animations. We&#8217;ve used this library in visualizations like (1) <a href="http://computationallegalstudies.com/2010/01/06/the-time-evolving-structure-of-the-gawaher-islamic-forum-as-experienced-by-umar-farouk-abdulmutallab-the-christmas-day-bomber/"><strong>Visualizing the Gawaher Interactions of Umar Farouk Abdulmutallab, the Christmas Day Bomber</strong></a> and (2) <a href="http://computationallegalstudies.com/2009/12/02/dynamic-animation-of-the-east-anglia-climate-research-unit-email-network/"><strong>Dynamic Animation of the East Anglia Climate Research Unit Email Network</strong></a>.  Prior to these visualizations, we&#8217;ve used <a href="http://www.stanford.edu/group/sonia/"><strong>Sonia</strong></a> to produce animations like <a href="http://computationallegalstudies.com/2009/08/08/visualizing-dynamic-networks-with-python-igraph-and-sonia/"><strong>this one</strong></a>. While certainly a useful program for those without programming expertise, <a href="http://www.stanford.edu/group/sonia/"><strong>Sonia</strong></a> suffers from a number of issues that make it unusable for large graphs or graphs with many &#8220;slices.&#8221;  Furthermore, in our experience rendering various movies a number of platform issues with the Quicktime and Flash rendering engines have arisen.  Fixing these problems is possible, but Sonia&#8217;s large Java codebase makes for a steep learning curve.  As a result, we&#8217;ve decided to release <strong><a href="http://gist.github.com/279578">this GraphMovie class</a></strong> so that others can use or possibly improve this library.</p>
<p>In order to use the GraphMovie, you&#8217;ll need the following:</p>
<ul>
<li><a href="http://python.org/"><strong>python</strong></a><strong> </strong>(tested with 2.6)</li>
<li><a href="http://igraph.sourceforge.net/"><strong>igraph</strong></a> for network manipulation and visualization</li>
<li><a href="http://www.pythonware.com/products/pil/"><strong>Python Imaging Library</strong></a> for manipulating the image frames</li>
<li>mencoder from the <a href="http://www.mplayerhq.hu"><strong>MPlayer</strong></a> package for encoding the image frames into a movie</li>
</ul>
<p>Here are the files, hosted on github:</p>
<ul>
<li><a href="http://gist.github.com/279578"><strong>GraphMovie.py</strong></a></li>
<li><a href="http://gist.github.com/279584"><strong>GraphMovie_Example1.py</strong></a></li>
</ul>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="450" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8801668&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="600" height="450" src="http://vimeo.com/moogaloop.swf?clip_id=8801668&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/8801668"><strong>GraphMovie: Example 1</strong></a> from <a href="http://vimeo.com/computational"><strong>Computational Legal Studies</strong></a> on <a href="http://vimeo.com"><strong>Vimeo</strong></a>.</p>
<ul>
<li><a href="http://gist.github.com/279586"><strong>GraphMovie_Example2.py</strong></a></li>
</ul>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="450" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8801746&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="600" height="450" src="http://vimeo.com/moogaloop.swf?clip_id=8801746&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/8801746"><strong>GraphMovie: Example 2</strong></a> from <a href="http://vimeo.com/computational"><strong>Computational Legal Studies</strong></a> on <a href="http://vimeo.com"><strong>Vimeo</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://computationallegalstudies.com/2010/01/17/graphmovie-a-library-for-generating-movies-from-dynamic-graphs-with-igraph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 1/9 queries in 0.002 seconds using apc
Object Caching 268/281 objects using apc

Served from: computationallegalstudies.com @ 2012-02-07 14:28:51 -->
