<?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>Ger Rietman</title>
	<atom:link href="http://rietman.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rietman.wordpress.com</link>
	<description>...is blogging here about his favorite subjects...</description>
	<lastBuildDate>Sun, 27 Dec 2009 13:39:37 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='rietman.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bca2d5751ddb7ca3a1d75b1f0604336b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Ger Rietman</title>
		<link>http://rietman.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rietman.wordpress.com/osd.xml" title="Ger Rietman" />
		<item>
		<title>NemaStudio open source?</title>
		<link>http://rietman.wordpress.com/2009/12/23/nemastudio-open-source/</link>
		<comments>http://rietman.wordpress.com/2009/12/23/nemastudio-open-source/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 16:53:00 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NemaStudio]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/12/23/nemastudio-open-source/</guid>
		<description><![CDATA[


Microsoft .Net Framework
NemaStudio is written on top of the Microsoft .Net Framework. As you may know the .Net Framework includes many libraries with pre-coded solutions including GUI access, data access, database connectivity, algorithms, networking etc.    The .Net Framework comes with all versions of Windows: XP, Vista and Windows 7. 
The class libraries [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=115&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h6><a href="http://rietman.files.wordpress.com/2009/12/eschermc_prentententoonstelling.jpg"><img style="display:inline;border-width:0;margin:0 20px 15px 0;" title="EscherMC_Prentententoonstelling" border="0" alt="EscherMC_Prentententoonstelling" align="left" src="http://rietman.files.wordpress.com/2009/12/eschermc_prentententoonstelling_thumb.jpg?w=260&#038;h=260" width="260" height="260" /></a></h6>
<h6></h6>
<h6></h6>
<h6>Microsoft .Net Framework</h6>
<p>NemaStudio is written on top of the Microsoft .Net Framework. As you may know the .Net Framework includes many libraries with pre-coded solutions including GUI access, data access, database connectivity, algorithms, networking etc.    <br />The .Net Framework comes with all versions of Windows: XP, Vista and Windows 7. </p>
<p>The class libraries in the .Net Framework are used by Windows programmers to produce applications by calling the methods exposed by the Framework. </p>
<p>The code thus produced is called MSIL (Microsoft Intermediate Language). At runtime, the MSIL code is interpreted and executed by the CLR, the Common Language Runtime. </p>
<h6>.Net Programming Languages</h6>
<p>.Net programmers have different programming languages at their disposal to produce .Net applications. Most used languages are C# and VB.Net but there are also compilers available for other languages like Java and even COBOL. </p>
<p>The language compilers share one common element: they all produce MSIL, Microsoft Intermediate Language. MSIL is not machine code but as the name already suggests, it is intermediate code that is translated to machine code and executed at runtime. </p>
<h6>Benefits of the .Net architecture</h6>
<p>The architecture offers may benefits: one code base, many languages, portability and is also very easy to <a href="http://en.wikipedia.org/wiki/Reverse_engineering">reverse engineer</a>. </p>
<p>The latter feature is both a blessing and a curse. A blessing because the source code can be easily reconstructed, and a curse because the source code can be easily reconstructed. </p>
<h6>Code obfuscation</h6>
<p>To prevent undesired reconstruction of his source code the programmer can apply obfuscation techniques like using crippled method names, cryptic strings etc. </p>
<p>Without obfuscation, MSIL code is like Open Source code but then without any protection, not even by public licenses like the <a href="http://en.wikipedia.org/wiki/GNU_General_Public_License">GNU license.</a> It is like leaving your front door wide open and go for holidays. Anybody can take your property and do with it what she wants. </p>
<p>The easiest way to obfuscate your code is by applying a third party obfuscation program. There are several obfuscators for MSIL code on the market. NemaStudio is also protected by a third party obfuscator. </p>
<h6>Reason to obfuscate</h6>
<p>I obfuscated the code of NemaStudio to protect all the long hours of work I&#8217;ve been putting in the development of in the program. Remember, those hours were mostly nightly hours and weekends I rather had spent with my family and grand kids. I would hate to see some rogue abusing my work. </p>
<p>If you believe all this sounds a bit paranoia then <a href="http://cheated.by.safabyte.net/">read the story</a> of what happened to the small software company called <a href="http://www.rebex.net/default.aspx">Rebex</a>. </p>
<h6>But not without risk!</h6>
<p>But obfuscation with third party software is not without any risk as I found. Before the release of NemaStudio I had been successfully testing the obfuscated version on Windows XP and all versions of Vista, but I lacked to do so on Windows 7. I expected &#8211; Microsoft claiming Win7 completely compatible with Vista &#8211; no problems whatsoever. <strong>WRONG!</strong> </p>
<h6>NemaStudio issues with Windows 7</h6>
<p>Right after the release I got many responses from customers complaining NemaStudio did not run correctly on Windows 7. It turned out that the obfuscator unintentionally had corrupted some parts of the code. Luckily the developer of the obfuscator provided great support and the problem was solved in a couple of days. </p>
<h6>Loyal customers</h6>
<p>How many prospective customers I did loose because of this accident I probably will never know. Fortunately I do have many loyal customers and most of them re-installed the corrected version of NemaStudio without complains.</p>
<h6>Lessons learned</h6>
<p>Lesson learned: always extensively test your software on all versions of the OS it is supposed to run on!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=115&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/12/23/nemastudio-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/12/eschermc_prentententoonstelling_thumb.jpg" medium="image">
			<media:title type="html">EscherMC_Prentententoonstelling</media:title>
		</media:content>
	</item>
		<item>
		<title>New website to announce NemaStudio V1.1</title>
		<link>http://rietman.wordpress.com/2009/12/03/new-website-to-announce-nemastudio-v1-1/</link>
		<comments>http://rietman.wordpress.com/2009/12/03/new-website-to-announce-nemastudio-v1-1/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 15:33:29 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>
		<category><![CDATA[NemaStudio]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/12/03/new-website-to-announce-nemastudio-v1-1/</guid>
		<description><![CDATA[ 

At last! After months of hard work and with the much appreciated help of quite a number of beta testers it is now time to announce the first production version of NemaStudio.
To celebrate this I also decided to introduce a complete new design for the Sailsoft web site. The old one was out there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=108&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.sailsoft.nl/index.html"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 15px 10px 0;" title="boxshot_nemastudio" border="0" alt="boxshot_nemastudio" align="left" src="http://rietman.files.wordpress.com/2009/12/boxshot_nemastudio1.png?w=130&#038;h=198" width="130" height="198" /></a> </p>
</p>
<p>At last! After months of hard work and with the much appreciated help of quite a number of beta testers it is now time to announce the first production version of NemaStudio.</p>
<p>To celebrate this I also decided to introduce a complete new design for the <a href="http://www.sailsoft.nl/index.html">Sailsoft web site</a>. The old one was out there on the internet for over 12 years so it really became time!</p>
<p>Not being a web designer it took a lot more time than anticipated. And yes, I know, I should have left the work to a professional, but then I would never have learned what I’ve learned now…</p>
<p>I have also introduced new pricing for NemaTalker and GPSSimul to bring them a bit more in line with the license price of NemaStudio. A single license of NemaStudio is currently priced at EUR 249, and that is what I believe a fair compensation for all the benefits and features it comes with. And remember: competition is priced in the 4-digit price range for a lot less versatility NemaStudio offers!</p>
<p>At the same time I offer a 50% (yes, fifty percent!) discount for registered NemaTalker customers when they purchase a NemaStudio license before February 1, 2010. They earn a EUR 125 value just by ordering fast!</p>
<p>So far the commercial message……Now back to NemaStudio. The following improvements have been implemented since the last beta version.</p>
<ul>
<li>NemaStudio now remembers the objects that were open at exiting and re-opens them again at next program start </li>
<li>Optionally you can give an AIS base station a name tag </li>
<li>GPS, Radar and AIS objects now open with a random Lat/Lon position within a preset range from a base position when created new. In the general settings you can set up this base position and range </li>
</ul>
<p>Plus many minor improvements and reported bug corrections. </p>
<p>Up to the next production version now! Lots of new features on the list!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=108&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/12/03/new-website-to-announce-nemastudio-v1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/12/boxshot_nemastudio1.png" medium="image">
			<media:title type="html">boxshot_nemastudio</media:title>
		</media:content>
	</item>
		<item>
		<title>NemaStudio Beta 5 released</title>
		<link>http://rietman.wordpress.com/2009/10/01/nemastudio-beta-5-released/</link>
		<comments>http://rietman.wordpress.com/2009/10/01/nemastudio-beta-5-released/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 13:52:17 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>
		<category><![CDATA[NemaStudio]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/10/01/nemastudio-beta-5-released/</guid>
		<description><![CDATA[


The origin of beta testing
“The term beta test comes from an IBM hardware product test convention, dating back to punched card tabulating and sorting machines. Hardware first went through an alpha test for preliminary functionality and small scale manufacturing feasibility. Then came a beta test, by people or groups other than the developers, to verify [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=106&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rietman.files.wordpress.com/2009/10/clip_image001.jpg"><img style="display:inline;border-width:0;margin:0 20px 10px 0;" title="IBM548 punch card interpreter (about 1966)" border="0" alt="IBM548 punch card interpreter (about 1966)" align="left" src="http://rietman.files.wordpress.com/2009/10/clip_image001_thumb.jpg?w=216&#038;h=244" width="216" height="244" /></a></p>
<h2></h2>
<h4></h4>
<h5>The origin of beta testing</h5>
<p><em>“The term <b>beta test</b> comes from an IBM hardware product test convention, dating back to punched card tabulating and sorting machines. Hardware first went through an <b>alpha test</b> for preliminary functionality and small scale manufacturing feasibility. Then came a <b>beta test</b>, by people or groups other than the developers, to verify that the hardware correctly performed the functions it was supposed to, and could be manufactured at scales necessary for the market. With the advent of programmable computers and the first shareable software programs, IBM used the same terminology for testing software. As other companies began developing software for their own use, and for distribution to others, the terminology stuck—and now is part of our common vocabulary.”</em>     <br />(Source: <a title="Software release lifecycle according Wikipedia" href="http://en.wikipedia.org/wiki/Software_release_life_cycle" rel="tag" target="_blank">Wikipedia</a>, the image shows an IBM548 punch card interpreter).</p>
<h5>NemaStudio Beta 5</h5>
<p>This week Beta 5 of <strong>NemaStudio</strong> was released. This will be the last beta, the next will be the RTM (release to market) version.</p>
<p>Here is a list of the updates:</p>
<ul>
<li>According to a setting in the general settings the objects (instruments, targets) will either be saved always, never or on request</li>
<li>The control center reflects the settings for either kilometres or miles now</li>
<li>Sentences can now optionally be logged in an external log file</li>
<li>A licensing mechanism has been included</li>
<li>A splash screen has been added giving the option of entering license data</li>
<li>An ‘about’ form has been added, showing licensing terms</li>
<li>Better ‘Single Shot’ functionality in GPS</li>
<li>Position update interval can now be set in GPS (was fixed at 1 second)</li>
<li>Trace panel renamed to “I/O monitor”</li>
<li>Help functionality with help file introduced (help file still to be completed)</li>
<li>Installer shows license terms you have to agree with</li>
<li>Heading instrument includes functionality to copy the course from a selected GPS</li>
<li>Custom Instrument now saves the control center settings</li>
<li>Velocity instrument gives now the possibility to set each data validator</li>
<li>Heading instrument now copies ROT from rudder setting also</li>
<li>Many more minor improvements</li>
<li>Most issues that you reported are solved in this version </li>
</ul>
<p>From a user perspective the most visible change is probably the nag screen reminding to purchase a license. Unregistered use will output a maximum of about 500 sentences. Note that this is considerable more than the unregistered version of <strong>NemaTalker</strong> (100 sentences). Since <strong>NemaStudio</strong> is capable of spitting out data of a much larger number of instruments and targets simultaneously, trial users should get a better impression of the usability of the program when a larger number of sentences is output before the trial limit is reached.</p>
<p>Of course current beta testers will receive free license codes for <strong>NemaStudio</strong>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=106&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/10/01/nemastudio-beta-5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/10/clip_image001_thumb.jpg" medium="image">
			<media:title type="html">IBM548 punch card interpreter (about 1966)</media:title>
		</media:content>
	</item>
		<item>
		<title>NemaStudio Beta 4 released</title>
		<link>http://rietman.wordpress.com/2009/06/12/nemastudio-beta-4-released/</link>
		<comments>http://rietman.wordpress.com/2009/06/12/nemastudio-beta-4-released/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 14:34:14 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>
		<category><![CDATA[NemaStudio]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/06/12/nemastudio-beta-4-released/</guid>
		<description><![CDATA[
This week the Beta 4 version of NemaStudio was released. It includes many improvements compared to Beta 3. The most important is that now all instruments have been implemented, including Weather, Sounder, Velocity, Radar and Heading. Also included is the possibility to configure your own “Custom” instrument. All objects have improved functionality compared to NemaTalker. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=101&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rietman.files.wordpress.com/2009/06/navmonpc001.png"><img style="display:inline;border-width:0;margin:0 15px 10px 0;" title="NavMonPC 001" border="0" alt="NavMonPC 001" align="left" src="http://rietman.files.wordpress.com/2009/06/navmonpc001_thumb.png?w=244&#038;h=142" width="244" height="142" /></a></p>
<p>This week the Beta 4 version of NemaStudio was released. It includes many improvements compared to Beta 3. The most important is that now all instruments have been implemented, including Weather, Sounder, Velocity, Radar and Heading. Also included is the possibility to configure your own “Custom” instrument. All objects have improved functionality compared to NemaTalker. And of course, you can ´mix and match´ the assignment of serial ports&#160; to the different instruments as required.</p>
<h6>Rudder control</h6>
<h6></h6>
<p>A new `RUDDER`control was added to the Control Panel. With this control you can steer the GPS, simulating a rudder change of your vessel. I have plans to include this functionality in the AIS Class A and Class B targets also.</p>
<h6>New test tool</h6>
<p>In the picture above you see a test setting with a large laptop at the left and a mini notebook at the right. They are connected via Bluetooth dongles, <a title="NavMonPC" href="http://rietman.files.wordpress.com/2009/06/navmonpc.png" target="_blank"><img style="display:inline;border-width:0;margin:15px 20px 10px 10px;" title="NavMonPC" border="0" alt="NavMonPC" align="right" src="http://rietman.files.wordpress.com/2009/06/navmonpc_thumb.png?w=244&#038;h=149" width="244" height="149" /></a>set up for serial port communication. (See also my <a href="http://rietman.wordpress.com/2009/05/06/virtual-serial-port-drivers-and-nmea0183/">article</a> on serial port connections). On the large laptop runs NemaStudio, on the mini notebook runs a tool I found recently, called <a title="NavMonPC" href="http://www.sailvalis.com/NavMon/index.html" target="_blank">NavMonPC</a>,&#160; according to the author “A Windows Program for the Display, Capture, and Playback of NMEA data”. I found this a great tool for testing NemaStudio output sentences because NavMonPC dynamically parses many NMEA sentences directly to a nice graphical representation, not only with good looking gauges for Course, Speed and Wind but has also a nice map for showing AIS targets.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=101&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/06/12/nemastudio-beta-4-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/06/navmonpc001_thumb.png" medium="image">
			<media:title type="html">NavMonPC 001</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/06/navmonpc_thumb.png" medium="image">
			<media:title type="html">NavMonPC</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s in a name&#8230;</title>
		<link>http://rietman.wordpress.com/2009/06/12/whats-in-a-name/</link>
		<comments>http://rietman.wordpress.com/2009/06/12/whats-in-a-name/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 13:32:47 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/06/12/whats-in-a-name/</guid>
		<description><![CDATA[ 
Recently I got a question from a NemaTalker user asking why I use the term &#34;Nema&#34; instead of &#34;NMEA&#34; in product naming. I know that many more people have been wondering about this. Here is the explanation. I choose for NEMA because I am not certain whether &#34;NMEA&#34; is a registered brand or not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=96&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rietman.files.wordpress.com/2009/06/nmea_logo.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;margin:0 20px 5px 0;" title="nmea_logo" border="0" alt="nmea_logo" align="left" src="http://rietman.files.wordpress.com/2009/06/nmea_logo_thumb.png?w=240&#038;h=73" width="240" height="73" /></a> </p>
<p>Recently I got a question from a NemaTalker user asking why I use the term &quot;Nema&quot; instead of &quot;NMEA&quot; in product naming. I know that many more people have been wondering about this. Here is the explanation. I choose for NEMA because I am not certain whether &quot;NMEA&quot; is a registered brand or not and that in no way I am waiting for problems with the NMEA organization concerning naming/branding issues. Besides, I noticed that the term &quot;nema&quot; is often used as a pronunciation shortcut for N-pause-M-pause-E-pause-A in the professional marine business. So if you were also wondering why I use “Nema” instead of N.M.E.A, now you know the reason. If you have an opinion about this, please let me know!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=96&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/06/12/whats-in-a-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/06/nmea_logo_thumb.png" medium="image">
			<media:title type="html">nmea_logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Virtual Serial Port drivers and NMEA0183</title>
		<link>http://rietman.wordpress.com/2009/05/06/virtual-serial-port-drivers-and-nmea0183/</link>
		<comments>http://rietman.wordpress.com/2009/05/06/virtual-serial-port-drivers-and-nmea0183/#comments</comments>
		<pubDate>Wed, 06 May 2009 14:29:14 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/?p=89</guid>
		<description><![CDATA[
Many NMEA related PC applications send and/or receive NMEA data over a serial connection according to the NMEA0183 standards.
The official NMEA standard recommends a EIA-422 connection, but that is impractical on a normal PC so in most cases RS232C will be used.
In the image we see a serial cross cable, sometimes also known as null-modem [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=89&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rietman.files.wordpress.com/2009/05/image.png"><img title="image" style="display:inline;border-width:0;margin:0 10px 10px 0;" height="228" alt="image" src="http://rietman.files.wordpress.com/2009/05/image-thumb.png?w=240&#038;h=228" width="240" align="left" border="0" /></a></p>
<p>Many NMEA related PC applications send and/or receive NMEA data over a serial connection according to the NMEA0183 standards.</p>
<p>The official <a href="http://en.wikipedia.org/wiki/NMEA_0183" target="_blank">NMEA standard</a> recommends a <a href="http://en.wikipedia.org/wiki/EIA-422" target="_blank">EIA-422</a> connection, but that is impractical on a normal PC so in most cases <a href="http://en.wikipedia.org/wiki/Rs232c" target="_blank">RS232C</a> will be used.</p>
<p>In the image we see a serial cross cable, sometimes also known as null-modem cable. It crosses the transmit and receive lines and is used to interconnect two serial ports, either on the same computer or between two different computers. Of course, this cable can only be used directly if there are serial com ports available.</p>
<p>Unfortunately serial ports are becoming rare species on today’s PC’s and almost all currently available laptops have no serial port at all anymore.</p>
<p>So how do we connect serial devices to a PC or how do we connect two PC applications that require serial port communication if there are no serial ports available on our system? Fortunately there are several options we can choose from.</p>
<h6>Option 1, USB-to-Serial adapters</h6>
<p>If both, or one of the computers we want to connect lack any serial com port, we can use USB-to-Serial adapters. During the installation of the drivers for such an adapter the setup software will install one or more serial ports on your computer. You can check this with Windows Device Manager. But still you need the cross cable for the connection even if you use a USB-to-Serial adapter on both computers, but now you connect the cable between both adapters.</p>
<h6>Option 2, Bluetooth</h6>
<p>Another option is using Bluetooth. For less than $20 you can purchase two Bluetooth USB sticks and configure serial ports on them. After pairing you have a wireless serial connection between two computers. Make sure that serial ports are supported when you buy the Bluetooth adapters!</p>
<h6>Option 3, Virtual Comports</h6>
<p>For two applications to be able to talk to each other over a serial connection on one and the same computer, this is by far the most convenient solution. A commercial product for example comes from Eltima, <a title="http://www.virtualserialport.com/" href="http://www.virtualserialport.com/">http://www.virtualserialport.com/</a>,&#160; and another one from KernelPro <a href="http://rietman.files.wordpress.com/2009/05/image1.png"><img title="image" style="display:inline;border-width:0;margin:5px 5px 10px 0;" height="204" alt="image" src="http://rietman.files.wordpress.com/2009/05/image-thumb1.png?w=244&#038;h=204" width="244" align="right" border="0" /></a> <a title="http://www.kernelpro.com/advanced-virtual-com-port.html" href="http://www.kernelpro.com/advanced-virtual-com-port.html">http://www.kernelpro.com/advanced-virtual-com-port.html</a>. There are lots of others of course. A great open source virtual comport product I like very much is <a href="http://sourceforge.net/projects/com0com/">com0com</a>. You can create any number of serial port pairs on your system. Each pair you may compare to a cross cable if you like. For example, app A transmits data via&#160; COM10, app B receives this data via COM11. I use <a href="http://sourceforge.net/projects/com0com/">com0com</a> a lot in the configuration as shown in the screenshot while testing NemaStudio against different software like <a href="http://www.sping.com/seaclear/">SeaClear</a>, <a href="http://www.y-tronic.com/">Y-Tronic</a>, Fugawi, <a href="http://rosepointnav.com/CoastalExplorer/default.htm">CoastalExplorer</a> and others. Just recently I discovered another virtual serial port emulator from Eterlogic, <a href="http://www.eterlogic.com/Products.VSPE.html">VSPE</a>. I have not been able to test it out yet, but the specs look very promising, and from the specs it should be able to do a lot more but just virtual serial port emulation.</p>
<h6></h6>
<h6>Other options</h6>
<p>If you need to connect an external serial device like a GPS and your desktop PC has no serial ports you can purchase and install extension cards with one or more serial ports. For a laptop with a PCMCIA slot you could also buy a PCMCIA card with one or more serial ports.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=89&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/05/06/virtual-serial-port-drivers-and-nmea0183/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/05/image-thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/05/image-thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Conversion from AIS to NMEA Radar $RATTM</title>
		<link>http://rietman.wordpress.com/2009/04/24/conversion-from-ais-to-nmea-radar-rattm/</link>
		<comments>http://rietman.wordpress.com/2009/04/24/conversion-from-ais-to-nmea-radar-rattm/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 11:57:38 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/04/24/conversion-from-ais-to-nmea-radar-rattm/</guid>
		<description><![CDATA[ 
Past couple of weeks I&#8217;ve been working hard on a very interesting project commissioned by SeaBird Exploration. They provide seismic services for the international gas and oil industry and run a fleet of 8 vessels equipped with highly sophisticated equipment.     SeaBird asked Sailsoft to develop software for dynamically converting AIS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=85&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rietman.files.wordpress.com/2009/04/hugin-explorer.jpg"><img title="Hugin_Explorer" style="display:inline;border-width:0;margin:0 15px 10px 0;" height="164" alt="Hugin_Explorer" src="http://rietman.files.wordpress.com/2009/04/hugin-explorer-thumb.jpg?w=244&#038;h=164" width="244" align="left" border="0" /></a> </p>
<p>Past couple of weeks I&#8217;ve been working hard on a very interesting project commissioned by <a href="http://www.sbexp.com/" target="_blank">SeaBird Exploration</a>. They provide seismic services for the international gas and oil industry and run a fleet of 8 vessels equipped with highly sophisticated equipment.     <br />SeaBird asked <a href="http://www.sailsoft.nl" target="_blank">Sailsoft</a> to develop software for dynamically converting AIS messages of type 1 to NMEA RADAR $RATTM sentences in order to feed the survey software aboard <a href="http://www.sbexp.com/hugin-explorer.aspx" target="_blank">Hugin Explorer</a>. The vessel is currently in operation in the Mediterranian. </p>
<p>This assignment was a real challenge because a number of parameters in the TTM sentence have no direct counterpart in the AIS message type 1 and have either to be calculated or defaulted, including the calculation of CPA (Closest Point of Approach) in time and distance units. The Target Name parameter in the TTM sentence is filled with the MMSI number from the AIS message 1, since we decided not to interpret message type 5. The program keeps a table for maximum 99 targets, because this is the maximum the NMEA $RATTM sentence can bear. </p>
<p>Different threads are maintained for incoming and outgoing messages. Message handling is complicated by the fact that we have to deal with different speeds for incoming and outgoing messages, 38400 and 4800 bps respectively. </p>
<p>The application is currently in operation aboard the Hugin Explorer, and as it looks so far without problems. Although a very interesting project for me it has delayed the release of NemaStudio for a couple of weeks unfortunately. I hope my beta testers will forgive me. </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=85&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/04/24/conversion-from-ais-to-nmea-radar-rattm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/04/hugin-explorer-thumb.jpg" medium="image">
			<media:title type="html">Hugin_Explorer</media:title>
		</media:content>
	</item>
		<item>
		<title>NemaStudio Beta 3 released</title>
		<link>http://rietman.wordpress.com/2009/03/23/nemastudio-beta-3-released/</link>
		<comments>http://rietman.wordpress.com/2009/03/23/nemastudio-beta-3-released/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 15:21:07 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>
		<category><![CDATA[NemaStudio]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/03/23/nemastudio-beta-3-released/</guid>
		<description><![CDATA[ 
I have just released the 3rd beta version of NemaStudio to selected beta testers.
There is a lot of functionality added in his version, and also some annoying bugs have been removed. Not all, but most.
In the picture at the left you see the new treeview panel in operation. This panel represents all objects (instruments [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=81&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rietman.files.wordpress.com/2009/03/nemastudiotreeviewshot.png"><img title="NemaStudioTreeviewShot" style="display:inline;border-width:0;margin:0 15px 10px 0;" height="244" alt="NemaStudioTreeviewShot" src="http://rietman.files.wordpress.com/2009/03/nemastudiotreeviewshot-thumb.png?w=184&#038;h=244" width="184" align="left" border="0" /></a> </p>
<p>I have just released the 3rd beta version of NemaStudio to selected beta testers.</p>
<p>There is a lot of functionality added in his version, and also some annoying bugs have been removed. Not all, but most.</p>
<p>In the picture at the left you see the new treeview panel in operation. This panel represents all objects (instruments and targets) in the users database.</p>
<p>In addition to opening objects with the large buttons in the instrument selection panel you can also open selected objects via this treeview panel. Here you have two options: you open an object by a double-click or via a context menu that opens when clicking the right mouse button on an object. In this context menu you also have the option to permanently delete an object from the database. I have created a rather clumsy but as I hope instructive enough screen cast on how to use the treeview panel <a title="NMEA objects treeview panel screen cast" href="http://screencast.com/t/BJPF13kpi">here</a>.</p>
<p>What more is new in this beta? Here is a list.</p>
<p>1. An installer to facilitate easy install and setup has been added    <br />2. Delete functions to delete objects from the database have been added     <br />3. New AIS targets and messages have been added: Base Station, SAR Aircraft, Aid to Navigation, messages 4, 9 and 21     <br />4. A treeview panel for easy opening of NMEA objects (see above)     <br />5. Most reported bugs are corrected     <br />6. Position update on all instruments happens now every second, and is not related anymore to the interval setting for transmitting a sentence     <br />7. Minor improvements to the user interface like tooltips etc.</p>
<p>An important change is point 6. Before, a new position was calculated on each transmit interval. So if the xmit interval was set to 2 seconds, the new position was calculated every 2 seconds. Now that we have introduced AIS in NemaStudio we have much longer transmission intervals, in some cases up to 3 minutes. This was resulting in very inaccurate position updates as you can imagine.</p>
<p>So now there is a separate timer included in each instrument/target, that does a position update every second, independent of the transmit interval. The one-second is hard coded, but if required, I can make this a settings variable. Let me know.</p>
<p>I also want to take the opportunity here to thank the guys from <a href="http://www.y-tronic.com">Y-TRONIC</a> for their help in solving a very annoying bug I had in MsgType5. These guys are real AIS experts!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=81&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/03/23/nemastudio-beta-3-released/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/03/nemastudiotreeviewshot-thumb.png" medium="image">
			<media:title type="html">NemaStudioTreeviewShot</media:title>
		</media:content>
	</item>
		<item>
		<title>NemaStudio Beta 2 released</title>
		<link>http://rietman.wordpress.com/2009/02/09/nemastudio-beta-2-released/</link>
		<comments>http://rietman.wordpress.com/2009/02/09/nemastudio-beta-2-released/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 12:00:57 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>
		<category><![CDATA[NemaStudio]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/02/09/nemastudio-beta-2-released/</guid>
		<description><![CDATA[ 
Today I have released Beta 2 of NemaStudio! Beta testers have been informed of where to download this version.   
New in this version:
1. I have extended the Communications settings form with a button marked &#34;Reload Ports&#34;.     When NemaStudio is run for the first time it fills a port [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=74&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rietman.files.wordpress.com/2009/02/nmeastudiobeta21.png"><img title="NmeaStudioBeta2" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;margin:0 10px 5px 0;" height="186" alt="NmeaStudioBeta2" src="http://rietman.files.wordpress.com/2009/02/nmeastudiobeta2-thumb1.png?w=244&#038;h=186" width="244" align="left" border="0" /></a> </p>
<p>Today I have released Beta 2 of NemaStudio! Beta testers have been informed of where to download this version.   </p>
<p><u>New in this version:</u></p>
<p><strong>1.</strong> I have extended the Communications settings form with a button marked &quot;Reload Ports&quot;.     <br />When NemaStudio is run for the first time it fills a port settings table with one row for each serial port found in the system, and saves this table in an xml file for next time retrieval each time you close the program. This is done to save your specific serial port settings so there is no need to set them again each time you run the program. Adding new serial ports or removing ports thereafter was not reflected in the settings table.     <br />Now the new button enables you to reload the table with the new serial ports collection. Consequently all serial port settings are set back to the Windows default, so if you had changed these you have to do that again for the ports involved. In most systems however adding or removing serial ports will happen seldom, so I believe this is a very minor inconvenience. </p>
<p><strong>2.</strong> Most of the reported bugs were corrected. </p>
<p><strong>3.</strong> This beta version includes support for AIS Class A and Class B vessels.    <br />Class A messages include Message 1 and 5.    <br />Class B messages include Message 18, 19, 24 and 14.    <br />Observe that messages 1, 5, 18, 19 and 24 are embedded in !AIVDM/!AIVDO NMEA sentences, where message 14 goes into an !AIBBM sentence. </p>
<p>I am very anxious to the findings of the beta testers, since I have not been able to find an AIS parser that is able to parse and show all message content complete and correctly, leaving me in some state of not being certain.   </p>
<p>SeaClear for example does not show Name, Type and Cargo correctly for Class A vessels as far as I can see, and does not show the vessels name for Class B vessels at all. Yet I believe that apparently I have Name, Type and Cargo right because other parsers show them correctly, but for Class B I really don&#8217;t know. </p>
<p>So if you know of a good parser for the most relevant AIS sentences please let me know! There is no need for chart plotting features, just parsing AIS data into a text window will do fine.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=74&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/02/09/nemastudio-beta-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/02/nmeastudiobeta2-thumb1.png" medium="image">
			<media:title type="html">NmeaStudioBeta2</media:title>
		</media:content>
	</item>
		<item>
		<title>Waypoint Creator can save your day!</title>
		<link>http://rietman.wordpress.com/2009/01/22/waypoint-creator-can-save-your-day/</link>
		<comments>http://rietman.wordpress.com/2009/01/22/waypoint-creator-can-save-your-day/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 10:02:47 +0000</pubDate>
		<dc:creator>Ger Rietman</dc:creator>
				<category><![CDATA[NMEA]]></category>
		<category><![CDATA[NemaStudio]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://rietman.wordpress.com/2009/01/22/waypoint-creator-can-save-your-day/</guid>
		<description><![CDATA[ 
NemaStudio and NemaTalker both implement &#8216;automatic sailing&#8217;. This is achieved by activating either the Auto or Navigate function. Both functions require a waypoint file as input. The waypoint file must contain waypoints formatted according the NMEA WPL sentence, more specific the $GPWPL sentence. 
As you may know it is a pain to create such [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=70&subd=rietman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://rietman.files.wordpress.com/2009/01/waypointcreatorscreenshot.png"><img title="WaypointCreatorScreenShot" style="display:inline;border-width:0;margin:0 10px 10px 0;" height="128" alt="WaypointCreatorScreenShot" src="http://rietman.files.wordpress.com/2009/01/waypointcreatorscreenshot-thumb.png?w=244&#038;h=128" width="244" align="left" border="0" /></a> </p>
<p>NemaStudio and NemaTalker both implement &#8216;automatic sailing&#8217;. This is achieved by activating either the Auto or Navigate function. Both functions require a waypoint file as input. The waypoint file must contain waypoints formatted according the NMEA WPL sentence, more specific the $GPWPL sentence. </p>
<p>As you may know it is a pain to create such a file manually, mainly because of the way the waypoint latitude and longitude must be formatted. Take the following example of a WPL sentence: </p>
<p>$GPWPL,2401.28276,N,07726.39282,W,WP09243069*55 </p>
<p>When we dissect this sentence we get the following result:    </p>
<p>$GPWPL = sentence id     <br />2401.28276,N = latitude (24° 01.28276’ N)     <br />07726.39282,W = longitude (77° 26.39282’ W)     <br />WP09243069 = name of waypoint     <br />55 = <a title="Calculating NMEA checksum" href="http://rietman.wordpress.com/2008/09/25/how-to-calculate-the-nmea-checksum/" target="_blank">checksum</a> </p>
<p>You can imagine that when you have to write out a few hundred waypoints this way it can easily ruin your day. </p>
<p>This is where WaypointCreator comes to help. I wrote this handy utility over the weekend because people were asking me for it for years now, but I always gave it a low priority because I hated the hassle with copyrights of navigational charts one has to deal with in such an app. </p>
<p>But now we have <a title="Google Maps" href="http://maps.google.com" target="_blank">Google Maps</a> and <a title="Virtual Earth" href="http://www.microsoft.com/virtualearth/default.aspx" target="_blank">Microsoft Virtual Earth</a>! Great applications giving us free detailed maps over the internet. WaypointCreator is using Virtual Earth because I found a handy open source control based on VE <a title="VEarth Control" href="http://www.codeplex.com/VEarthControl" target="_blank">here</a> , saving me a lot of time. I wrote a small .Net application encapsulating the control, and voilá: Waypoint Creator was born. </p>
<p>You can download, install and use Waypoint Creator for free from the <a title="Sailsoft" href="http://www.sailsoft.nl" target="_blank">Sailsoft website</a>, here is the <a title="Waypoint Creator download link" href="http://www.sailsoft.nl/downloads/SetupWaypointCreator.msi" target="_blank">direct download link</a>. </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rietman.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rietman.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rietman.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rietman.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rietman.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rietman.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rietman.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rietman.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rietman.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rietman.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rietman.wordpress.com&blog=3916460&post=70&subd=rietman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://rietman.wordpress.com/2009/01/22/waypoint-creator-can-save-your-day/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3197bbeed97ba63d1ffdb5270c3d5ab9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ger</media:title>
		</media:content>

		<media:content url="http://rietman.files.wordpress.com/2009/01/waypointcreatorscreenshot-thumb.png" medium="image">
			<media:title type="html">WaypointCreatorScreenShot</media:title>
		</media:content>
	</item>
	</channel>
</rss>