ExaGeoStat
ExaGeoStat is a parallel high performance unified framework for geostatistics on manycore systems.
|
Go to the source code of this file.
Functions | |
int | openFileNC (MLE_data *data, char *filename) |
Open the NetCDF file. More... | |
int | countlinesNC (int ncid, char *dim1, char *dim2) |
Retrieve number of measurements. More... | |
void | readLocsNC_1d (MLE_data *data, int ncid) |
Read 1D locations from a given. More... | |
void | readLocsNC_2d (MLE_data *data, int ncid) |
Read 2D locations from a given. More... | |
void | readVarNCs (MLE_data *data, int ncid, char *varname, double *data_in, char *dim1, char *dim2) |
Read Read observations from. More... | |
void | closeFileNC (MLE_data *data, int ncid) |
Close the NetCDF file. More... | |
Copyright (c) 2017-2018 King Abdullah University of Science and Technology All rights reserved.
ExaGeoStat is a software package provided by KAUST
Heade file of auxiliary functions that are used to read and process flat files.
Definition in file nc_file.h.
int openFileNC | ( | MLE_data * | data, |
char * | filename | ||
) |
int countlinesNC | ( | int | ncid, |
char * | dim1, | ||
char * | dim2 | ||
) |
void readLocsNC_1d | ( | MLE_data * | data, |
int | ncid | ||
) |
void readLocsNC_2d | ( | MLE_data * | data, |
int | ncid | ||
) |
void readVarNCs | ( | MLE_data * | data, |
int | ncid, | ||
char * | varname, | ||
double * | data_in, | ||
char * | dim1, | ||
char * | dim2 | ||
) |
Read Read observations from.
a given NetCDF variable. Returns location struct.
[in] | data | MLE_data struct with different MLE inputs. |
[in] | ncid | netCDF file identifier. |
[in] | varname | NetCDF variable name. |
[out] | data_in | data vector. |
[in] | dim1 | size of dimension 1. |
[in] | dim2 | size of dimension 2. |