Example #1
0
    def dates(self):
        dates = pd.Series(
            gee_functions.getfeature_fromeedict(self.image_collection.getInfo(),
                                                'properties',
                                                'system:time_start')
        )

        return dates.apply(lambda x: datetime.datetime.fromtimestamp(np.round(x / 1000.0)))
    def coverarea(self):

        coverareas = pd.Series(
            gee_functions.getfeature_fromeedict(
                self.image_collection.getInfo(), 'properties',
                'cover_percentage'))

        return coverareas
Example #3
0
 def orbit(self):
     return pd.Series(gee_functions.getfeature_fromeedict(self.image_collection.getInfo(),
                                                          'properties',
                                                          'orbitProperties_pass'))