WSF
WsfLandCover.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2003-2015 The Boeing Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef WSFLANDCOVER_HPP
13#define WSFLANDCOVER_HPP
14
15#include "WsfEnvironment.hpp"
16
21{
22public:
23 static const std::string& ToString(WsfEnvironment::LandCover aLandCover)
24 {
25 static const std::string sToString[14] = {"general",
26 "urban",
27 "agricultural",
28 "rangeland_herbaceous",
29 "rangeland_shrub",
30 "forest_deciduous",
31 "forest_coniferous",
32 "forest_mixed",
33 "forest_clear_cut",
34 "forest_block_cut",
35 "wetland_forested",
36 "wetland_non_forested",
37 "barren",
38 "water"};
39 return sToString[aLandCover];
40 }
41};
42#endif
#define WSF_EXPORT
Definition WsfXIO_Export.hpp:35
LandCover
Definition WsfEnvironment.hpp:42
Definition WsfLandCover.hpp:21
static const std::string & ToString(WsfEnvironment::LandCover aLandCover)
Definition WsfLandCover.hpp:23
Copyrights Multiple, All Rights Reserved