Last week I have started a dive logbook for android phones on the base of my Scuba Dive Ontology
. On the base of RDF files that looks similar than the following excerpt, the logbook shows the dives in a suitable form and interlinked with appropriate information and actions.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<dive:Dive rdf:ID="dive-4">
<dive:id>4</dive:id>
<dive:diver rdf:resource="/sdcard/divedroid/buddies/yourname.rdf#profile" />
<dive:name>Open Water Dive 4</dive:name>
<dive:date>2007-07-25</dive:date>
<dive:activity>Open Water Course</dive:activity>
<dive:divesite>White Rock</dive:divesite>
<dive:country rdf:resource="http://www4.wiwiss.fu-berlin.de/factbook/data/Thailand" />
<dive:location>Koh Nangjuan</dive:location>
<dive:divebase>Easy Divers (Koh-Nangjuan)</dive:divebase>
<geo:Point rdf:parseType="Resource">
<geo:lat>10.1174855232239</geo:lat>
<geo:long>99.8058342933655</geo:long>
</geo:Point>
<dive:partner rdf:resource="#buddy_name" />
<dive:partner rdf:resource="#diveinstructor_name" />
<dive:entrancetype>Boat</dive:entrancetype>
<dive:watertype>Salt</dive:watertype>
<dive:weight>8</dive:weight>
<dive:exposureprotection>Shorty</dive:exposureprotection>
<dive:maxdeep>14.6</dive:maxdeep>
<dive:bottomtime>38</dive:bottomtime>
<dive:comment>This dive was stored on video. And here comes more of the comment</dive:comment>
<geo:image rdf:resource="/sdcard/divedroid/sat_pic/koh_nangyuan.jpg" />
</dive:Dive> |
The URIs to the pictures are not really nice and bound to the device (path is written statically to the file). This is a compromise that I have made to assure that your dive informations are offline available and you don’t have to download it to a public space.
The following screenshots are taken from the first version and should give you a good overview how the application looks like.












