Skip to content

Commit

Permalink
mir-count
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaciel committed Jun 4, 2024
1 parent 6e87560 commit 914ff4b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/tools/mir-count.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,11 @@ void MIRCount::execute(const eckit::option::CmdArgs& args) {
prec_t precision;
param.get("precision", precision) ? log.precision(precision) : log.precision();

std::vector<double> area;
param.get("area", area);
std::string area_str;
param.get("area", area_str);

util::BoundingBox area;
key::Area::get(param, area);

// setup a regular lat/lon representation and perform count
std::string grid;
Expand Down

0 comments on commit 914ff4b

Please sign in to comment.