Skip to content

Commit

Permalink
BUFR: Skip WIGOS generation, if it already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
istvans-mn committed Oct 1, 2024
1 parent 93d6cd2 commit 9f749af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ingest/src/ingest/bufr/ESOHBufr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,9 @@ std::list<std::string> ESOHBufr::msg() const {
LogEntry("Missing WMO Station number after WMO block",
LogLevel::WARN, __func__, bufr_id));
}
wigos_id.setWmoId(wmo_block * 1000 + wmo_station);
if (!wigos_id.getWigosLocalId().size()) {
wigos_id.setWmoId(wmo_block * 1000 + wmo_station);
}
skip_platform = false;
// platform_check = true;
break;
Expand Down

1 comment on commit 9f749af

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

API Unit Test Coverage Report
FileStmtsMissCoverMissing
\_\_init\_\_.py00100% 
datastore_pb2.py614821%34–81
datastore_pb2_grpc.py542750%15–16, 19, 57–72, 105–107, 112–114, 119–121, 126–128, 132–157, 195, 222, 249, 276
export_metrics.py100100% 
grpc_getter.py201145%15–19, 23–26, 30–32, 36–38
locustfile.py15150%1–31
main.py43784%45, 50, 60, 70–71, 81–82
metadata_endpoints.py632954%45–54, 58, 85, 100–216, 220
response_classes.py50100% 
utilities.py1815669%20, 38, 45, 67–70, 78–89, 94–101, 121, 125, 127, 154, 157, 166, 184–185, 189, 205–210, 215, 219–220, 224–226, 232–240, 250–253, 259–260, 272–276, 299, 304, 317
custom_geo_json
   edr_feature_collection.py60100% 
formatters
   \_\_init\_\_.py110100% 
   covjson.py57198%88
   geojson.py17288%21, 46
openapi
   custom_dimension_examples.py40100% 
   edr_query_parameter_descriptions.py110100% 
   openapi_examples.py130100% 
routers
   \_\_init\_\_.py00100% 
   edr.py102496%350–351, 441–442
   feature.py471960%99–132, 148–153, 159–181
TOTAL72021970% 

API Unit Test Coverage Summary

Tests Skipped Failures Errors Time
30 0 💤 0 ❌ 0 🔥 1.988s ⏱️

Please sign in to comment.