def test_from_asset(self): a1 = Asset.from_dict(self.ASSET_DICT) with self.assertRaises(STACError): EOAsset.from_asset(a1) a2 = Asset.from_dict(self.EO_ASSET_DICT) eoa = EOAsset.from_asset(a2) self.assertIsNone(eoa.properties) self.assertListEqual(eoa.bands, [0])
def example_asset(self) -> Asset: return Asset.from_dict(self.asset_dict)