Questions tagged [geemap]
36 questions
0
votes
1 answer
How to display an instance of geemap.Map() in Django Template
I am working with Django and geemap modules, in which I am trying to make an app that can display satellite data on the map and the map should also be interactive as in there should be a bidirectional flow of data from the front-end(Django template)…

DK77
- 1
- 3
0
votes
1 answer
Circular Import error in Django occurs only when i import geemap package
I am trying to use geemap in combination with django to build a web app for plotting satellite data. I have installed the geemap package in my django project. My projects name is CustomMaps, and the directory structure is as below.
enter image…

DK77
- 1
- 3
0
votes
0 answers
Why doesn't the download function work from app deployed on heroku
global down_path
down_path = os.path.join(os.path.expanduser('~'), 'TempDownload')
if not os.path.exists(down_path):
os.mkdir(down_path) # 如果不存在这个logs文件夹,就自动创建一个
filename = os.path.join(down_path,…
0
votes
1 answer
How can I use geemap instead of folium in pyqt5?
In the following codes:
import sys
import io
import folium
from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout
from PyQt5.QtWebEngineWidgets import QWebEngineView
import geemap
class my_app(QWidget):
def __init__(self):
…

majidi
- 1
- 1
0
votes
1 answer
Animated GIF wih Annotations. Annoying Bar on the side
I wrote a script that downloads a series of images with Google Earth Engine into a GIF-File and puts the Date of the image as annotation on it. See the code below:
import geopandas as gpd
import ee
import os
import geemap
from datetime import date,…

Katerkaskade
- 11
- 3
0
votes
1 answer
Geemap package - PCA Analysis
Im using the geemap package (which adapts gee functionalities from gee for python)
Firstly, I created an image collection:
#Select and Filter Sentinel 2 L2A Image
sentImages = ee.ImageCollection('COPERNICUS/S2') \
…

Ana Paola Siri
- 31
- 3