From 3b9e2491b543ac9741e56f6c13c87c7c77e16fa2 Mon Sep 17 00:00:00 2001 From: Pedro Maciel Date: Wed, 13 Mar 2024 16:59:35 +0000 Subject: [PATCH] MIR-646 earthkit-regrid support with interpolationspec, additional identifiers --- src/mir/method/MethodWeighted.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mir/method/MethodWeighted.cc b/src/mir/method/MethodWeighted.cc index 292ed771d..cb7fb642c 100644 --- a/src/mir/method/MethodWeighted.cc +++ b/src/mir/method/MethodWeighted.cc @@ -84,7 +84,7 @@ void MethodWeighted::json(eckit::JSON& j) const { j << "engine" << "mir"; j << "version" << caching::WeightCache::version(); j << "type" << name(); - j << "checksum" << [this]() { + j << "uid" << [this]() -> std::string { eckit::MD5 h; hash(h); return h.digest();