三四線城市成樓市成交主力 中介機構有商機
百度 凤凰网汽车导购:随着国内人均收入的不断增长,加之人们对于便捷出行的需求也更加强烈,购买汽车对于个人还是家庭来说,购买一款10万左右的车型已经不再是什么特别重大的事情了。
geemap is a Python package for interactive mapping with Google Earth Engine (GEE)
127 questions
1
vote
0
answers
14
views
Error exporting GEE collection using geemap
I'm trying to use geemap's geemap.download_ee_image_collection to download 299 rasters to my local directory.
The code is:
import os
import ee
import geemap
ee.Authenticate()
ee.Initialize(project='...
0
votes
1
answer
22
views
Exporting Geemap Images to Colored KML Polygon
I've been working on a geemap project in Python where one of the requirements is to export an image to a GIS readable file. I've been trying KML, but I'm sure others would work fine.
What I've been ...
1
vote
1
answer
26
views
Why is Voila making Ipywidgets Panels fill width?
I've been working on a geemap project in Jupyter Notebooks because that's what was recommended, but now I'm starting to look at publishing. I'm trying out Voila because it has a bunch of ...
1
vote
1
answer
76
views
Error loading Google Earth Engine data
I am trying to load an Image collection in gee map and I keep getting this error for the Landsat 8 Tier 2:
EEException: ImageCollection.load: ImageCollection asset
'LANDSAT/LC08/C01/T1_TOA' not found ...
0
votes
0
answers
27
views
Reclassification of nine different type of LULC maps and produces one final LULC by combining all of these in Google Earth Engine
For this I have question that what steps I have to follow? Same thing I did using Python so, for that I resampled all the inputs into one same spatial resolution (0.0025 degree) in QGIS, also I ...
1
vote
1
answer
79
views
How to show pixels when plotting Sentinel-2 images with geemap?
For very small areas, geemap smooths images of Sentinel-2 data - how do I get it to show the pixels cleanly without any smoothing?
For instance, the following small area gets smoothed by geemap when ...
0
votes
1
answer
22
views
From where is the satellite basemap within geemap derived?
The geemap module includes the function add_basemap with the option SATELLITE. However, the documentation does not describe from where this satellite data is derived.
The citation at the bottom of ...
0
votes
1
answer
48
views
Output Sentinel-2 'SCL' band as raster TIFF from Google Earth Engine
I'm aiming to output the Sentinel-2 SCL band as a raster layer for a small county but unclear on how to output the SCL values for each pixel (getting a grayscale output instead).
Preamble
import ee, ...
0
votes
1
answer
126
views
Artifacts when extracting Sentinel-2 images
I'm developing an application for water quality analysis using Sentinel-2 imagery in Google Earth Engine. I've encountered a persistent issue with artifacts appearing in the extracted images, which is ...
0
votes
0
answers
92
views
Mismatched in MODIS Data: Comparing GEE Downloads with Source HDF Files
I can export MODIS data using the geemap library in Python or from Google Earth Engine (both option results are the same). However, I am comparing the data downloaded via GEE with the data downloaded ...
0
votes
1
answer
60
views
Tracking GEE API costs with workload tags: Unable to get complete EECU summary [closed]
I am using Python to make multiple GEE API calls and track costs by assigning workload tags using:
import ee
ee.data.setDefaultWorkloadTag('sample_workload_tag')
In the GEE Monitoring Console, I ...
0
votes
0
answers
73
views
Problems with ee_to_df() function in geemap
I'm revisiting some old Jupyter notebooks that I had set up to download Google Earth Engine data with geemap. I had a workflow that used the geemap.ee_to_pandas() function pretty heavily, which now ...
1
vote
2
answers
149
views
Exporting a time series of images in an image collection from GEE using Python
I'm having trouble with exporting images from NASA/HLS/HLSL30/v002 image collection to Drive.
This produces a map of the image I want to make:
# Applies scaling factors.
def apply_scale_factors(image):...
0
votes
0
answers
30
views
Earth Engine addLayer takes forever
I'm new to Earth Engine, but I've been trying to plot a map with a SENTINEL-2 image, like this:
import ee
import geemap
import geopandas as gpd
import pandas as pd
GEE_SERVICE_ACCOUNT = "xxxx&...
0
votes
1
answer
376
views
Uploading an image from Google Drive to Google Earth Engine as a GEE Asset
I have a .tif file that I would like to upload to GEE as a Google Earth Engine asset. Obviously this can be done manually through the GEE interface. But I was wondering how this can be done from a ...