Returns the acquisition time of an image as a Date object. This helper function is equivalent to `ee.Date(image.get('system:time_start'))`.
(self)
| 1615 | ) |
| 1616 | |
| 1617 | def date(self) -> ee_date.Date: |
| 1618 | """Returns the acquisition time of an image as a Date object. |
| 1619 | |
| 1620 | This helper function is equivalent to |
| 1621 | `ee.Date(image.get('system:time_start'))`. |
| 1622 | """ |
| 1623 | |
| 1624 | return apifunction.ApiFunction.call_(self.name() + '.date', self) |
| 1625 | |
| 1626 | def derivative(self) -> Image: |
| 1627 | """Returns an ee.Image with the X and Y discrete derivatives. |