<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Geert&#039;s research</title>
	<atom:link href="http://blog.barentsen.be/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.barentsen.be</link>
	<description>A blog on astronomy &#38; data science</description>
	<lastBuildDate>Fri, 17 May 2013 10:47:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.barentsen.be' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a74363e9cd40bc554f1f663adee72d14?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Geert&#039;s research</title>
		<link>http://blog.barentsen.be</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.barentsen.be/osd.xml" title="Geert&#039;s research" />
	<atom:link rel='hub' href='http://blog.barentsen.be/?pushpress=hub'/>
		<item>
		<title>Is Java freezing your system? Tune the garbage collector!</title>
		<link>http://blog.barentsen.be/2013/03/26/is-java-freezing-your-system-tune-the-garbage-collector/</link>
		<comments>http://blog.barentsen.be/2013/03/26/is-java-freezing-your-system-tune-the-garbage-collector/#comments</comments>
		<pubDate>Tue, 26 Mar 2013 00:06:34 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Data science]]></category>
		<category><![CDATA[Aladin]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Topcat]]></category>

		<guid isPermaLink="false">http://blog.barentsen.be/?p=723</guid>
		<description><![CDATA[I regularly open huge images and tables (&#62;1GB) in interactive Java-based (astronomy) software such as Aladin and TopCat. Because of the way memory allocation works in Java, the area where objects reside in memory (called the heap) needs to be reserved up front using the &#8220;Xmx&#8221; switch. Hence I tend to run memory-intensive applications using: [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=723&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I regularly open huge images and tables (&gt;1GB) in interactive Java-based (astronomy) software such as <a href="http://aladin.u-strasbg.fr/">Aladin</a> and <a href="http://www.star.bris.ac.uk/~mbt/topcat/">TopCat</a>. Because of <a href="http://www.ibm.com/developerworks/java/library/j-nativememory-linux/">the way memory allocation works in Java</a>, the area where objects reside in memory (called the heap) needs to be reserved up front using the &#8220;<code>Xmx</code>&#8221; switch. Hence I tend to run memory-intensive applications using:</p>
<p><code>java -Xmx4000m</code></p>
<p>If you don&#8217;t use this flag you will get an <code>OutOfMemoryError</code> exception as soon as your application exceeds the default heap size, which is typically set at only a few hundred megabytes.</p>
<p><b>However, I frequently found myself faced with a horrible performance experience when using a large heap.</b> Java applications would freeze my entire (64-bit) Linux system for anywhere between 2 and 60 seconds! This happened regardless of the JVM used (I tried Oracle Java 1.7, Sun Java 1.6, GCJ 1.5). I verified that my system had plenty of memory available and was not swapping, hence a lack of memory was not to blame. A profiler revealed that these freezes were instead caused by an insane number of interrupts which ate 100% of all CPU cores in so-called &#8220;system&#8221; cycles.</p>
<p>The cause of these system freezes is Java&#8217;s garbage collection mechanism; a built-in automated memory management system which reclaims memory occupied by objects that are no longer in use. Whilst this feature makes programming in Java a bit easier than, say, C++; it comes with the disadvantage that garbage collection in a large heap can <a href="http://stackoverflow.com/questions/214362/java-very-large-heap-sizes">introduce a considerable overhead</a>. Some collection algorithms deal less effectively with large heaps than others, and unfortunately in my case, <b>Java appeared to be using a collection strategy which paused the application during the whole duration of each garbage collection run, hence resulting in frequent freezing.</b></p>
<p>The trick to avoid these freezes is to tell Java to use a collection strategy which runs concurrently to the application, hence avoiding lengthy interruptions of the entire process. This can be achieved using the &#8220;<code>XX:+UseConcMarkSweepGC</code>&#8221; flag, i.e.:</p>
<p><code>java -Xmx4000m -XX:+UseConcMarkSweepGC</code></p>
<p>There are in fact <a href="http://www.oracle.com/technetwork/java/javase/gc-tuning-6-140523.html#cms">many more</a> tuning parameters which can influence the behaviour of the garbage collection, but &#8220;UseConcMarkSweepGC&#8221; looks like the first obvious thing to try if you are experiencing annoying freezes in memory-intensive Java applications.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=723&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2013/03/26/is-java-freezing-your-system-tune-the-garbage-collector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>
	</item>
		<item>
		<title>Comet PanSTARRS attracts 2x more men than women?</title>
		<link>http://blog.barentsen.be/2013/03/20/comet-panstarrs-attracts-2x-more-men-than-women/</link>
		<comments>http://blog.barentsen.be/2013/03/20/comet-panstarrs-attracts-2x-more-men-than-women/#comments</comments>
		<pubDate>Wed, 20 Mar 2013 18:41:04 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Comets]]></category>
		<category><![CDATA[Data science]]></category>

		<guid isPermaLink="false">http://blog.barentsen.be/?p=654</guid>
		<description><![CDATA[Two weeks ago, I posted an animation on YouTube showing where Comet PanSTARRS would be visible. The video attracted more than 15 000 hits, and although this is not a proper statistical analysis, I would like to draw attention to an interesting result in the demographic analytics provided by YouTube: 75% of the viewers were [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=654&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Two weeks ago, I <a href="http://blog.barentsen.be/2013/03/05/map-when-can-you-see-comet-panstarrs/">posted an animation</a> on YouTube showing where Comet PanSTARRS would be visible. The video attracted more than 15 000 hits, and <strong>although this is not a proper statistical analysis</strong>, I would like to draw attention to an interesting result in the demographic analytics provided by YouTube: <strong>75% of the viewers were male</strong>.</p>
<div id="attachment_655" class="wp-caption aligncenter" style="width: 614px"><a href="http://barentsen.files.wordpress.com/2013/03/20130320-panstarrs-youtube.png"><img src="http://barentsen.files.wordpress.com/2013/03/20130320-panstarrs-youtube.png?w=604&#038;h=316" alt="Demographic statistics for the visibility animation of comet PanSTARRS." width="604" height="316" class="size-large wp-image-655" /></a><p class="wp-caption-text">YouTube demographic statistics for the animation on comet PanSTARRS&#8217;s visibility.</p></div>
<p>Although the numbers are only based on the ~20% of viewers which were logged into a YouTube account while watching, statistics like these may reveal broad trends about the public interest in astronomy. If we were to assume that all people interested in astronomy are equally likely to have watched the animation, and if in addition we assume that these people are all equally likely to have a YouTube account regardless of their age/gender, then one might conclude that (middle-aged) men are twice more likely to seek for comet information than women. Interestingly, this is broadly consistent with the (unfortunate) trend of large male majorities in astronomy clubs and <a href="http://womeninastronomy.blogspot.co.uk/2012/11/where-are-women-astronomy-professors.html">university departments</a>.</p>
<p><strong>There is no doubt that the above assumptions are wrong to some degree, and that the YouTube statistics are hence biased.</strong> It is not clear how severe the bias is however. I tried Googling for demographic statistics of YouTube users in general, but could not find consistent information. (Does anyone know a reliable source? Are 75% of YouTube users male anyway?!)</p>
<p>If the biases can be accounted for using a proper statistical analysis, then the analytics offered by science-themed YouTube videos would provide a way to measure the public interest as a function of age, gender and topic.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=654&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2013/03/20/comet-panstarrs-attracts-2x-more-men-than-women/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2013/03/20130320-panstarrs-youtube.png?w=604" medium="image">
			<media:title type="html">Demographic statistics for the visibility animation of comet PanSTARRS.</media:title>
		</media:content>
	</item>
		<item>
		<title>Map: when can you see comet PanSTARRS?</title>
		<link>http://blog.barentsen.be/2013/03/05/map-when-can-you-see-comet-panstarrs/</link>
		<comments>http://blog.barentsen.be/2013/03/05/map-when-can-you-see-comet-panstarrs/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 13:33:52 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Meteor science]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[C/2011 L4]]></category>
		<category><![CDATA[Comet]]></category>
		<category><![CDATA[Pan-STARRS]]></category>

		<guid isPermaLink="false">http://blog.barentsen.be/?p=606</guid>
		<description><![CDATA[Comet C/2011 L4 (PANSTARRS) has brightened dramatically over the past week and is now visible with the naked eye from the Southern Hemisphere. Pan-STARRS is moving north rapidly and will become visible across Europe, North America and Asia from Thursday 7 March onward. The comet is expected to reach its peak brightness around the time [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=606&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Comet <a href="http://cometography.com/lcomets/2011l4.html">C/2011 L4 (PANSTARRS)</a> has brightened dramatically over the past week and is <a href="http://spaceweather.com/gallery/index.php?title=comet">now visible with the naked eye</a> from the Southern Hemisphere. Pan-STARRS is moving north rapidly and will become visible across Europe, North America and Asia <b>from Thursday 7 March onward</b>. The comet is expected to reach its peak brightness around the time of its closest approach to the Sun (called the perihelion) on Sunday 10 March. It may or may not lose brightness quickly afterwards, so you want to catch this comet as soon as possible!</p>
<p>I plotted the visibility of Pan-STARRS in the <a href="http://www.youtube.com/watch?v=WhXyegVTikc">video</a> below. Green/yellow areas in the animation indicate parts of the world where the comet will be above the horizon (and the Sun at least six degrees below the horizon). The movie shows that Pan-STARRS is only visible shortly after sunset, when it is located <a href="http://www.skyandtelescope.com/observing/highlights/Update-on-Comet-PanSTARRS-187930541.html">low above the Western horizon</a>.</p>
<p>The movie was created using my Python <a href="https://github.com/barentsen/visibility-maps">visibility-maps module</a>. The original frames that went into making the movie <a href="http://star.herts.ac.uk/~gb/blog/C2011L4/">can be found here</a> and may be used freely.</a></p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='480' src='http://www.youtube.com/embed/WhXyegVTikc?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=606&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2013/03/05/map-when-can-you-see-comet-panstarrs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>
	</item>
		<item>
		<title>How frequently do large meteoroids hit us?</title>
		<link>http://blog.barentsen.be/2013/02/15/the-frequency-of-large-meteoroids/</link>
		<comments>http://blog.barentsen.be/2013/02/15/the-frequency-of-large-meteoroids/#comments</comments>
		<pubDate>Fri, 15 Feb 2013 12:34:15 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Meteor science]]></category>
		<category><![CDATA[Chelyabinsk]]></category>
		<category><![CDATA[Fireball]]></category>

		<guid isPermaLink="false">http://blog.barentsen.be/?p=451</guid>
		<description><![CDATA[The internet is buzzing about a fireball which caused a powerful sonic boom over Chelyabinsk in&#160;Russia,&#160;injuring hundreds. A question asked by many is: how common is such event? Answer: more common than you might think! The population of Solar System bodies which cross Earth&#8217;s orbit range from mm-sized dust (producing meteors) to km-sized asteroids (producing [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=451&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The internet <a href="https://twitter.com/search?q=%23RussianMeteor">is buzzing</a> about a fireball which caused a powerful <a href="http://en.wikipedia.org/wiki/Sonic_boom">sonic boom</a> over Chelyabinsk in&nbsp;Russia,&nbsp;<a href="http://www.bbc.co.uk/news/world-europe-21468116">injuring hundreds</a>. A question asked by many is: <em>how common is such event</em>? </p>
<p>Answer: <em>more common than you might think</em>!</p>
<p>The population of Solar System bodies which cross Earth&#8217;s orbit range from mm-sized dust (producing meteors) to km-sized asteroids (producing mass extinctions). The frequency of such objects is constrained by meteor observations on one hand (there are ~1000 visible meteors per second across the planet), and asteroid surveys on the other hand (a 10km body will hit us every ~100 million years).</p>
<p>The object that struck Russia falls somewhere in the middle of this range. We know that a meteoroid needs to be larger than 1 meter in diameter to penetrate deep enough into the atmosphere to cause a significant airburst (though velocity, entry angle and composition are important too). At the same time, the scale of destruction is a lot smaller than the famous <a href="http://en.wikipedia.org/wiki/Tunguska_event">Tunguska event in 1908</a>, which is thought to have been caused by a 50m-sized body. Hence a first guess for the size of the Russian meteoroid would be &#8220;between 1 and 20 meter&#8221;.</p>
<p>We don&#8217;t know the frequency of asteroids in this size range very well. There are not enough meteor observing cameras to detect these rare events, yet the objects are too small and faint to be detected by telescopes ahead of their impact (apart from <a href="http://www.nature.com/nature/journal/v458/n7237/full/nature07920.html">one notable exception</a> in 2008).</p>
<p>There is an industry that is very successful in detecting these impacts however; military space surveillance. The US Defense and Energy departments operate satellites to detect the heat signatures from nuclear weapons and rocket launches from space. In 2002, a team led by Professor&nbsp;<a href="http://meteor.uwo.ca/~pbrown/">Peter Brown</a> obtained access to classified data on 300 large fireballs detected between 1994 and 2002 by the military. The authors combined this information with ground-based observations to estimate the relationship between the size of meteoroids and their impact frequency:</p>
<div id="attachment_486" class="wp-caption aligncenter" style="width: 605px"><a href="http://www.nature.com/nature/journal/v420/n6913/full/nature01238.html"><img class="size-medium wp-image-486" alt="Brown et al. 2002, Figure 4." src="http://barentsen.files.wordpress.com/2013/02/brown2002_fig4.png?w=595&#038;h=600" width="595" height="600" /></a><p class="wp-caption-text">Credit: <a href="http://www.nature.com/nature/journal/v420/n6913/full/nature01238.html">Brown et al. 2002, Figure 4.</a></p></div>
<p>The work by Brown et al. may roughly be summarized as follows:</p>
<ul>
<li>a 10cm-body hits us every few minutes;</li>
<li>a 1m-body every few months;</li>
<li>a 10m-body every few years to decades;</li>
<li>a 100m-body every few millenia.</li>
</ul>
<p>Hence, a fireball like the one in Russia is likely to occur somewhere between every few years and every few decades, but the uncertainty is large. Shifting the trend slightly upwards or downwards can change the estimated frequencies by a factor of several, and so we should be careful to pin down any numbers with large confidence.</p>
<p>Whilst the Russian meteor appears to be the largest <em>recorded</em> event for a century, it would be imprudent to infer that it hence only occurs once a century. It is difficult to rely on historical records of the past, because less than 20% of the surface of our planet is inhabited, and so many impacts might have gone unnoticed. In fact there is some evidence for a possible <a href='http://adsabs.harvard.edu/abs/1995Obs...115..250B'>&#8216;Brazilian Tunguska&#8217; on 13 August 1930</a> and a <a href='http://adsabs.harvard.edu/abs/1995JIMO...23..207S'>&#8216;Guyana Tunguska&#8217; on 11 December 1935</a>, but events like these may have been undocumented or forgotten.</p>
<p>Moreover, there are reasons to believe that the impact frequencies are not constant, but may be elevated during certain periods (see <a href="http://star.herts.ac.uk/~gb/pub/2012_imc.pdf">my recent talk</a> on this topic). Unfortunately, the US military announced in 2009 that they <a href="http://www.space.com/6829-military-hush-incoming-space-rocks-classified.html">will no longer share fireball observations with scientists</a>, so we&#8217;ll have to come up with other ways to pin down the exact danger coming from small asteroids!</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=451&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2013/02/15/the-frequency-of-large-meteoroids/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2013/02/brown2002_fig4.png?w=595" medium="image">
			<media:title type="html">Brown et al. 2002, Figure 4.</media:title>
		</media:content>
	</item>
		<item>
		<title>From where can you spot 2012 DA14?</title>
		<link>http://blog.barentsen.be/2013/02/12/from-where-can-you-see-2012-da14/</link>
		<comments>http://blog.barentsen.be/2013/02/12/from-where-can-you-see-2012-da14/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 21:30:50 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Meteor science]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://blog.barentsen.be/?p=422</guid>
		<description><![CDATA[On Friday 15 February, a 50-meter asteroid named 2012 DA14 will approach Earth to within a distance of just ~28 000 km. The internet is buzzing about this near-miss because the object is expected to become brighter than 9th magnitude for approximately 3 hours (18h00-21h30 UTC), peaking at a brightness of 7th magnitude near 19h45 [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=422&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>On Friday 15 February, a 50-meter asteroid named <a href="http://neo.jpl.nasa.gov/news/news174.html">2012 DA14</a> will approach Earth to within a distance of <a href="http://remanzacco.blogspot.it/2013/02/close-approach-of-asteroid-2012-da14.html">just ~28 000 km</a>. The internet <a href="https://twitter.com/search?q=%232012DA14">is buzzing</a> about this near-miss because the object is expected to become brighter than 9th magnitude for approximately 3 hours (18h00-21h30 UTC), peaking at a brightness of 7th magnitude near 19h45 UTC. Although this is just below the brightness limit of the unaided eye, it is within reach of good binoculars.</p>
<p>While there are <a href="http://www.popastro.com/news/newsdetail.php?id_nw=165">plenty</a> of <a href="http://www.heavens-above.com/2012da14.aspx">maps</a> online showing <em>where in the sky</em> you may find 2012 DA14, I could not find any maps showing <em>where on Earth</em> you have to be to get a good view. So I made a few maps myself. Green areas in the animated gif below indicate parts of the world where the asteroid will be above (and the Sun below) the horizon as it sweeps past. The maps were generated using a Python class which I pushed to <a href="https://github.com/barentsen/visibility-maps">my GitHub repository</a>.</p>
<p><a href="http://barentsen.files.wordpress.com/2013/02/2012da141.gif"><img src="http://barentsen.files.wordpress.com/2013/02/2012da141.gif?w=604" alt="Visibility of 2012 DA14"   class="aligncenter size-full wp-image-435" /></a></p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=422&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2013/02/12/from-where-can-you-see-2012-da14/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2013/02/2012da141.gif" medium="image">
			<media:title type="html">Visibility of 2012 DA14</media:title>
		</media:content>
	</item>
		<item>
		<title>How do you organise $HOME?</title>
		<link>http://blog.barentsen.be/2012/10/30/how-to-organise-your-home-directory/</link>
		<comments>http://blog.barentsen.be/2012/10/30/how-to-organise-your-home-directory/#comments</comments>
		<pubDate>Tue, 30 Oct 2012 22:15:31 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Data science]]></category>

		<guid isPermaLink="false">http://barentsen.wordpress.com/?p=55</guid>
		<description><![CDATA[Home directories often turn into spooky graveyards of random files, temporary directories and images of lolcats. It takes courage to delete the mess, because there may be one or two important files hiding amongst the pr0n. As a result, many scientists have grown afraid to run &#8220;ls ~&#8221; in public, fearing that the output of [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=55&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Home directories often turn into spooky graveyards of random files, temporary directories and <a href="http://4.bp.blogspot.com/-K3vWjzXLsKM/TzDGLdv6GqI/AAAAAAAAB_M/EJUwGAP3sME/s1600/funny-pictures-cat-threatens-to-edit-your-face.jpg">images of lolcats</a>. It takes courage to delete the mess, because there may be one or two important files hiding amongst the pr0n. As a result, many scientists have grown afraid to run &#8220;ls ~&#8221; in public, fearing that the output of said command will expose them as file-hoarding maniacs. (By the way, the fear of running &#8220;ls ~&#8221; should be called <em>domusindexophobia</em> in Latin.)</p>
<p>For years I have employed the popular strategy of sticking random files on the desktop, and whenever it becomes a mess, create a folder called &#8220;oldstuff&#8221; and move everything into it. The strength of this strategy is that it can be repeated indefinitely (oldstuff2, oldstuff3, oldstuff4&#8230;), the weakness is that you remain a file-hoarding, <em>domusindexophobic</em> maniac.</p>
<p>In the past few months I decided to adopted a more sensible strategy. <span id="more-55"></span><strong>From henceforth, my home directory shall never contain more than 7 (non-hidden) directories:</strong></p>
<ul>
<li><strong>~/tmp</strong>: all downloads and unimportant files go here; may be emptied without notice.</li>
<li><strong>~/bin</strong>: locally installed software, i.e. &#8220;./configure &#8211;prefix=~/bin/foo&#8221; and my <a href="http://www.enthought.com/products/epd.php">Python distro</a>.</li>
<li><strong>~/dev</strong>: source code trees for programming projects (sub-directories are GitHub repositories!)</li>
<li><strong>~/proj</strong>: various non-programming projects.</li>
<li><strong><strong>~/doc</strong></strong>: subdirectories for receipts, boarding passes, papers, books, etc.</li>
<li><strong>~/lts</strong>: things to archive forever (&#8220;Long Term Storage&#8221;); e.g. photos and science data (with README files!)</li>
<li><strong>~/msc</strong>: a resort for things which don&#8217;t fit elsewhere.</li>
</ul>
<p>There is just one exception to this rule: the additional directories which are forced upon me by the Apple Homedir Police in OSX are allowed to be present (I hardly have a choice), but they are not allowed to contain anything useful. There is no exception to the rule in any of the Linux boxes I use.</p>
<p>I employ different backup strategies for each folder. For example, parts of ~/lts sit on an external network drive, while much of ~/doc sits on DropBox and most of ~/dev sits on GitHub.</p>
<p>Is this a Sensible Approach™? What does your nest look like?</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=55&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2012/10/30/how-to-organise-your-home-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>
	</item>
		<item>
		<title>Footprint of the IPHAS Galactic Plane survey</title>
		<link>http://blog.barentsen.be/2012/10/22/footprint-of-the-iphas-survey/</link>
		<comments>http://blog.barentsen.be/2012/10/22/footprint-of-the-iphas-survey/#comments</comments>
		<pubDate>Mon, 22 Oct 2012 11:01:16 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Galactic surveys]]></category>
		<category><![CDATA[IPHAS]]></category>

		<guid isPermaLink="false">http://barentsen.wordpress.com/?p=124</guid>
		<description><![CDATA[As part of my post-doc at the University of Hertfordshire, I&#8217;m helping to calibrate, release and exploit data obtained by the INT Photometric H-Alpha Survey (IPHAS). This is a 1800 deg2 optical survey of the Northern Galactic Plane, carried out in the narrow-band Hα and broad-band Sloan r&#8217;/i&#8217; filters. I&#8217;ll be talking more about the survey in [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=124&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As part of my post-doc at the University of Hertfordshire, I&#8217;m helping to calibrate, release and exploit data obtained by the <a href="http://www.iphas.org">INT Photometric H-Alpha Survey</a> (IPHAS). This is a 1800 deg<sup>2</sup> optical survey of the Northern Galactic Plane, carried out in the narrow-band Hα and broad-band Sloan r&#8217;/i&#8217; filters. I&#8217;ll be talking more about the survey in future posts, but as a warm-up I produced this plot of the survey&#8217;s 15270 telescope pointings:</p>
<div id="attachment_168" class="wp-caption aligncenter" style="width: 610px"><a href="http://barentsen.wordpress.com/2012/08/08/footprint-of-the-iphas-galactic-plane-survey/iphas_footprint/" rel="attachment wp-att-168"><img class="size-medium wp-image-168" title="Footprint of the IPHAS survey." alt="" src="http://barentsen.files.wordpress.com/2012/08/iphas_footprint2.png?w=600" width="600" /></a><p class="wp-caption-text">Footprint of the IPHAS survey.</p></div>
<p>Let me explain this footprint briefly. The survey uses the <a href="http://www.ing.iac.es/Astronomy/instruments/wfc/">Wide-Field Camera</a> (WFC) at the 2.5-meter <a href="http://www.ing.iac.es/Astronomy/telescopes/int/">Isaac Newton Telescope</a> (INT) in La Palma. This camera consists of four thinned 2048 × 4096 pixel CCDs arranged in an L shape like this: <span id="more-124"></span></p>
<div id="attachment_154" class="wp-caption aligncenter" style="width: 610px"><a href="http://barentsen.wordpress.com/2012/08/08/footprint-of-the-iphas-galactic-plane-survey/iphas_field-2/" rel="attachment wp-att-154"><img class="size-medium wp-image-154" title="Single IPHAS exposure" alt="" src="http://barentsen.files.wordpress.com/2012/08/iphas_field1.png?w=600&#038;h=424" height="424" width="600" /></a><p class="wp-caption-text">Footprint of a single IPHAS (WFC) exposure.</p></div>
<p>The four CCDs provide a combined field of view of 0.3 deg<sup>2</sup>, hence the minimum number of pointings required to cover the 1800 deg<sup>2</sup> survey area is 6000. However, the survey was designed to provide a 5% overlap between adjacent fields to enable data quality and calibration checks. As a result, the footprint contains a total of 7635 fields which partially overlap.</p>
<p>Furthermore, each field was paired with a so-called <em>offset field</em> at 5 arcmin West and South, to cover the narrow gaps between the CCD chips. This explains the final number of 7635 x 2 = 15 270 pointings. When their footprints are plotted using 30% opacity, a complicated sky coverage pattern emerges. Whilst the majority of the sky is covered twice, there are overlap areas which are covered three or four times (dark patches) and narrow bands between CCD chips which are covered  only once (brighter strips):</p>
<div id="attachment_162" class="wp-caption aligncenter" style="width: 610px"><a href="http://barentsen.wordpress.com/2012/08/08/footprint-of-the-iphas-galactic-plane-survey/iphas_local-2/" rel="attachment wp-att-162"><img class="size-medium wp-image-162" title="IPHAS pointing strategy" alt="" src="http://barentsen.files.wordpress.com/2012/08/iphas_local1.png?w=600&#038;h=424" height="424" width="600" /></a><p class="wp-caption-text">IPHAS footprints plotted with 30% opacity. The darkest overlap areas are covered four times, while the the narrow bands between CCD chips are exposed only once.</p></div>
<p>A tricky question which results from this coverage pattern is: <strong>how should the final source catalogue be generated?</strong> Some objects are observed four times, sometimes many years apart, whilst others are only observed once. Should multiple exposures of a single object be averaged, or should only the best exposure be adopted in the source catalogue? Such tricky decisions have to be made for all surveys because <em>telescopes don&#8217;t make catalogues</em> (see <a href="http://arxiv.org/abs/1008.0738">Hogg &amp; Lang 2010</a>.)</p>
<p>An obvious solution is to release both a catalogue of individual detections on one hand, and a catalogue of averaged source properties on the other hand (there has already been a fair bit of thinking and discussion in this direction within the IPHAS team!)</p>
<p>Such catalogue releases should preferably be supplemented by scriptable access to the calibrated pixel data, through image cut-outs, to enable users to re-measure properties or fit models to the <em>actual pixel data</em>. Is there a standard VO protocol for this? There is the <a href="http://www.ivoa.net/Documents/SIA/">Simple Image Access protocol</a>, but is not quite designed for cut-outs!</p>
<p>How do you think surveys with a complicated sky coverage pattern should generate their catalogues and make data available?</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=124&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2012/10/22/footprint-of-the-iphas-survey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2012/08/iphas_footprint2.png?w=600" medium="image">
			<media:title type="html">Footprint of the IPHAS survey.</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2012/08/iphas_field1.png?w=600" medium="image">
			<media:title type="html">Single IPHAS exposure</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2012/08/iphas_local1.png?w=600" medium="image">
			<media:title type="html">IPHAS pointing strategy</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual &amp; video observations of the 2012 Draconids outburst</title>
		<link>http://blog.barentsen.be/2012/10/10/visual-video-observations-of-the-2012-draconids-outburst/</link>
		<comments>http://blog.barentsen.be/2012/10/10/visual-video-observations-of-the-2012-draconids-outburst/#comments</comments>
		<pubDate>Wed, 10 Oct 2012 23:17:41 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Meteor science]]></category>

		<guid isPermaLink="false">http://blog.barentsen.be/?p=361</guid>
		<description><![CDATA[As reported in my previous post, the Draconids meteor shower showed an exceptional peak on the evening of 8 October 2012 near 17h UT. The peak was very pronounced in data from the Canadian Meteor Orbit Radar (CMOR), which reported rates up to 2300 meteors/hour. In fact, I am told that this radar system recorded [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=361&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As reported in my <a title="Draconids show outburst (again!)" href="/2012/10/08/draconids-2012/">previous post</a>, the Draconids meteor shower showed an exceptional peak on the evening of 8 October 2012 near 17h UT. The peak was very pronounced in data from the <a href="http://meteor.uwo.ca/research/radar/cmor_intro.html">Canadian Meteor Orbit Radar</a> (CMOR), which reported rates <a href="http://fireballs.ndc.nasa.gov/special/DRA_2012/Draconids_2012.png">up to 2300 meteors/hour</a>. In fact, I am told that this radar system recorded more meteor orbits that day than on any other day in its 13-year history.</p>
<p>While the peak was clearly exceptional in terms of radio observations, it remains unclear how many meteors could be seen with the naked eye or video cameras. The time of the peak <a href="/2012/10/08/draconids-2012/draconids2012-visibility/">mainly favoured sparsely populated areas of our planet</a>, and visual observations have so far only been reported by amateur-astronomers <em>Alexandr Maidik</em> in Ukraine (<a href="http://vmo.imo.net/imozhr/obsview/view.php?id=11095">who recorded 55 Draconids between 16h00-18h00 UT</a>) and <em>Jakub Koukal</em> in the Czech Republic (<a href="http://vmo.imo.net/imozhr/obsview/view.php?id=11093">who recorded 60 Draconids between 17h00-19h10 UT</a>).</p>
<p>Using their data, I posted this graph of the Zenithal Hourly Rate (ZHR) on the website of the <a href="http://www.imo.net">International Meteor Organization</a> (IMO):</p>
<div id="attachment_362" class="wp-caption alignnone" style="width: 609px"><a href="http://blog.barentsen.be/2012/10/10/visual-video-observations-of-the-2012-draconids-outburst/draconids2012_visual/" rel="attachment wp-att-362"><img class="size-full wp-image-362" title="Visual activity curve of the Draconids 2012" alt="" src="http://barentsen.files.wordpress.com/2012/10/draconids2012_visual-e1349950916182.png?w=604"   /></a><p class="wp-caption-text">Visual activity curve of the Draconids 2012</p></div>
<p><span id="more-361"></span>While <em>Alexandr</em> and <em>Jakub</em> are both very experienced and reliable observers, two visual reports are never enough to construct a reliable activity profile. This is because different observing conditions introduce different systematic uncertainties in the ZHR estimates, which can only be corrected by averaging a large number of independent observations.</p>
<p>Moreover, both observers suffered from either poor limiting magnitude or evening twilight. The period covered by <em>Alexandr</em> alone yields rates up to ZHR=600+/-200 meteors per hour in the interval 16h50-17h00 UT. However, as soon as data from <em>Jakub</em> is available from 17h00 UT, rates drop to ZHR=160+/-40. When leaving out the data from <em>Alexandr</em>, <em>Jakub&#8217;s</em> first interval (17h00-17h10 UT) yields ZHR=104+/-39.</p>
<p>The latter estimate of ZHR ~100 meteors/hour seems broadly consistent with data from the <a href="http://www.imonet.org">IMO video network</a>, which caught the end of the peak and reported ZHRs in the range of 30 to 60 meteors per hour in the interval 17h00-17h20. This is mainly based on two stations in Hungary, operated by amateur-astronomers <em>Antal Igaz</em> and <em>Zsolt Perko</em>:</p>
<div id="attachment_369" class="wp-caption alignnone" style="width: 610px"><a href="http://blog.barentsen.be/2012/10/10/visual-video-observations-of-the-2012-draconids-outburst/draconids2012_imonet-2/" rel="attachment wp-att-369"><img class="size-medium wp-image-369" title="Video activity curve of the Draconids 2012 (credit: IMO video network)" alt="" src="http://barentsen.files.wordpress.com/2012/10/draconids2012_imonet1.png?w=600&#038;h=327" height="327" width="600" /></a><p class="wp-caption-text">Video activity curve of the Draconids 2012 (credit: IMO video network)</p></div>
<p>On the basis of this visual and video data, it seems tempting to conclude that the outburst was dominated by small meteoroid particles and hence produced only a moderate outburst in the optical (ZHR &lt; 200 meteors per hour?), but more data is required to make such claim.</p>
<p>If anyone is aware of reports from Russia or China about this event, please shout. <em>This area of science crucially depends on data provided by citizens!</em></p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=361&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2012/10/10/visual-video-observations-of-the-2012-draconids-outburst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2012/10/draconids2012_visual-e1349950916182.png" medium="image">
			<media:title type="html">Visual activity curve of the Draconids 2012</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2012/10/draconids2012_imonet1.png?w=600" medium="image">
			<media:title type="html">Video activity curve of the Draconids 2012 (credit: IMO video network)</media:title>
		</media:content>
	</item>
		<item>
		<title>Draconids show outburst (again!)</title>
		<link>http://blog.barentsen.be/2012/10/08/draconids-2012/</link>
		<comments>http://blog.barentsen.be/2012/10/08/draconids-2012/#comments</comments>
		<pubDate>Mon, 08 Oct 2012 19:40:22 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Meteor science]]></category>

		<guid isPermaLink="false">http://barentsen.wordpress.com/?p=303</guid>
		<description><![CDATA[For the second year in a row, reports are emerging about a major peak in the activity of the Draconids meteor shower. Radar observing stations in Canada and in Germany reported up to 1000-2000 meteors/hour between 16h and 18h UT on 8 October 2012. Evidence for an outburst is also apparent in data from some forward-scatter [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=303&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>For the <a href="http://www.imo.net/draconids2011results">second year in a row</a>, reports are emerging about a major peak in the activity of the Draconids meteor shower. Radar observing stations <a href="http://lists.meteorobs.org/pipermail/meteorobs/2012-October/015396.html">in Canada</a> and <a href="http://barentsen.files.wordpress.com/2012/10/ask32_flux.png">in Germany</a> reported up to 1000-2000 meteors/hour between 16h and 18h UT on 8 October 2012. Evidence for an outburst is also apparent in data from <a href="http://rmob.org/pages/liveradiometeorpage.php">some forward-scatter radio stations</a> operated by amateur astronomers.</p>
<p>Radio observing systems are only sensitive to the smallest meteoroids, which produce very faint shooting stars. It is not yet clear how many meteors were bright enough to be seen with the naked eye or video cameras. However, independent video observers in the Czech Republic and Germany told me they recorded more Draconids than usual in the early evening hours (~10 to 40), which does indicate a significant enhancement (albeit no exceptional storm). Careful analysis will follow.</p>
<p>Note that the time of the peak did not favour most parts of Europe, which were still experiencing evening twilight. Observers across Asia were best placed to observe the event. Green and yellow areas in the map below indicate parts of the world where the sky was dark, and the radiant above the horizon, at 17h00 UT tonight:</p>
<p><a href="http://barentsen.wordpress.com/2012/10/08/draconids-2012/draconids2012-visibility/" rel="attachment wp-att-312"><img class="aligncenter size-medium wp-image-312" title="Visibility of the Draconids 2012" src="http://barentsen.files.wordpress.com/2012/10/draconids2012-visibility.png?w=480" alt="" width="480" /></a></p>
<p>This outburst may have been caused by the narrow trail of dust and debris left behind by the parent comet in 1959. Our planet <a href="http://feraj.narod.ru/Radiants/Predictions/21p-ids2012eng.html">had been predicted to encounter this specific dust trail in 2012</a> by meteor modeler Mikhail Maslov, but the level of activity appears to have been somewhat higher than expected. This is not a first for the Draconids: similar surprises occured in 1985, 1998, 1999, 2005, and <a href="http://www.imo.net/docs/ellison_1933_draconids_storm_account.txt">MAJOR storms were seen in 1933 and 1946</a>.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=303&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2012/10/08/draconids-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>

		<media:content url="http://barentsen.files.wordpress.com/2012/10/draconids2012-visibility.png?w=480" medium="image">
			<media:title type="html">Visibility of the Draconids 2012</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome!</title>
		<link>http://blog.barentsen.be/2012/10/06/welcome/</link>
		<comments>http://blog.barentsen.be/2012/10/06/welcome/#comments</comments>
		<pubDate>Sat, 06 Oct 2012 12:00:32 +0000</pubDate>
		<dc:creator>Geert</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://barentsen.wordpress.com/?p=78</guid>
		<description><![CDATA[To celebrate the completion of my PhD and start of a post-doc, I&#8217;ve decided to start publishing bits and pieces of research on a blog. I&#8217;m hoping this will encourage me to write about results more frequently, hence achieving more scientific output and interaction than I would obtain through peer-reviewed publications and conferences alone. I [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=78&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>To celebrate the completion of my PhD and start of a post-doc, I&#8217;ve decided to start publishing bits and pieces of research on a blog. I&#8217;m hoping this will encourage me to write about results more frequently, hence achieving more scientific output and interaction than I would obtain through peer-reviewed publications and conferences alone.</p>
<p>I am inspired by a number of existing research bloggers who I enjoy reading. They include <a href="http://andrewgelman.com/">Andrew Gelman</a>, <a href="http://hoggresearch.blogspot.co.uk/">David Hogg</a>, <a href="http://sarahaskew.net/">Sarah Kendrew</a>, <a href="http://andyxl.wordpress.com">Andy Lawrence</a>, <a href="http://apwhelan.blogspot.co.uk/">Adrian Price-Whelan</a>, <a href="http://orbitingfrog.com/">Robert Simpson</a>, <a href="http://www.astrobetter.com">AstroBetter</a>, <a href="http://remanzacco.blogspot.co.uk/">Remanzacco</a>, <a href="http://blogs.zooniverse.org">Zooniverse Blogs</a>, <a href="http://www.strudel.org.uk/blog/astro/index.shtml">Stuart Lowe</a>, as well as a a bunch of <em>micro-bloggers</em> on Twitter, and others who I forget to list.</p>
<p>This blog has just two rules:</p>
<ol>
<li>I shall not apologise for the frequency of posts, or lack thereof.</li>
<li>I shall not apologise for breaking the first rule.</li>
</ol>
<p>If you agree to these conditions, then please do subscribe to the <a href="http://barentsen.wordpress.com/feed/">RSS feed</a>.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.barentsen.be&#038;blog=37226180&#038;post=78&#038;subd=barentsen&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.barentsen.be/2012/10/06/welcome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ff713719b643a54899ee88a284d320fd?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">barentsen</media:title>
		</media:content>
	</item>
	</channel>
</rss>
