https://github.com/wavestoweather/PCViewer.git
Raw File
Tip revision: e4a2a107c7790a4948783b0f8515ddf84afafc15 authored by Josef Stumpfegger on 24 November 2022, 12:56:34 UTC
Added links to the replicability video and dataset.
Tip revision: e4a2a10
SpacialData.h
#ifndef SpacialData_H
#define SpacialData_H

#include <vector>
#include <math.h>

class SpacialData {
public:
	static float altitude[];
	static float rlon[];
	static float rlat[];
	static int altitudeSize;
	static int rlonSize;
	static int rlatSize;
 
	static int getR(float a, float* arr, int start, int end);

	static int getAltitudeIndex(float a);

	static int getRlonIndex(float a);

	static int getRlatIndex(float a);
};

#endif // !SpacialData_H
back to top