mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-26 01:01:58 +00:00
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>CUCC Expedition Handbook: Programmers manual</title>
|
|
<link rel="stylesheet" type="text/css" href="../../css/main2.css" />
|
|
</head>
|
|
<body>
|
|
<h2 id="tophead">CUCC Expedition Handbook - Online systems</h2>
|
|
<h1>Expo Data Maintenance - Regular tasks</h1>
|
|
|
|
<h2><a id="manual">Regular operations</a></h2>
|
|
|
|
|
|
<p>This page <i>is a checklist</i> who are helping the survey data reduction process during and after expo.
|
|
|
|
|
|
<h3>Wallets and Surveyscans</h3>
|
|
<p>Run dos2unix to convert any uploaded Windows text files to the format expected by our software. e.g.
|
|
<pre><code>cd expofiles/surveyscans
|
|
find . -not -type d -exec file "{}" ";" | grep CRLF >crlf.txt
|
|
`awk -F: '// {print "dos2unix \"" $1 "\""}' crlf.txt`
|
|
</code></pre>
|
|
<p>Also a good idea to run on all of expofiles once every few years as many GPX
|
|
|
|
<h3>Tunnel files (Drawings)</h3>
|
|
|
|
<h3>Survex files</h3>
|
|
|
|
<hr />
|
|
Annual tasks <a href="newyear.html">New expo year jobs</a>.
|
|
Return to the main <a href="manual.html">online systems manual</a>.
|
|
|
|
<hr />
|
|
</body>
|
|
</html>
|
|
|