Qiusheng Wu

Results 379 comments of Qiusheng Wu
trafficstars

Try the WBT Runner to see if it works. If yes, then the issue is either caused by your source code or the Python frontend. Try mosaicking a few files...

Also try this: ``` tiles = [] for file in glob.glob("*.tif"): tiles.append(file) in_rasters = ';'.join(tiles) wbt.mosaic(inputs=in_rasters, output=out_raster) ```

Yes. Contributions are welcome. Need to add functions to the [timelapse](https://github.com/giswqs/geemap/blob/master/geemap/timelapse.py) module first. The GUI can be a separate PR if it is too complicated. It is ok to have...

Visual programming in JupyterLab with Blockly https://blog.jupyter.org/visual-programming-in-jupyterlab-with-blockly-7731ec3e113c

@iamrajbhattarai You can use `Map.user_rois` to return the training samples as a feature collection. ![](https://i.imgur.com/1pGcQSD.gif)

I encountered this weird issue before. Try downgrading ipyleaflet to an earlier version, e.g., pip install -U ipyleaflet==0.13.3

A potential module for coastline extraction. References: - https://code.earthengine.google.co.in/c06179ff6575c0cedd66fa1cca6e4022 - https://twitter.com/spatialthoughts/status/1448307878935203842 - https://github.com/gee-community/ee-packages-py/blob/main/eepackages/utils.py#L52

@touldimos Here is an example for creating contour lines in Earth Engine. For exporting a large vector dataset, you need to use Google Drive. I will see if I can...

@touldimos I have added a contour function (generating raster contours) to geemap. See the [notebook example](https://github.com/giswqs/geemap/blob/master/examples/notebooks/contours.ipynb). Unfortunately, GEE does not support `image.reduceToVectors(geometryType='polyline')`. There is no way to convert an image...