Catchea
Topographic Data Browser
hgt_plugin.h
Go to the documentation of this file.
1 
7 #ifndef CATCHEA_HGT_PLUGIN_H
8 #define CATCHEA_HGT_PLUGIN_H
9 
10 #include "real_tile.h"
11 
12 #define SAMPLES_PER_AXIS 1201
13 #define SAMPLES_PER_TILE (SAMPLES_PER_AXIS*SAMPLES_PER_AXIS)
14 
15 char* hgt_path_for(char* folder_path, int lat, int lon);
16 
22 RealTile* RealTile__from_hgt_file(const char* filename);
23 
31 RealTile* RealTile__from_hgt_file(const char* filename, const int& lat, const int& lon);
32 
45  const char* folder_path,
46  const int& lat_min, const int& lon_min,
47  const int& lat_max, const int& lon_max
48 );
49 
50 #endif //CATCHEA_HGT_PLUGIN_H
RealTile * RealTile__from_hgt_file_batch(const char *folder_path, const int &lat_min, const int &lon_min, const int &lat_max, const int &lon_max)
Definition: hgt_plugin.cpp:86
Definition: real_tile.h:14
RealTile * RealTile__from_hgt_file(const char *filename)
Definition: hgt_plugin.cpp:26