-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileio.c
305 lines (247 loc) · 5.7 KB
/
fileio.c
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/*
* fileio.c - file input/output code
*
* Copyright (C) 2012 Michael Rieder <[email protected]>
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
#include "skyplot.h"
FILE *script_file;
/*
================
FIO_OpenDataFile
Open file handle and count number of lines
================
*/
int FIO_OpenDataFile( FILE **fp, const char *fs, catalog_t *cat ) {
int c;
int lines;
// Open File
*fp = fopen( fs, "rt" );
if ( *fp == NULL ) {
printf( "File \"%s\" could not be opened.\n", fs );
cat->number = 0;
return 0;
}
// Go to Start of File
rewind( *fp );
printf( "File \"%s\" opened.\n", fs );
// Count number of input lines
lines = 0;
do {
c = fgetc( *fp );
if (c == '\n') lines++;
} while (c != EOF);
if ( cat != NULL )
cat->number = lines;
return lines;
}
/*
================
FIO_ReadDistFile
read ASCII distances
================
*/
void FIO_ReadDistFile( FILE *fp, catalog_t *cat ) {
int i;
double cD;
catdata_t *current;
rewind( fp );
for ( i=0; i<cat->number; i++ ) {
current = cat->data + i;
if (fscanf( fp, "%lf", &cD ) != 1)
printf( "comovD read fail.\n" );
else {
// TODO: calculate list in Kiloparsec
cD *= 1000; // from GPc to MPc
cD *= 1000; // from Mpc to Kpc
current->comovD = cD;
current->angDiamD = MAT_AngDiamD(current->z,cD);
}
}
}
/*
================
FIO_ReadCatFile
read catalog ASCII data file
================
*/
int FIO_ReadCatFile( FILE *fp, catalog_t *cat ) {
int i;
catdata_t *current;
rewind(fp);
switch (cat->type ) {
char linebuffer[NVSS_LINE_LEN];
case CT_SDSS:
for ( i=0; i<cat->number; i++ ) {
current = cat->data + i;
if (fscanf( fp, "%lf %lf %lf %lf %lf %lf",¤t->ra,
¤t->dec,
¤t->z,
¤t->abs_petro_r_mag,
¤t->u_b_color,
¤t->stellar_mass ) !=6 )
{
printf("error reading SDSS data, line %i.\n",
i);
return 0;
}
}
break;
case CT_NVSS:
for ( i=0; i<cat->number; i++ ) {
double hour, min, sec;
current = cat->data + i;
if (fread( linebuffer, sizeof(linebuffer), 1, fp )==0) {
printf( "error reading NVSS data.\n" );
return 0;
}
// Read and convert RA to degs
sscanf( linebuffer + 0, "%lf %lf %lf",
&hour,
&min,
&sec );
current->ra = (360/24)*(hour + min/60.0 + sec/3600.0);
// same for DEC
sscanf( linebuffer + 21, "%lf %lf %lf",
&hour,
&min,
&sec );
current->dec = hour + min/60.0 + sec/3600.0;
// Galactic coordinates
sscanf( linebuffer + 44, "%lf %lf",
¤t->longitude,
¤t->latitude );
// rotation measure
sscanf( linebuffer + 125, "%lf",
¤t->rot_measure );
}
break;
}
return 1;
}
/*
================
FIO_CloseFile
Close file handles
================
*/
void FIO_CloseFile( FILE *fp ) {
fclose( fp );
}
/*
================
FIO_FileToMemory
Read data precompiled data array from file
================
*/
int FIO_FileToMemory( const char *name, catalog_t *cat ) {
FILE *fp;
fp = fopen( name, "rb" );
if ( fp == NULL ) {
printf( "%s not found.\n", name );
return 0;
}
if (fread( cat, sizeof(catalog_t), 1, fp )==0) {
printf( "error reading %s.\n", name );
return 0;
}
// allocate data buffer
cat->data = malloc( cat->number * sizeof(catdata_t) );
if (fread( cat->data, sizeof(catdata_t)*cat->number, 1, fp )==0) {
printf("error reading data of %s. n is %i\n",name,cat->number);
perror( "skyplot" );
return 0;
}
printf( "loaded %i sources from %s.\n", cat->number, name );
fclose( fp );
return 1;
}
/*
================
FIO_MemoryToFile
Save data array to a file
================
*/
void FIO_MemoryToFile( const char *name, catalog_t *cat ) {
FILE *fp;
fp = fopen( name, "wb" );
if ( fp == NULL ) {
printf( "%s not savable.\n", name );
return;
}
fwrite( cat, sizeof(catalog_t), 1, fp );
fwrite( cat->data, sizeof(catdata_t)*cat->number, 1, fp );
fclose( fp );
}
/*
================
FIO_MemoryToFile
Save data array to a file
================
*/
void FIO_DataToFile( const char *name, double *data, int number ) {
FILE *fp;
int i;
fp = fopen( name, "wt" );
if ( fp == NULL ) {
printf( "%s not savable.\n", name );
return;
}
for ( i=0 ; i<number; i++ ) {
fprintf( fp, "%lf\n", *(data+i) );
}
fclose( fp );
}
/*
================
FIO_MemoryToFile
Save data array to a file
================
*/
int FIO_OpenScriptFile( const char *name ) {
script_file = fopen( name, "rt" );
if ( script_file == NULL ) {
printf( "script file %s could not be opened.\n", name );
return 0;
}
return 1;
}
/*
================
FIO_ReadScript
Save data array to a file
================
*/
int FIO_ReadScript( char *cmdLine, int length ) {
if ( fgets(cmdLine,length,script_file) == NULL )
return 0;
if ( cmdLine[0] == '\n' )
return 2;
return 1;
}
/*
================
FIO_CloseScriptFile
Close script fp
================
*/
void FIO_CloseScriptFile( void ) {
FIO_CloseFile( script_file );
}