geostat/heat.h

26 wiersze
494 B
C++

#pragma once
#include "cache.h"
#include <set>
#include <string>
class Heat {
private:
Caches* points;
const int size_x = 1000;
const int size_y = 972;
const float lat_max = 55.2;
const float lat_min = 48.7;
const float lon_max = 24.5;
const float lon_min = 13.8;
const std::string contour_file = "Poland.png";
const std::string relief_file = "Poland_relief.png";
public:
Heat(Caches* cc);
void generate(std::string filename, int size, bool relief, std::string theme = "");
};