Exemplo n.º 1
0
 def test_004_bad_years(self):
     years = [[2014, 2020], [2015, 2021], [205, 2019], [2016, 202]]
     for start_year, end_year in years:
         sentCollection = geemap.sentinel2_timeseries(start_year=start_year,
                                                      end_year=end_year)
         self.assertNotIsInstance(sentCollection,
                                  ee.imagecollection.ImageCollection)
Exemplo n.º 2
0
 def test_003_good_dates(self):
     start_date = "06-01"
     end_date = "12-01"
     sentCollection = geemap.sentinel2_timeseries(start_date=start_date,
                                                  end_date=end_date)
     self.assertIsInstance(sentCollection,
                           ee.imagecollection.ImageCollection)
Exemplo n.º 3
0
 def test_007_bad_dates(self):
     start_date = '06-01'
     end_date = '31-12'
     self.assertRaises(
         Exception,
         geemap.sentinel2_timeseries(start_date=start_date,
                                     end_date=end_date))
Exemplo n.º 4
0
 def test_007_bad_dates(self):
     start_date = "06-01"
     end_date = "31-12"
     self.assertRaises(
         Exception,
         geemap.sentinel2_timeseries(start_date=start_date,
                                     end_date=end_date),
     )
Exemplo n.º 5
0
 def test_002_good_years(self):
     start_year = [*range(2015, 2020, 1)]
     end_year = 2020
     for year in start_year:
         sentCollection = geemap.sentinel2_timeseries(start_year=year,
                                                      end_year=end_year)
         self.assertIsInstance(sentCollection,
                               ee.imagecollection.ImageCollection)
Exemplo n.º 6
0
 def test_006_prior_years(self):
     years = [[2016, 2015], [2017, 2015], [2018, 2015], [2019, 2015],
              [2018, 2016], [2019, 2017]]
     for start_year, end_year in years:
         self.assertRaises(
             Exception,
             geemap.sentinel2_timeseries(start_year=start_year,
                                         end_year=end_year))
Exemplo n.º 7
0
 def test_001_default_settings(self):
     """Test the default settings returns an ImageCollection"""
     sentCollection = geemap.sentinel2_timeseries()
     self.assertIsInstance(sentCollection,
                           ee.imagecollection.ImageCollection)