Hi ASP team,
Vantor/Maxar recently started producing imagery with a new Catalog ID naming scheme that now includes a B as the first character (e.g., B020001100583F10) and uses namespaces in their XML metadata. This seems to break wv_correct for WV01 imagery and may have consequences in other ASP utilities. Here's the error we get from wv_correct.
ERROR: XML file "WV01_20260721214043_B020001100583F10_26JUL21214043-P1BS-600000237725_01_P017.xml" is lacking a valid image scan direction.
Looking at the v3.6.0/v3.7.0 wv_correct code, it is using methods like getTagName()/getElementsByTagName() which treat the full namespace:tagname string as one when parsing the XML, so we believe the DG namespaced metadata is causing wv_correct to read the XML as essentially empty. The Xerces library also provides getLocalName()/getElementsByTagNameNS("*", ...) which ignores namespaces, so it is potentially a simple fix.