Antonio Valentino pushed to branch master at Debian GIS Project / asf-search
Commits: 446838c8 by Antonio Valentino at 2023-11-19T07:48:10+00:00 New upstream version 6.7.1 - - - - - a6175f03 by Antonio Valentino at 2023-11-19T07:48:13+00:00 Update upstream source from tag 'upstream/6.7.1' Update to upstream version '6.7.1' with Debian dir d58571f5fc7bc86c51dafb72eb97c6378045c40a - - - - - 6951f09d by Antonio Valentino at 2023-11-19T07:48:45+00:00 New upstream release - - - - - df18b7bd by Antonio Valentino at 2023-11-19T07:50:18+00:00 Set distribution to unstable - - - - - 3 changed files: - CHANGELOG.md - asf_search/CMR/translate.py - debian/changelog Changes: ===================================== CHANGELOG.md ===================================== @@ -26,6 +26,10 @@ and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --> ------ +## [v6.7.1](https://github.com/asfadmin/Discovery-asf_search/compare/v6.7.0...v6.7.1) +### Fixed +- Fixes issue with certain S1 products not stacking properly in certain environments, which caused null `perpendicularBaseline` values + ## [v6.7.0](https://github.com/asfadmin/Discovery-asf_search/compare/v6.6.3...v6.7.0) ### Added - Adds new `dataset` keyword to `search()` as an alternative to `platform`. Allows users to get results from multiple platforms at once in a single page ===================================== asf_search/CMR/translate.py ===================================== @@ -195,7 +195,15 @@ def translate_product(item: dict) -> dict: velocities['postVelocity'], velocities['postVelocityTime'] = cast(get_state_vector, get(umm, 'AdditionalAttributes', ('Name', 'SV_VELOCITY_POST'), 'Values', 0)) ascendingNodeTime = get(umm, 'AdditionalAttributes', ('Name', 'ASC_NODE_TIME'), 'Values', 0) - + for key in ['prePositionTime','postPositionTime','preVelocityTime','postVelocityTime']: + if positions.get(key) is not None: + if not positions.get(key).endswith('Z'): + positions[key] += 'Z' + + if ascendingNodeTime is not None: + if not ascendingNodeTime.endswith('Z'): + ascendingNodeTime += 'Z' + stateVectors = { 'positions': positions, 'velocities': velocities ===================================== debian/changelog ===================================== @@ -1,3 +1,9 @@ +asf-search (6.7.1-1) unstable; urgency=medium + + * New upstream release. + + -- Antonio Valentino <[email protected]> Sun, 19 Nov 2023 07:50:00 +0000 + asf-search (6.7.0-1) unstable; urgency=medium * New upstream release. View it on GitLab: https://salsa.debian.org/debian-gis-team/asf-search/-/compare/1e371c00060123629d0735f44a416b149429902f...df18b7bdfbf82c14f1228a2a1b63b40967c3d3e4 -- View it on GitLab: https://salsa.debian.org/debian-gis-team/asf-search/-/compare/1e371c00060123629d0735f44a416b149429902f...df18b7bdfbf82c14f1228a2a1b63b40967c3d3e4 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
