FireSTARR
Loading...
Searching...
No Matches
Test.h
1/* Copyright (c) Queen's Printer for Ontario, 2020. */
2/* Copyright (c) His Majesty the King in Right of Canada as represented by the Minister of Natural Resources, 2025. */
3
4/* SPDX-License-Identifier: AGPL-3.0-or-later */
5
6#pragma once
7namespace fs::wx
8{
9class FwiWeather;
10};
11namespace fs::sim
12{
13#include "stdafx.h"
14
15static const double TEST_GRID_SIZE = 100.0;
16static const char TEST_PROJ4[] =
17 "+proj=tmerc +lat_0=0.000000000 +lon_0=-90.000000000"
18 " +k=0.999600 +x_0=500000.000 +y_0=0.000 +a=6378137.000 +b=6356752.314 +units=m";
19static const double TEST_XLLCORNER = 324203.990666;
20static const double TEST_YLLCORNER = 12646355.311160;
29int test(
30 const string& output_directory,
31 const DurationSize num_hours,
32 const fs::wx::FwiWeather* wx,
33 const string& fuel_name,
34 const SlopeSize slope,
35 const AspectSize aspect,
36 const bool test_all);
37}
A Weather value with calculated FWI indices.
Definition FWI.h:209