-
Notifications
You must be signed in to change notification settings - Fork 41
/
i2_binary_to_ascii.html
166 lines (137 loc) · 3.94 KB
/
i2_binary_to_ascii.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<html>
<head>
<title>
I2_BINARY_TO_ASCII - Convert I2 Data from Binary to ASCII Format
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
I2_BINARY_TO_ASCII <br> Convert I2 Data from Binary to ASCII Format
</h1>
<hr>
<p>
<b>I2_BINARY_TO_ASCII</b>
is a C++ program which
converts a file of I2 data from binary to ASCII format.
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files described and made available on this
web page are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>I2_BINARY_TO_ASCII</b> is available in
<a href = "../../cpp_src/i2_binary_to_ascii/i2_binary_to_ascii.html">a C++ version</a>.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../c_src/bio/bio.html">
BIO</a>,
a C library which
manages binary I/O,
by Greg Hood.
</p>
<p>
<a href = "../../c_src/mri_to_ascii/mri_to_ascii.html">
MRI_TO_ASCII</a>,
a C program which
converts the binary data in a magnetic resonance imaging (MRI) file to ASCII text.
</p>
<p>
<a href = "../../cpp_src/pbmb_to_pbma/pbmb_to_pbma.html">
PBMB_TO_PBMA</a>,
a C++ program which
converts a binary Portable Bit Map (PBM) file
to an ASCII PBM file;
</p>
<p>
<a href = "../../cpp_src/pgmb_to_pgma/pgmb_to_pgma.html">
PGMB_TO_PGMA</a>,
a C++ program which
converts a binary Portable Gray Map (PGM) file to an ASCII PGM file;
</p>
<p>
<a href = "../../cpp_src/ppmb_to_ppma/ppmb_to_ppma.html">
PPMB_TO_PPMA</a>,
a C++ program which
converts a binary Portable Pixel Map (PPM) to an ASCII PPM graphics file;
</p>
<p>
<a href = "../../c_src/uuencode/uuencode.html">
UUENCODE</a>,
a C program which
takes an input file, especially a binary file,
and creates a UU encoded copy that is a text file, suitable for
transmission through mail or other text-only systems,
by Stephen Satchell and Chuck Forsberg.
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "i2_binary_to_ascii.cpp">i2_binary_to_ascii.cpp</a>, the source code.
</li>
<li>
<a href = "i2_binary_to_ascii.sh">i2_binary_to_ascii.sh</a>,
BASH commands to compile the source code.
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<ul>
<li>
<a href = "i2_binary_to_ascii_output.txt">i2_binary_to_ascii_output.txt</a>,
the output file.
</li>
<li>
<a href = "sealevel.bin">sealevel.bin</a>,
a binary file containing sealevel data as I2 values,
representing 301 rows and 121 columns of sea level data.
</li>
<li>
<a href = "sealevel.txt">sealevel.txt</a>,
an ASCII text file containing the same sealevel data after conversion.
</li>
</ul>
</p>
<h3 align = "center">
List of Routines:
</h3>
<p>
<ul>
<li>
<b>I2_BINARY_TO_ASCII</b> converts a file of I2 data from binary to ASCII format.
</li>
<li>
<b>I2_BINARY_TO_ASCII_CONVERT</b> converts I2 data from binary to text form.
</li>
<li>
<b>TIMESTAMP</b> prints the current YMDHMS date as a time stamp.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../cpp_src.html">
the C++ source codes</a>.
</p>
<hr>
<i>
Last revised on 31 October 2012.
</i>
<!-- John Burkardt -->
</body>
<!-- Initial HTML skeleton created by HTMLINDEX. -->
</html>