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

<channel>
	<title>Aptivate &#124; A Blog for ICT4D &#187; Mobiles</title>
	<atom:link href="http://blog.aptivate.org/category/mobiles/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.aptivate.org</link>
	<description>International I.T. Development</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:09:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.6</generator>
		<item>
		<title>Rough Guide to rural data collection with ODK</title>
		<link>http://blog.aptivate.org/2011/12/05/rough-guide-to-rural-data-collection-with-odk/</link>
		<comments>http://blog.aptivate.org/2011/12/05/rough-guide-to-rural-data-collection-with-odk/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 17:58:43 +0000</pubDate>
		<dc:creator>Chris Wilson</dc:creator>
				<category><![CDATA[Appropriate Technology]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Engineer's Log]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[data collection]]></category>

		<guid isPermaLink="false">http://blog.aptivate.org/?p=986</guid>
		<description><![CDATA[This post has three purposes, which I think overlap sufficiently to combine them: A User Guide for the system that we developed for UNICEF, IDS and RuralNet Zambia A Developers&#8217; Guide for anyone wishing to build something similar Notes on lessons learned that may assist future implementers Project goals Automate the data entry part of [...]]]></description>
			<content:encoded><![CDATA[<p>This post has three purposes, which I think overlap sufficiently to combine them:</p>
<ul>
<li>A User Guide for the system that we developed for UNICEF, IDS and RuralNet Zambia</li>
<li>A Developers&#8217; Guide for anyone wishing to build something similar</li>
<li>Notes on lessons learned that may assist future implementers</li>
</ul>
<h3>Project goals</h3>
<p>Automate the data entry part of a long paper-based survey, by replacing the paper forms with electronic devices.</p>
<h3>Hardware and application selection</h3>
<p>The survey has several long and complex questions, and long sets of multiple-choice answers. The data collection needs to be done in dusty rural Zambia, and the devices might need to be used for a full day without power. Collected data should be sent wirelessly to a secure data repository at some time after collection.</p>
<p>Text entry is required for many fields. That means either a real keyboard with keys, or a sufficiently large touch screen to type comfortably on. Use of the device camera, and presentation of reports and graphs on the same device, might be required in future.</p>
<p>Two possible hardware platforms were identified:</p>
<ul>
<li>Tablet laptops with touch screens</li>
<li>Tablet mobile devices (iPad or Android tablet)</li>
</ul>
<p>We selected the latter for this project due to lower cost, lighter weight, better usability and longer battery life.</p>
<p>The available software options that we identified were:</p>
<ul>
<li>EpiSurveyor (Java J2ME, partly closed source, we have used before and fixed bugs)</li>
<li>OpenXdata (Java J2ME, open source, developed and supported by an Aptivate alumnus among others)</li>
<li>Open Data Kit (ODK) (Android, open source, active community)</li>
<li>Bespoke online/offline survey in HTML5</li>
</ul>
<p>Of these, we eliminated EpiSurveyor and OpenXdata due to lack of compatibility with the hardware platform(s) we had chosen.</p>
<p>We chose ODK over a bespoke system due to limited time available for development, and ability to easily take photos and record GPS coordinates using the device&#8217;s hardware.</p>
<p>Of the available Android tablet devices, we chose the Samsung Galaxy Tab for the pilot project, due to its high quality construction. For future projects we would probably use a lower cost device; see the lessons learned for details.</p>
<h3>Form creation</h3>
<p>Since the survey is quite long (about 230 questions) we wanted an easy way to enter the questions. The ODK application requires the form to be in XForms format. We identified the following tools for creating XForms:</p>
<ul>
<li><a href="http://opendatakit.org/use/build">ODK Build</a></li>
<li><a href="http://code.google.com/p/purcforms/">PurcForms</a></li>
<li><a href="https://sites.google.com/site/kobodesk/kobo-form-builder">Kobo Form Builder</a></li>
<li><a href="http://opendatakit.org/use/xls2xform">XLS2XForm</a> (actually the <a href="https://github.com/jbeorse/pyxform">pyxform</a> fork)</li>
</ul>
<p>We decided to use XLS2XForm, which enabled us to enter the large number of questions easily in Excel. The others all have graphical builders, which have advantages and disadvantages for less technical users:</p>
<ul>
<li>More visually appealing</li>
<li>All available options presented visually (types of controls, groups, etc.)</li>
<li>Less likely to make a mistake and produce an invalid form</li>
<li>Cumbersome user interface slows down data entry</li>
</ul>
<p>Unfortunately, none of these designers were able to import an existing form in XForms format, which means that the modifiable &#8220;source code&#8221; of the form must be maintained in a &#8220;proprietary&#8221; format in each case, and it&#8217;s difficult to switch between tools.</p>
<p>You can download the conversion tools, and the Excel spreadsheet with the completed questionnaire as we delivered it to RuralNet, <a href="https://github.com/aptivate/idspartimob">here</a>. RuralNet staff, please use the latest version of the spreadsheet that you can find locally. To use the tools, you will need to download and install <a href="http://www.python.org/getit/">Python 2.7</a> and <a href="http://www.oracle.com/technetwork/java/javase/downloads/jre-7u1-download-513652.html">Java</a> (JRE). Then download the tools <a title="ZIP download" href="https://github.com/aptivate/idspartimob/zipball/master">as a ZIP file</a> and extract it somewhere. I recommend that you keep the master copy of the spreadsheet in <a href="https://www.dropbox.com/home">Dropbox</a> to ensure that it&#8217;s backed up, and it&#8217;s always clear what the latest version is.</p>
<p>For help in building surveys using XLS2XForm, please see the <a href="http://opendatakit.org/help/form-design/xls2xform/">documentation</a>. In addition to the question types listed there, we have used the following shortcuts, which also work in this customised version of XLS2XForm:</p>
<ul>
<li><code>text</code> is short for <code>add text prompt</code> (a text field, such as a person&#8217;s name)</li>
<li><code>note</code> is short for <code>add note prompt</code> (a read-only field, providing additional information for the user)</li>
<li><code>time</code> is a time field without a date (for example, survey start and end times)</li>
</ul>
<p>To compile the spreadsheet into an XForms form, run the <code>build_and_validate.py</code> script by double-clicking on it. If it works, it will show the message &#8220;Success!&#8221;, otherwise it will show an error message, usually caused by a mistake in the Excel spreadsheet. If it works, it will create (replace) the file called <code>zambia-ranq-round3.xml</code> in the same directory. If your spreadsheet has a different name, you can create a shortcut to call <code>build_and_validate_custom.py</code> with the name of the spreadsheet on the command line.</p>
<h3>Software components</h3>
<p><a href="http://opendatakit.org/use/aggregate/">ODK Aggregate</a> is the software that powers the Internet server. It is a repository for blank forms (designs) and completed forms (data). Our server is located at <a href="http://partimob.appspot.com/">http://partimob.appspot.com/</a>. This server is currently paid for by us, and will need to transfer to RuralNet at some point.</p>
<p><a href="http://opendatakit.org/use/collect/">ODK Collect</a> is the application runs on the device, and users interact with it to complete the survey. It&#8217;s essentially a user interface for XForms. It can download blank forms (designs) from an ODK Aggregate server, and upload completed forms (data) to the Aggregate server as well.</p>
<p><a href="http://code.google.com/p/opendatakit/wiki/ODKBriefcase">ODK Briefcase</a> is the software that downloads completed forms (data) from the Aggregate server and convert them into CSV (spreadsheet) format, which can be loaded into</p>
<h3>Customised ODK Collect</h3>
<p>We are using a custom version of ODK Collect. You can download the source code for it <a href="http://code.google.com/r/chris-collect/">here</a>, or the compiled application <a href="https://github.com/aptivate/idspartimob/blob/master/ODK-Collect-trunk-111119-custom.apk">here</a>. You can also find it in the ZIP file download. If you prefer, you can use the <a href="http://opendatakit.org/use/collect/">latest official version of ODK Collect</a>. The two are compatible, but our version adds the following useful features:</p>
<ul>
<li>Use supplied login and password by default to save a round trip and a prompt.</li>
<li>Add keyboard navigation, useful for form filling on android-x86 because the mouse interface is pretty clunky.</li>
<li>Restore ability to modify completed and submitted forms on the device, which was removed from the official version in 1.1.7.</li>
<li>Improved error messages and progress indication during form uploads.</li>
<li>Allow setting the instance name on the first page of the survey.</li>
<li>Allow saving incomplete surveys on required questions (in case a survey is interrupted; almost all of our questions are required).</li>
</ul>
<p>There are several ways to install ODK Collect on a device:</p>
<ul>
<li>Download it from the Android Market (official version only, not our customised version)</li>
<li>Copy the APK file onto a microSD card, insert the card into the device, and use the <em>My Files</em> application find and open it from the SD card.</li>
<li>Attach the USB cable from the device to a computer, enable mass storage mode on the device, and on the computer, drag and drop the APK file onto the device&#8217;s internal memory, then use the <em>My Files</em> application to find and open it.</li>
<li>Attach the USB cable from the device to a computer, and use <a href="http://developer.android.com/guide/developing/tools/adb.html">ADB</a>&#8216;s <code>install</code> command to install the APK file.</li>
</ul>
<p>It&#8217;s useful to put the application onto the device&#8217;s desktop. To do that, open the Applications list, find ODK Collect, and press and hold it with your finger for a few seconds. The background will change to the desktop; release your finger to drop the application there.</p>
<p>It&#8217;s also useful to remove all the other junk from the desktop. For each icon and widget on the desktop, press and hold it with your finger for a few seconds, until the trashcan icon appears, then drag your finger to the trashcan and release it there.</p>
<h3><span>Form management on the device</span></h3>
<p><span style="font-weight: normal;">There are several ways to put blank forms (designs) onto the tablets:</span></p>
<ul>
<li>Download them from the ODK Aggregate server using ODK Collect.</li>
<li>Copy them onto a microSD card, insert the card into the device, and use the <em>My Files</em> application to copy them from the SD card to the /sdcard/odk/forms directory.</li>
<li>Attach the USB cable from the device to a computer, enable mass storage mode on the device, and on the computer, drag and drop the form into the /sdcard/odk/forms directory.</li>
<li>Attach the USB cable from the device to a computer, and use <a href="http://developer.android.com/guide/developing/tools/adb.html">ADB</a> or <a href="http://developer.android.com/guide/developing/debugging/ddms.html">DDMS</a> to push the file onto the device, into the /sdcard/odk/forms directory.</li>
</ul>
<p>Of these methods, ADB or DDMS is recommended for rapid development, and using the Aggregate server is recommended for production use, since the form must be installed on the Aggregate server for it to be able to accept submissions.</p>
<p>Similarly there are several ways to copy completed forms (data) off the device:</p>
<ul>
<li>Upload them to the ODK Aggregate server using ODK Collect.</li>
<li>Use the <em>My Files</em> application to copy them from /sdcard/odk/instances to a microSD card, then remove the card and connect it to the computer, and drop the files into the ODK Briefcase data directory.</li>
<li>Attach the USB cable from the device to a computer, enable mass storage mode on the device, and on the computer, drag and drop the files from the /sdcard/odk/instances directory to the ODK Briefcase data directory.</li>
<li>Attach the USB cable from the device to a computer, and use <a href="http://developer.android.com/guide/developing/tools/adb.html">ADB</a> or <a href="http://developer.android.com/guide/developing/debugging/ddms.html">DDMS</a> to pull the file from the device&#8217;s /sdcard/odk/instances directory to the ODK Briefcase data directory.</li>
</ul>
<p>Of these methods, using ODK Aggregate is recommended for development and production use.</p>
<p>Since the Aggregate server is on the Internet, this method requires that the device have Internet access. So it either needs a valid SIM card installed with credit and a data bundle, or a WiFi network connected. We had many problems with using SIM cards for data, so WiFi is preferred if possible.</p>
<p>The directories mentioned above will not exist until ODK Collect is installed on the device and run for the first time. Forms downloaded from the Aggregate server will also be placed in the /sdcard/odk/forms directory. Forms completed on the device will be placed in the /sdcard/odk/instances directory.</p>
<h3>Configuring ODK Collect</h3>
<p>Collect needs to know the details of the ODK Aggregate server to log into it, download blank forms and upload completed forms.</p>
<p>Open the ODK Collect application, press the Settings button and click on <em>Change Settings</em>. Click on <em>URL</em> and enter <em>https://partimob.appspot.com</em>. Similarly, complete the Username and Password using the details that you&#8217;ve been given by the Aggregate server operator, or the account that you&#8217;ve created on the Aggregate server. This account should only have <em>Data Collector</em> permissions, no more. Press the Back key to get back to the main menu of ODK Collect.</p>
<h3>Downloading forms using ODK Collect</h3>
<p>Open ODK Collect on the device, and click on the <em>Get Blank Form</em> button. Collect will try to log into the Aggregate server using the details that you&#8217;ve provided, and get a list of forms on the server that have the <em>Downloadable</em> box ticked. This is on by default for newly uploaded forms.</p>
<p>Tick the box next to all the forms that you want to download, and click on the <em>Get Selected</em> button.</p>
<h3>Filling forms on the device</h3>
<p>Open ODK Collect on the device, and click on the <em>Fill Blank Form</em> button. All the forms in the device&#8217;s <em>/sdcard/odk/forms</em> directory should be listed. Choose the form that you want to complete.</p>
<p>You will see an introductory screen showing how to move between questions by swiping your finger across the screen, from right to left or left to right. This screen has a text box at the bottom, which you can use to name the form that you&#8217;re completing. Naming forms is useful if your data collection is interrupted and you need to resume it later. It&#8217;s much easier to identify the form using its name, rather than opening it and flicking through to find some identifying information. You might name the form based on the household code that you&#8217;re surveying.</p>
<p>Depending on your answers to some questions, others may be hidden, or their text might change.</p>
<p>At the end of the form there is another chance to <em>Name this form</em>, and a tickbox to <em>Mark form as finalized</em>. Before you can upload the form to the Aggregate server, this box must be ticked, and you must press the <em>Save Form and Exit</em> button. Otherwise Collect will consider that the form is incomplete.</p>
<h3>Sending completed forms to Aggregate</h3>
<p>Open ODK Collect on the device, and click on the <em>Send Finalized Form</em> button on the main menu. Tick the box next to all the forms that you want to upload to Aggregate, and click on <em>Send Selected</em>. After the upload is complete, you should see the <em>Upload Results</em> message. Every form should have &#8220;Success&#8221; next to it, otherwise it was not sent successfully.</p>
<h3>Downloading forms using Briefcase</h3>
<p>We are using a customised version of ODK Briefcase with the following changes:</p>
<ul>
<li>Fix the export of repeated groups, which before only worked for the first row (<a href="http://code.google.com/p/opendatakit/issues/detail?id=461">issue 461</a>).</li>
<li>Shorten exported column names, to allow the CSV file to be imported into Access.</li>
<li>Allow the server name, username and password to be provided on the command line (or via a shortcut).</li>
</ul>
<p>You can find the source code <a href="http://code.google.com/r/chris-briefcase/source/checkout">here</a> and the pre-compiled version <a href="https://github.com/aptivate/idspartimob/blob/master/briefcase-1.0-jar-with-dependencies.jar?raw=true">here</a>, as an executable JAR file. You can also find it in the ZIP file download. If you make changes to the source and want to build the executable JAR again, install Maven and use the <code>mvn package</code> command.</p>
<p>To download the completed forms, open Briefcase by double-clicking on the <code>briefcase-1.0-jar-with-dependencies.jar</code> file. On the Transfer tab, click on the Connect button. For the URL, enter <code>https://partimob.appspot.com</code>, and for the user name and password, give the details of an ODK Aggregate account with <em>Data Viewer</em> permissions.</p>
<p>Then you should see a list of forms appear under the heading <em>Forms to Transfer</em>. Tick the box next to the one that your users have been completing, and then click on the Transfer button. If you do this after all the completed forms (data) have been submitted to the ODK Aggregate server, you will not need to do it again for that form template (design).</p>
<p>Now switch to the <em>Transform</em> tab and see if the form appears in the <em>Form</em> list. If it doesn&#8217;t, then exit and restart the Briefcase application (<a href="http://code.google.com/p/opendatakit/issues/detail?id=464">issue 464</a>).</p>
<p>For <em>Output Type</em>, choose <em>.csv and media files</em>. For <em>Output Directory</em>, choose the directory where you&#8217;d like to save the CSV files. Note that any previous files exported to that directory from the same form will be overwritten without warning, even if they have been modified (cleaned). Click on the <em>Output</em> button to write the CSV files.</p>
<h3><strong>Cleaning data in Excel</strong></h3>
<p>You can find the Excel spreadsheet that we use for data storage and cleaning here. Note that Excel is a long way from the best way to store and manipulate data like this. Microsoft Access would be far more appropriate. Yet again I wish there was a sufficiently powerful open source alternative.</p>
<p>Because the spreadsheet contains cleaned data, which is &#8220;better&#8221; than the raw data which is included in the CSV export, we don&#8217;t want to overwrite existing rows. For the main section of the questionnaire (the so-called Single Responses) you can include only the new data like this:</p>
<ul>
<li>Open the main spreadsheet and switch to the <em>Single Responses</em> tab</li>
<li>Highlight all rows from 3 down to the bottom, and <em>Sort</em> them by the <em>SubmissionDate</em> column.</li>
<li>Note the last submission date on this spreadsheet.</li>
<li>Open the newly exported CSV file for the single responses (something like <em>RANQ-2011-Round-4-v5.csv</em>).</li>
<li>Sort this file by the <em>SubmissionDate</em> column as well.</li>
<li>Highlight and copy all the rows whose submission date is later (more recent) than the last one in the main spreadsheet.</li>
<li>Paste them at the bottom of the Single Responses tab of the main spreadsheet, below the other data.</li>
</ul>
<p>For the other tables, this process needs to be done completely manually at present.</p>
<p>You can then check and clean the data by viewing and modifying it in Excel. Note that each sheet has one or two columns at the end, which are filled by formulae that look up values from the Single Responses sheet, such as the <em>Household Code</em>.</p>
<h3>Using the Android x86 Emulator</h3>
<p>To be written.</p>
<h3>Lessons learned</h3>
<p>To be written.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aptivate.org/2011/12/05/rough-guide-to-rural-data-collection-with-odk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can a $35 tablet computer change the world?</title>
		<link>http://blog.aptivate.org/2011/10/21/how-can-a-35-tablet-computer-change-the-world/</link>
		<comments>http://blog.aptivate.org/2011/10/21/how-can-a-35-tablet-computer-change-the-world/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 22:38:51 +0000</pubDate>
		<dc:creator>Chris Wilson</dc:creator>
				<category><![CDATA[Africa]]></category>
		<category><![CDATA[Appropriate Technology]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.aptivate.org/?p=966</guid>
		<description><![CDATA[Osama Manzar poses some very interesting questions about India&#8217;s new $35 tablet computer &#8220;for the poor&#8221;. However he doesn&#8217;t attempt to answer these questions, leaving the reader in no doubt that he thinks the answer is No! in all cases. I must admit to being skeptical about any such innovation, and I&#8217;ve been listening to [...]]]></description>
			<content:encoded><![CDATA[<p>Osama Manzar poses some <a href="http://www.livemint.com/Articles/2011/10/17000845/Aakash-may-not-help-bridge-the.html">very interesting questions</a> about India&#8217;s new $35 tablet computer &#8220;for the poor&#8221;. However he doesn&#8217;t attempt to answer these questions, leaving the reader in no doubt that he thinks the answer is <strong>No!</strong> in all cases.</p>
<p>I must admit to being skeptical about any such innovation, and I&#8217;ve been listening to <a href="http://tech.groups.yahoo.com/group/bytesforall_readers/message/14910">both</a> <a href="http://tech.groups.yahoo.com/group/bytesforall_readers/message/14921">sides</a> of the <a href="http://tech.groups.yahoo.com/group/bytesforall_readers/message/14929">debate</a> on the <a href="http://tech.groups.yahoo.com/group/bytesforall_readers/">BytesForAll</a> mailing list. Despite my skepticism, Osama&#8217;s questions have some answers, and I&#8217;d like to present them for comment.</p>
<blockquote>
<ul>
<li>India has one of the lowest ratio of teachers—just 456 teachers per million people.</li>
<li>Seventy-two percent of our primary schools have only three teachers or less.</li>
<li>25% of teachers were absent from school, and only about half were teaching, during unannounced visits to a nationally representative sample of government primary schools.</li>
</ul>
<p>How is the $35 tablet going to solve any of these problems?
</p></blockquote>
<p>Of course technology on its own is not going to solve these problems. It is just a valuable weapon in the armoury of those who would launch an all-out war on poverty (and other abstract nouns).</p>
<p>Kentaro Toyama, an ex-Microsoft guru turned ICT4D researcher, <a href="https://plus.google.com/113254845719530983612/posts/gtju48L8bYq">says</a> that &#8220;technology is [just] an amplifier of human intent and capacity.&#8221; And when faced with a task that&#8217;s possible but simply too large, an amplifier is exactly what we need. It doesn&#8217;t need to be high tech. Tanzania did just fine with radio, one of the oldest, simplest and most inclusive ICTs:</p>
<blockquote><p>
About ten years after independence, Tanzania decided to move towards universal primary education, almost doubling the number of children in school. The government estimated that it needed an extra 40,000 teachers. As the existing training colleges were producing only 5,000 new teachers a year, it was decided to recruit secondary school leavers and train them on an apprenticeship model, partly on the job and partly through distance education. Over a period of three years, they were posted in schools where they had a reduced teaching load. They then followed correspondence courses backed by radio programmes; they were supervised and tested on their classroom practices, and passed their examinations. Two evaluations found that they ended up reasonably competent in the classroom (Chale, 1993; quoted by Perranton, 2000; retrieved from <a href="http://archive.unu.edu/africa/files/UNU_RevitalizingHigherEducation.pdf">UNU</a>)
</p></blockquote>
<p>If India were to launch a massive teacher education programme, they would find it cheaper to implement that programme using technology. For example, they might distribute radios, TVs, portable audio players or even (heaven forbid!) computers to trainee teachers. It might take longer for those teachers to reach high standards, and more might drop out, without the personal connection and feedback of face-to-face training. Even so, one could train more teachers for more time and achieve a similar number of fully trained teachers at a lower cost.</p>
<blockquote><p>
In the business sector, more than 70% micro, small and medium enterprises (MSMEs) are not connected to information society to leverage opportunities of business and efficiency. How will the $35 tablet help in the financial inclusion of MSMEs, which are largely situated in small towns and remote areas?
</p></blockquote>
<p>It&#8217;s unfortunate that the tablet doesn&#8217;t include a long-range wireless network (such as GPRS), which must surely cover most of India as it does Africa. Even without an Internet connection, it can still provide useful services such as record keeping, business accounting and stock tracking to small enterprises. The tablet is based on Android, but the marketplace has been disabled, and this is a serious limitation. I think it&#8217;s likely to be overcome soon. When that happens, India&#8217;s many skilled software developers will be free to create localised applications for a potentially huge local market.</p>
<blockquote><p>Most of India’s 3.3 million non-governmental organisations (NGOs) are also located in remote areas—70% of them lack any sort of information and communication technology (ICT) infrastructure or connectivity, and have no websites.</p>
<p>How can the $35 tablet help these NGOs’ global outreach efforts or aid the millions of people working with them in rural areas?</p></blockquote>
<p>You probably know the answer to this question as well as I do: <em>The same way as computer and phones can, only more so.</em> Helping people to communicate and to do their work is exactly what ICTs do. All of them. With the possible exception of Angry Birds. A computer can help us to make leaflets, track visits to patients and beneficiaries, diagnose illnesses, improve farming techniques, or learn about anything we wish to know in the whole world of knowledge. </p>
<blockquote><p>Can it bring transparency in governance at this level?</p></blockquote>
<p>Good question. Not by itself, sure. Transparency comes from open data. The people might get together to publish what the government would rather hide, or pressure the government to release the data, but a $35 tablet won&#8217;t help them much.</p>
<p>When they do release that data, however, the usual problem is how to make use of it. Government data tends to be massive and unwieldy, and answering difficult questions takes much time and significant skill even with the best of data. I think that free, open, widecast media provide the biggest opportunity to make real use of transparency, and our use of the Internet as an enabler of democracy is the best example of that.  Potentially, a simple but powerful Internet device could help bring people together to investigate and answer those difficult questions. But by the sound of it, this tablet is not quite there yet. Hopefully it will be soon.</p>
<blockquote><p>
Since a large population of our country communicate verbally, and cannot read and write with ease, their preferred medium of content consumption and content production is audio-visual&#8230; But to make use of good multimedia content, you need powerful machines, not cheap and underperforming ones.
</p></blockquote>
<p>I disagree with that. I grew up with &#8220;multimedia content&#8221; on BBC Micros: simple games, moving blocks around a screen, simple word processors and spreadsheets and databases and graphics. A picture is worth a thousand words, and a simple, clear diagram can be worth far more than a complex, confusing one. Advanced graphics are no substitute for a visual designer&#8217;s ingenuity and skill. Wikipedia is &#8220;multimedia content&#8221; that is perfectly suited to a $35 tablet.</p>
<blockquote><p>
If the $35 tablet can do anything good to education in India, the only way is by handing them to each and every teacher and school management staff to monitor the workings and functioning of the school and its teachers&#8230;
</p></blockquote>
<p>Monitoring is an interesting application, and a double-edged sword. <a href="http://www.ids.ac.uk/go/idsperson/professor-robert-chambers">Robert Chambers</a>, the inventor of <a href="http://en.wikipedia.org/wiki/Participatory_rural_appraisal">participatory rural appraisal</a>, told us a story at the recent <a href="http://ict4d-finale.eventbrite.com/">ICT4D Finale</a> event in Cambridge of a hospital in India where the nurses were given mobile phones &#8220;to collect data at the source.&#8221; But the director of the hospital used it to monitor what they were doing, effectively spying on them. The nurses went on strike and eventually the director was fired. I think that for monitoring to have a positive benefit, it must be done with consent and a shared vision to use the data to improve performance, not to criticise and control.</p>
<blockquote><p>rather than assuming that each student will buy Aakash and India will become digitally literate overnight.</p></blockquote>
<p>I have to agree with that sentiment, although I&#8217;m not sure who raised it. Kapil Sibal, who takes the credit for inventing the $35 tablet, merely <a href="http://www.telegraphindia.com/1111016/jsp/7days/story_14628545.jsp">said</a>:</p>
<blockquote><p>This low cost device is part of our national mission on education through information and communication technology (NME-ICT) which will connect over 1,000 institutions across the country, enabling tonnes of web-based course content for free.</p></blockquote>
<p>Now that doesn&#8217;t sound so far-fetched, does it?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aptivate.org/2011/10/21/how-can-a-35-tablet-computer-change-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ICTs for Rural Development Seminar</title>
		<link>http://blog.aptivate.org/2010/10/27/icts-for-rural-development-seminar/</link>
		<comments>http://blog.aptivate.org/2010/10/27/icts-for-rural-development-seminar/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 13:29:44 +0000</pubDate>
		<dc:creator>Chris Wilson</dc:creator>
				<category><![CDATA[Appropriate Technology]]></category>
		<category><![CDATA[Design and Usability]]></category>
		<category><![CDATA[Government]]></category>
		<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[PDAs]]></category>
		<category><![CDATA[data collection]]></category>
		<category><![CDATA[participation]]></category>
		<category><![CDATA[agriculture]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[rural]]></category>

		<guid isPermaLink="false">http://blog.aptivate.org/?p=725</guid>
		<description><![CDATA[Just attended a very interesting seminar on The Rural Information Economy and ICTs, hosted by the UN Food and Agriculture Organisation (FAO), a major actor in this area, at their headquarters in Rome. This is an area in which Aptivate is also very interested, and one in which I&#8217;ve done some research and been following [...]]]></description>
			<content:encoded><![CDATA[<p>Just attended a very interesting seminar on <a href="http://www.e-agriculture.org/660.html">The Rural Information Economy and ICTs</a>, hosted by the <a href="http://www.fao.org">UN Food and Agriculture Organisation</a> (FAO), a major actor in this area, at their headquarters in Rome.</p>
<p>This is an area in which Aptivate is also very interested, and one in which I&#8217;ve done some research and been following developments. I still managed to learn quite a bit from three very interesting presentations:</p>
<h3><a href="http://www.slideshare.net/eagriculture/unctad-information-economy-report-2010">Information Economy Report 2010 (UNCTAD)</a></h3>
<p>The informational dimension of poverty, i.e. where information can help to alleviate or reduce poverty:</p>
<ul>
<li>Market price information</li>
<li>Income-earning opportunities (e.g. jobs)</li>
<li>Weather information and warnings</li>
<li>Correct use of pesticides and fertilisers</li>
<li>Health information and education</li>
<li>Disaster risk reduction</li>
</ul>
<p>Communication up and down the supply chain, and with peers and advisors, also helps.</p>
<p>There is an increasing trend to direct involvement of the beneficiaries in the production of ICTs:</p>
<ul>
<li>As ICT workers</li>
<li>Manufacturing of ICTs (as an alternative occupation to subsistence farming)</li>
<li>Providing IT and ICT-enabled services (answering questions, finding information, running telecentres)</li>
</ul>
<p>Mobile phone penetration has exceeded all other ICTs in growth in developing countries. On average in the least developed countries, it has increased from 2% to 26% of the population (1000% growth) from 2000 to 2009. Possibly the fastest-spreading technology ever in the history of the world.</p>
<p>Growth is uneven. There are still some LDCs where less than 10% of the population have a mobile phone. In Ethiopia for example, only 5% have a phone. This was largely attributed to lack of liberalisation of telecomms markets.</p>
<p>Half of rural population in LDCs have no access to a mobile phone signal, which will limit the further growth of mobile usage. Many Universal Service Funds are sitting unused. In some cases this is because they are mandated only to be used on the fixed line network, which is nearly obsolete.</p>
<p>Mobile micro-insurance has become a big topic. For example:</p>
<ul>
<li><a href="http://kilimosalama.wordpress.com/about/">Kilimo Salama</a> in Kenya</li>
<li>Burkina Faso, Mali (index-based crop insurance)</li>
<li>Alliance Afrique</li>
</ul>
<p>Kilimo Salama recently <a href="http://kilimosalama.wordpress.com/2010/10/07/first-m-pesa-payouts/">made their first payouts</a> to farmers because weather conditions exceeded their thresholds. The payouts are automatic and don&#8217;t have to be claimed by the farmers. The largest was about $30.</p>
<p>Even those who don&#8217;t have access to ICTs themselves can benefit from more transparent markets when enough participants use ICTs.</p>
<p><a href="http://www.unctad.org/Templates/webflyer.asp?docid=13912&#038;intItemID=2068&#038;lang=1">Download the full report</a> (PDF, 171 Pages, 1240Kb).</p>
<h3><a href="http://www.slideshare.net/eagriculture/ifad-michael-hampruraldevelopmentandict27102010">Enabling role of ICTs to transform smallholder farmers to entrepreneurs (IFAD)</a></h3>
<p>IFAD offers grants and loans to governments for argicultural development programmes. They are starting to offer grants (but not loans) to the private sector as well.</p>
<p>Grameen and BRAC had limited success with mobile banking (so far), because most of their customers are groups, not individuals, and mobile phones tend to be personal devices.</p>
<p>IFAD and WFP are running a joint project called the <a href="http://www.ifad.org/ruralfinance/wrmf/">Weather Risk Management Facility (WRMF)</a>, a micro-insurance project. Half of the insurance premiums are paid by the farmers, and half by the sellers of inputs (seeds, fertilizer, pesticides) as they benefit from farmers being willing to buy more of their products due to reduced risk of crop failure.</p>
<h3><a href="http://www.slideshare.net/eagriculture/fao-ic-tinagricultureoct20103">ICTs enhancing plant production at the field level (FAO)</a></h3>
<p><a href="http://www.fao.org/ag/locusts/en/activ/DLIS/eLocust/index.html">e-Locust2</a> uses vehicles with GPS, laptops and HF radio modems to send real-time information on locust swarms to governments, which can help to warn and prepare neighbouring villages and allow the targeted use of pesticides to control the pests. Time is critical to achieve this.</p>
<p>Digital Pens are being used to capture information entered on forms. The pen recognises what is being written, and where on the form, and captures the data for later upload. This makes it possible to have electronic filing with minimal training, minimal unreliable ICTs, an inherent fallback to paper-based methods, and hard copies of the forms that can be given to farmers or stored in local offices.</p>
<p>There are problems getting pest monitoring officials to enter high quality data when there is no incentive (reward) for accurate data, e.g. in one-way monitoring systems. If governments used this data to target their interventions, villagers would have a much more obvious incentive to ensure that the data was entered accurately and on time.</p>
<h3>Thanks</h3>
<p>Thanks to FAO for hosting this excellent seminar, and to the World Food Programme for allowing me time off to attend it.</p>
<p>Several of us expressed an interest in continuing the discussion online, we have been heard, and Michael Riggs, lead facilitator of the e-Agriculture Community, is working on enabling this to happen. There will also be a follow-on discussion at the <a href="http://www.ictd2010.org/">ICTD 2010 Conference</a> in London.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aptivate.org/2010/10/27/icts-for-rural-development-seminar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mobiles for Scientific Research</title>
		<link>http://blog.aptivate.org/2010/07/09/mobiles-for-scientific-research/</link>
		<comments>http://blog.aptivate.org/2010/07/09/mobiles-for-scientific-research/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 09:43:54 +0000</pubDate>
		<dc:creator>Chris Wilson</dc:creator>
				<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Offline]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PDAs]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[data collection]]></category>
		<category><![CDATA[africa]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[ictp]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://blog.aptivate.org/?p=591</guid>
		<description><![CDATA[We know mobiles are very useful in areas where desktop computer and communications infrastructure is not easily available or affordable. And we&#8217;re very interested in mobile applications and scientific research in exactly these regions. So I was very interested to see a new training workshop being run by the Science Dissemination Unit (SDU) of the [...]]]></description>
			<content:encoded><![CDATA[<p>We know mobiles are very useful in areas where desktop computer and communications infrastructure is not easily available or affordable. And we&#8217;re very interested in mobile applications and scientific research in exactly these regions.</p>
<p>So I was very interested to see a new training workshop being run by the <a href="http://sdu.ictp.it">Science Dissemination Unit (SDU)</a> of the <a href="http://ictp.it">Abdus Salam International Centre for Theoretical Physics (ICTP)</a>. The workshop is on <a href="http://cdsagenda5.ictp.trieste.it/full_display.php?ida=a09152">Mobile Science: Sensing, Computing and Dissemination</a> and the deadline for applications is tomorrow, July 10th.</p>
<p>Quoting from the announcement: </p>
<blockquote><p>
The Science Dissemination Unit (SDU) of the Abdus Salam International Centre for Theoretical Physics (ICTP), with the assistance of the University of Washington (USA) and of the UCLA Centerfor Embedded Networked Sensing (USA) will hold a Workshop on &#8220;Mobile Science: Sensing, Computing and Dissemination&#8221; in Trieste (Italy) from the 2 to the 5 of November 2010.</p>
<p>Mobile applications offer tremendous benefits to academic research and<br />
education, and to society as a whole throughout the world. This is an<br />
opportunity that deserves attention and promotion, especially in less<br />
developed areas where mobile phones are the first telecommunications<br />
technology in history to have more users than in the developed world.
</p></blockquote>
<p>The specific things that interested me were:</p>
<dl>
<dt>The Mobile Science workshop aims to engage the scientific community in developing countries in the design, development, and deployment of the newest mobile scientific applications;</dt>
<dd>i.e. advocating appropriate mobile applications in scientific<br />
research/academia;</dd>
<dt>Participants will learn how to apply mobile technology tools to retrieve scientific data</dt>
<dd>I.e. designing mobile apps for science data collection;</dd>
<dt>how to apply appropriate web-based analysis to assimilate mobile data into scientific studies</dt>
<dd>I.e. web-based statistical analysis and presentation, like a free online version of SPSS? As far as I know this doesn&#8217;t exist yet. The closest that I can think of is the Google Docs spreadsheet, which is of course just a spreadsheet, requires an internet connection and doesn&#8217;t allow plugins for additional scientific analysis functionality. But there could be a very interesting app to develop here.</dd>
<dt>and how to share their scientific findings with a potentially large mobile audience.</dt>
<dd>I.e. <a href="http://www.aptivate.org/webguidelines/">low bandwidth design</a> with an emphasis on web standards for cross-platform compatibility, so that it works on the largest number of mobile devices.</dd>
</dl>
<p>If you want to apply, better get on your bike (or modem?) because the deadline is tomorrow. If you want to do mobile scientific research applications, please get in touch, we&#8217;d like to help you.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aptivate.org/2010/07/09/mobiles-for-scientific-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technology decisions in organisations great and small</title>
		<link>http://blog.aptivate.org/2010/01/21/working-great-and-small/</link>
		<comments>http://blog.aptivate.org/2010/01/21/working-great-and-small/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 12:59:45 +0000</pubDate>
		<dc:creator>tariq</dc:creator>
				<category><![CDATA[Appropriate Technology]]></category>
		<category><![CDATA[Decision Making]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[long tail]]></category>
		<category><![CDATA[NGOs]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.aptivate.org/?p=247</guid>
		<description><![CDATA[Ken Banks often writes about Social Mobile's Long tail - it's a really helpful concept; one that I find myself frequently using when explaining our work to others. Personally, I'm really interested in working with medium-sized organisations trying to make better use of technology. I probably have similar conversations 2-3 times a month. I think there are some common characteristics and challenges for these organisations...]]></description>
			<content:encoded><![CDATA[<p>Ken Banks often writes about <a href="http://www.kiwanja.net/blog/2009/01/a-glimpse-into-social-mobiles-long-tail/">Social Mobile&#8217;s Long tail</a> &#8211; it&#8217;s a really helpful concept; one that I find myself frequently using when explaining our work to others.</p>
<div id="attachment_250" class="wp-caption aligncenter" style="width: 545px"><a href="http://blog.aptivate.org/wp-content/uploads/2010/01/socialmobilelongtail.jpg"><img class="size-full wp-image-250" title="Social Mobile's Long Tail by Ken Banks" src="http://blog.aptivate.org/wp-content/uploads/2010/01/socialmobilelongtail.jpg" alt="Ken Banks Social Mobile Long Tail Graphic" width="535" height="326" /></a><p class="wp-caption-text">Social Mobile&#39;s Long Tail by Ken Banks</p></div>
<p>Whenever I see Ken&#8217;s picture, I&#8217;m reminded of the similar relationship between complexity and organisational size and I&#8217;m proud of how Aptivate works successfully across this spectrum. We try to bring the breadth of our knowledge, skills and experience to bear when working with everyone from communities in rural Zambia, to NGOs in the UK, international agencies in Europe and governments across Africa.</p>
<p>I think this is really important.</p>
<p>It&#8217;s great to be &#8220;the policy people&#8221; or &#8220;the community technology people&#8221; but you need people who span these worlds and can join the dots.</p>
<p>That&#8217;s us.</p>
<p>We&#8217;ve spent months in rural Zambia working with young women getting low-power computers, GPRS connections and mobile systems working to support local entrepreneurship. Now we have greater confidence offering advice on mobile monitoring and evaluation strategies for NGOs in the region, and in turn, to guide an international agency wanting to know what kind of policy monitoring is possible, and how data might integrate into their wider systems.</p>
<p>I had an enjoyable conversation yesterday with the folks at <a href="http://www.cafod.org.uk/">CAFOD</a> who want to know if mobiles could strengthen their work at the local partner and international levels. I met them through <a href="http://barcampafrica-uk.wikispaces.com/">BarCampAfricaUK</a> last November and finally had a chance to catch up.</p>
<p>Personally, I&#8217;m really interested in working with medium-sized organisations trying to make better use of technology. I probably have similar conversations 2-3 times a month.</p>
<p>I think there are some common characteristics and challenges for these organisations:</p>
<ul>
<li>They already use some technology in the areas you&#8217;d expect: fundraising, communications, advocacy, admin and finance, and monitoring and evaluation.</li>
<li>They don&#8217;t have much capacity to explore and understand how new technologies (e.g. mobiles, collaboration tools and media capture) or advances in current technologies (e.g. open standards, APIs, social media) can help their programmes.</li>
<li>Local partners are already ahead of the game when it comes to the use of mobiles. This is typically out of necessity &#8211; even basic SMS is an astoundingly versatile medium.</li>
<li>The &#8220;technology champions&#8221; in an organisation, the individuals who appreciate the possibilities, are not always the decision makers. They often don&#8217;t have the time to investigate these opportunities and present information around which decisions can be taken.</li>
<li>Experimenting with the various tools out there can be challenging for the non-geek and it&#8217;s hard to find out about the realities of implementation.</li>
<li>Consultants are expensive and companies who sell &#8220;off the shelf products&#8221; might not have the best interest of the organisation at heart.</li>
<li>There are some great resources out there that catalogue technologies, there are also some good case studies that cover certain scenarios but there are few resources that specifically help people make decisions at the organisational level.</li>
</ul>
<p>So here&#8217;s a promise: we&#8217;ll help you make decisions about technology. We&#8217;ll do a whole lot more, but at its simplest, <strong>we&#8217;ll do what it takes for you to decide what do to.</strong></p>
<p>The first three things on my list of &#8220;how to support decisions&#8221; after my conversations yesterday are:</p>
<ul>
<li><del>Write a blog post on technology decision making for medium-sized organisations, reassuring them that they&#8217;re in good company. (done)</del></li>
<li>Write a primer on &#8220;why use mobiles for data gathering and communication&#8221; with a goal to support decisions.</li>
<li>Put together a &#8220;mobile gadget lab in a briefcase&#8221; to take to organisations so they can play with pre-configured versions of various tools on various devices supporting a couple of different workflows.</li>
</ul>
<p>Do any of these thoughts resonate with you?</p>
<p>Comments most welcome!</p>
<p>Tariq</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aptivate.org/2010/01/21/working-great-and-small/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

