(self, asset)
| 1057 | return sum(sizes) |
| 1058 | |
| 1059 | def _get_size_image_collection(self, asset): |
| 1060 | images = ee.ImageCollection(asset['id']) |
| 1061 | return images.aggregate_sum('system:asset_size').getInfo() |
| 1062 | |
| 1063 | |
| 1064 | class MoveCommand: |
nothing calls this directly
no test coverage detected