Closed
Description
Environment Information
- geemap version: 0.16.4
- Python version: 3.9.7 64bits
- Operating System: win10 64 bits
Description
Many examples are not exporting expteced data:
Example 34
out_dir = os.path.join(os.path.expanduser('~'), 'Downloads')
# out_csv = os.path.join(out_dir, 'points.csv')
out_shp = os.path.join(out_dir, 'ndvi.shp')
m.extract_values_to_points(out_shp)
==> no file, no error, nothing produced
123_sentinel1_timelapse.ipynb
timelapse = geemap.sentinel1_timelapse(
roi,
out_gif='sentinel1.gif',
start_year=2019,
end_year=2019,
start_date='04-01',
end_date='08-01',
frequency='day',
vis_params={"min": -30, "max": 0},
palette="Greys",
frames_per_second=3,
title='Sentinel-1 Timelapse',
add_colorbar=True,
colorbar_bg_color='gray',
)
==>
Generating URL...
Expression evaluates to an empty image collection.
The input gif file does not exist.
The input gif file does not exist.
The input gif file does not exist.
What I Did
Just testing on a jupyter notebook stuff I download from examples repo.