103 lines
2.2 KiB
C++
103 lines
2.2 KiB
C++
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <math.h>
|
||
|
#include <fstream>
|
||
|
#include <iostream> // Added by Zhang Yi on 2021-08-26
|
||
|
#include <string>
|
||
|
|
||
|
#define MAX_GRID_POINTS 16000
|
||
|
|
||
|
#define GRID_FORMAT "%lf %lf %f %lf"
|
||
|
|
||
|
#if defined(_MSC_VER) /* Added for windows by Yi Zhang on 2021-08-26*/
|
||
|
#include <BaseTsd.h>
|
||
|
typedef SSIZE_T ssize_t;
|
||
|
#endif
|
||
|
|
||
|
void printresult_withalt(double* longitudes, double* latitudes, float* altitudes, double* values, int n_values)
|
||
|
{
|
||
|
|
||
|
|
||
|
for (int h = 0; h < n_values; h++)
|
||
|
printf( "%lf %lf %f %lf\n", longitudes[h], latitudes[h], altitudes[h], values[h]);
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
void printresult(double* longitudes, double* latitudes, double* values, int n_values)
|
||
|
{
|
||
|
|
||
|
|
||
|
for (int h = 0; h < n_values; h++)
|
||
|
printf( "%lf %lf %lf\n", longitudes[h], latitudes[h], values[h]);
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
|
||
|
int main(int argc, char**argv)
|
||
|
{
|
||
|
int n_files = (argc-1)/2;
|
||
|
|
||
|
double lons[MAX_GRID_POINTS];
|
||
|
double lats[MAX_GRID_POINTS];
|
||
|
float alts[MAX_GRID_POINTS];
|
||
|
|
||
|
double vals[MAX_GRID_POINTS];
|
||
|
|
||
|
double factor = 1;
|
||
|
|
||
|
//char * line = NULL;
|
||
|
std::string line;
|
||
|
size_t len = 0;
|
||
|
ssize_t read;
|
||
|
|
||
|
int n_lines = 0;
|
||
|
|
||
|
for (int i = 0; i < n_files; i++)
|
||
|
{
|
||
|
//FILE * fp = fopen(argv[1+2*i], "r");
|
||
|
std::ifstream fp(argv[1+2*i], std::ios::in);
|
||
|
sscanf(argv[1+2*i+1], "%lf", &factor);
|
||
|
|
||
|
//if (fp == NULL)
|
||
|
if (!fp)
|
||
|
{
|
||
|
printf("ERROR: Can not open file with grid values.\n");
|
||
|
exit(EXIT_FAILURE);
|
||
|
}
|
||
|
|
||
|
n_lines = 0;
|
||
|
//while ((read = getline(&line, &len, fp )) != -1)
|
||
|
while (std::getline(fp, line))
|
||
|
{
|
||
|
|
||
|
//if ((line[0] != '#') && (strlen(line) > 2))
|
||
|
if ((line[0] != '#') && (line.length() > 2))
|
||
|
{
|
||
|
n_lines++;
|
||
|
if (n_lines>MAX_GRID_POINTS)
|
||
|
{
|
||
|
printf("ERROR: Too many grid points (> %d) in the input. Recompile program with a bigger value of MAX_GRID_POINTS.\n", n_lines);
|
||
|
exit(EXIT_FAILURE);
|
||
|
}
|
||
|
double value;
|
||
|
|
||
|
sscanf(line.c_str(), GRID_FORMAT, &lons[n_lines-1], &lats[n_lines-1], &alts[n_lines-1], &value);
|
||
|
vals[n_lines-1] = vals[n_lines-1] + value*factor;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
//fclose(fp);
|
||
|
fp.close();
|
||
|
}
|
||
|
|
||
|
int no_alt = 0;
|
||
|
|
||
|
if (no_alt)
|
||
|
printresult(lons, lats, vals, n_lines);
|
||
|
else
|
||
|
printresult_withalt(lons, lats, alts, vals, n_lines);
|
||
|
|
||
|
}
|