2 /* Test img in unhosted mode */
3 /* Copyright (C) 2014,2020 Olly Betts
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27 main(int argc
, char **argv
)
32 unsigned long c_stations
= 0;
33 unsigned long c_legs
= 0;
35 if (argc
< 2 || argc
> 3) {
36 fprintf(stderr
, "Syntax: %s 3DFILE [SURVEY]\n", argv
[0]);
44 pimg
= img_open_survey(fnm
, survey
);
49 fprintf(stderr
, "%s: Failed to open '%s' (error code %d)\n",
50 argv
[0], fnm
, (int)img_error());
54 printf("Title: \"%s\"\n", pimg
->title
);
55 printf("Date: \"%s\"\n", pimg
->datestamp
);
56 printf("Format-Version: %d\n", pimg
->version
);
57 printf("Extended-Elevation: %s\n",
58 pimg
->is_extended_elevation
? "yes" : "no");
61 int code
= img_read_item(pimg
, &pt
);
62 if (code
== img_STOP
) break;
72 fprintf(stderr
, "%s: img_read_item failed (error code %d)\n",
73 argv
[0], (int)img_error());
78 printf("Stations: %lu\nLegs: %lu\n", c_stations
, c_legs
);