Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
giswqs
GitHub Repository: giswqs/geemap
Path: blob/master/mkdocs.yml
2313 views
1
site_name: geemap
2
site_description: A Python package for interactive mapping with Google Earth Engine
3
site_author: Qiusheng Wu
4
site_url: https://geemap.org
5
6
repo_url: https://github.com/gee-community/geemap
7
8
copyright: "Copyright © 2020 - 2024 Qiusheng Wu"
9
10
theme:
11
palette:
12
- scheme: default
13
# primary: blue
14
# accent: indigo
15
toggle:
16
icon: material/toggle-switch-off-outline
17
name: Switch to dark mode
18
- scheme: slate
19
primary: indigo
20
accent: indigo
21
toggle:
22
icon: material/toggle-switch
23
name: Switch to light mode
24
name: material
25
icon:
26
repo: fontawesome/brands/github
27
logo: assets/logo.png
28
favicon: assets/favicon.png
29
features:
30
- navigation.instant
31
- navigation.tracking
32
- navigation.top
33
- search.highlight
34
- search.share
35
custom_dir: "docs/overrides"
36
font:
37
text: Google Sans
38
code: Regular
39
40
plugins:
41
- search
42
- mkdocstrings
43
- git-revision-date
44
- git-revision-date-localized:
45
enable_creation_date: true
46
type: timeago
47
# - pdf-export
48
- mkdocs-jupyter:
49
include_source: True
50
ignore_h1_titles: True
51
allow_errors: false
52
ignore: ["conf.py"]
53
execute: False
54
execute_ignore:
55
["notebooks/*.ipynb", "workshops/*.ipynb", "changelog_update.py"]
56
57
markdown_extensions:
58
- admonition
59
- abbr
60
- attr_list
61
- def_list
62
- footnotes
63
- meta
64
- md_in_html
65
- pymdownx.superfences
66
- pymdownx.highlight:
67
linenums: true
68
- toc:
69
permalink: true
70
71
extra:
72
social:
73
- icon: fontawesome/brands/github
74
link: https://github.com/giswqs
75
- icon: fontawesome/brands/medium
76
link: https://medium.com/@giswqs
77
- icon: fontawesome/brands/twitter
78
link: https://twitter.com/giswqs
79
- icon: fontawesome/brands/linkedin
80
link: https://www.linkedin.com/in/giswqs
81
- icon: fontawesome/brands/youtube
82
link: https://youtube.com/@giswqs
83
analytics:
84
provider: google
85
property: G-H322CB6ZEC
86
87
nav:
88
- Home: index.md
89
# - Search: search_bk.md
90
- Book: https://book.geemap.org
91
- Installation: installation.md
92
- Get Started: get-started.md
93
- Usage: usage.md
94
- Cheat Sheet: cheatsheet.md
95
- Tutorials: tutorials.md
96
- Courses: https://courses.geemap.org
97
- Contributing: contributing.md
98
- Citations: citations.md
99
- FAQ: faq.md
100
- Changelog: changelog.md
101
- YouTube Channel: https://youtube.com/@giswqs
102
- Report Issues: https://github.com/gee-community/geemap/issues
103
- API Reference:
104
- ai module: ai.md
105
- basemaps module: basemaps.md
106
- cartoee module: cartoee.md
107
- chart module: chart.md
108
- colormaps module: colormaps.md
109
- common module: common.md
110
- conversion module: conversion.md
111
- core module: core.md
112
- coreutils module: coreutils.md
113
- datasets module: datasets.md
114
- deck module: deck.md
115
- ee_tile_layers module: ee_tile_layers.md
116
- examples module: examples.md
117
- foliumap module: foliumap.md
118
- geemap module: geemap.md
119
- kepler module: kepler.md
120
- legends module: legends.md
121
- map_widgets module: map_widgets.md
122
- maplibregl module: maplibregl.md
123
- ml module: ml.md
124
- osm module: osm.md
125
- plot module: plot.md
126
- plotlymap module: plotlymap.md
127
- report module: report.md
128
- timelapse module: timelapse.md
129
- toolbar module: toolbar.md
130
- Workshops:
131
- workshops/GeoPython_2021.ipynb
132
- workshops/GEE_Workshop_2021.ipynb
133
- workshops/SRM_Workshop_2022.ipynb
134
- workshops/Crop_Mapping_2022.ipynb
135
- workshops/Japan_2022.ipynb
136
- workshops/GEE_Workshop_2022_Part1.ipynb
137
- workshops/GEE_Workshop_2022_Part2.ipynb
138
- workshops/AmericaView_2023.ipynb
139
- workshops/SciPy_2023.ipynb
140
- workshops/City_Plus_2023.ipynb
141
- workshops/G4G_2023.ipynb
142
- workshops/NCSU_2023.ipynb
143
- workshops/AGU_2023.ipynb
144
- workshops/Alaska_2024_Part1.ipynb
145
- workshops/Alaska_2024_Part2.ipynb
146
- workshops/Alaska_2024_Part3.ipynb
147
- workshops/GEE_Workshop_2024.ipynb
148
- workshops/TNGIC_2024.ipynb
149
- workshops/IGIC_2024.ipynb
150
- workshops/SciPy_2024.ipynb
151
- workshops/SatMOC_2024.ipynb
152
- workshops/GeoAI_2024.ipynb
153
- workshops/Taiwan_2024.ipynb
154
- workshops/FOSS4GNA_2024.ipynb
155
- workshops/IPPN_2024.ipynb
156
- workshops/HGAC_2024.ipynb
157
- workshops/AGU_2024.ipynb
158
- workshops/GEE_Workshop_2025.ipynb
159
- workshops/CVPR_2025.ipynb
160
- Notebooks:
161
- notebooks/00_ee_auth_colab.ipynb
162
- notebooks/00_geemap_colab.ipynb
163
- notebooks/00_geemap_key_features.ipynb
164
- notebooks/01_geemap_intro.ipynb
165
- notebooks/02_using_basemaps.ipynb
166
- notebooks/03_inspector_tool.ipynb
167
- notebooks/04_split_panel_map.ipynb
168
- notebooks/05_drawing_tools.ipynb
169
- notebooks/06_marker_cluster.ipynb
170
- notebooks/07_geojson.ipynb
171
- notebooks/08_ee_js_to_ipynb.ipynb
172
- notebooks/09_plotting.ipynb
173
- notebooks/10_shapefiles.ipynb
174
- notebooks/11_export_image.ipynb
175
- notebooks/12_zonal_statistics.ipynb
176
- notebooks/13_zonal_statistics_by_group.ipynb
177
- notebooks/14_legends.ipynb
178
- notebooks/15_convert_js_to_py.ipynb
179
- notebooks/16_add_animated_text.ipynb
180
- notebooks/17_add_colorbar_to_gif.ipynb
181
- notebooks/18_create_landsat_timelapse.ipynb
182
- notebooks/19_search_places_and_datasets.ipynb
183
- notebooks/20_timeseries_inspector.ipynb
184
- notebooks/21_export_map_to_html_png.ipynb
185
- notebooks/22_import_scripts.ipynb
186
- notebooks/23_import_assets.ipynb
187
- notebooks/24_publish_maps.ipynb
188
- notebooks/25_load_rasters.ipynb
189
- notebooks/26_heroku.ipynb
190
- notebooks/27_timelapse_app.ipynb
191
- notebooks/28_voila.ipynb
192
- notebooks/29_pydeck.ipynb
193
- notebooks/30_image_props_stats.ipynb
194
- notebooks/31_unsupervised_classification.ipynb
195
- notebooks/32_supervised_classification.ipynb
196
- notebooks/33_accuracy_assessment.ipynb
197
- notebooks/34_extract_values.ipynb
198
- notebooks/35_geemap_colab.ipynb
199
- notebooks/36_quality_mosaic.ipynb
200
- notebooks/37_pydeck_3d.ipynb
201
- notebooks/38_cloud_geotiff.ipynb
202
- notebooks/39_timelapse.ipynb
203
- notebooks/40_ipywidgets.ipynb
204
- notebooks/41_water_app.ipynb
205
- notebooks/42_upload_data.ipynb
206
- notebooks/43_extract_values_to_points.ipynb
207
- notebooks/44_cog_stac.ipynb
208
- notebooks/45_cog_mosaic.ipynb
209
- notebooks/46_local_rf_training.ipynb
210
- notebooks/47_image_thumbnails.ipynb
211
- notebooks/48_folium_legend.ipynb
212
- notebooks/49_colorbar.ipynb
213
- notebooks/50_cartoee_quickstart.ipynb
214
- notebooks/51_cartoee_projections.ipynb
215
- notebooks/52_cartoee_gif.ipynb
216
- notebooks/53_layer_vis.ipynb
217
- notebooks/54_vector_vis.ipynb
218
- notebooks/55_raster_vis.ipynb
219
- notebooks/56_local_data.ipynb
220
- notebooks/57_cartoee_blend.ipynb
221
- notebooks/58_add_vector.ipynb
222
- notebooks/59_whitebox.ipynb
223
- notebooks/60_colormaps.ipynb
224
- notebooks/61_cartoee_scalebar.ipynb
225
- notebooks/62_time_slider.ipynb
226
- notebooks/63_charts.ipynb
227
- notebooks/64_data_catalog.ipynb
228
- notebooks/65_vector_styling.ipynb
229
- notebooks/66_cartoee_legend.ipynb
230
- notebooks/67_training_samples.ipynb
231
- notebooks/68_netcdf_to_ee.ipynb
232
- notebooks/69_cartoee_vector.ipynb
233
- notebooks/70_linked_maps.ipynb
234
- notebooks/71_timelapse.ipynb
235
- notebooks/72_time_slider_gui.ipynb
236
- notebooks/73_transect.ipynb
237
- notebooks/74_csv_to_points.ipynb
238
- notebooks/75_sankee.ipynb
239
- notebooks/76_osm_to_ee.ipynb
240
- notebooks/77_planet_imagery.ipynb
241
- notebooks/78_ts_inspector.ipynb
242
- notebooks/79_chart_histogram.ipynb
243
- notebooks/80_point_layer.ipynb
244
- notebooks/81_goes_timelapse.ipynb
245
- notebooks/82_contours.ipynb
246
- notebooks/83_local_tile.ipynb
247
- notebooks/84_openstreetmap.ipynb
248
- notebooks/85_postgis.ipynb
249
- notebooks/86_image_overlay.ipynb
250
- notebooks/87_add_points_from_xy.ipynb
251
- notebooks/88_circle_markers.ipynb
252
- notebooks/89_add_labels.ipynb
253
- notebooks/90_naip_timelapse.ipynb
254
- notebooks/91_planetary_computer.ipynb
255
- notebooks/92_plotly.ipynb
256
- notebooks/93_cog_inspector.ipynb
257
- notebooks/94_heremap.ipynb
258
- notebooks/95_create_cog.ipynb
259
- notebooks/96_image_chips.ipynb
260
- notebooks/97_join_table.ipynb
261
- notebooks/98_timelapse_fading.ipynb
262
- notebooks/99_landsat_9.ipynb
263
- notebooks/100_numpy_to_cog.ipynb
264
- notebooks/101_lidar.ipynb
265
- notebooks/102_blend_hillshade.ipynb
266
- notebooks/103_split_control.ipynb
267
- notebooks/104_clip_image.ipynb
268
- notebooks/105_netcdf.ipynb
269
- notebooks/106_kepler_gl.ipynb
270
- notebooks/107_pydeck.ipynb
271
- notebooks/108_image_zonal_stats.ipynb
272
- notebooks/109_coordinate_grids.ipynb
273
- notebooks/110_choropleth.ipynb
274
- notebooks/111_image_count.ipynb
275
- notebooks/112_cartoee_basemap.ipynb
276
- notebooks/113_image_area.ipynb
277
- notebooks/114_dynamic_world.ipynb
278
- notebooks/115_land_cover.ipynb
279
- notebooks/116_land_cover_timeseries.ipynb
280
- notebooks/117_fishnet.ipynb
281
- notebooks/118_download_image.ipynb
282
- notebooks/119_plot_raster.ipynb
283
- notebooks/120_javascript.ipynb
284
- notebooks/121_vector_style.ipynb
285
- notebooks/122_lidar.ipynb
286
- notebooks/123_sentinel1_timelapse.ipynb
287
- notebooks/124_more_datasets.ipynb
288
- notebooks/125_example_code.ipynb
289
- notebooks/126_inspector.ipynb
290
- notebooks/127_create_legend.ipynb
291
- notebooks/128_add_widget.ipynb
292
- notebooks/129_vector_to_gif.ipynb
293
- notebooks/130_print_objects.ipynb
294
- notebooks/131_arcgis.ipynb
295
- notebooks/132_folium_colorbar.ipynb
296
- notebooks/133_gradio.ipynb
297
- notebooks/134_ee_to_geotiff.ipynb
298
- notebooks/135_segmentation.ipynb
299
- notebooks/136_download_parallel.ipynb
300
- notebooks/137_create_grid.ipynb
301
- notebooks/138_draw_control.ipynb
302
- notebooks/139_layer_to_image.ipynb
303
- notebooks/140_ee_to_xarray.ipynb
304
- notebooks/141_image_array_viz.ipynb
305
- notebooks/142_google_maps.ipynb
306
- notebooks/143_precipitation_timelapse.ipynb
307
- notebooks/144_chart_features.ipynb
308
- notebooks/145_chart_image.ipynb
309
- notebooks/146_chart_image_collection.ipynb
310
- notebooks/147_chart_array_list.ipynb
311
- notebooks/148_chart_data_table.ipynb
312
- notebooks/149_gemini.ipynb
313
- notebooks/150_maplibre.ipynb
314
- notebooks/151_dataset_explorer.ipynb
315
- notebooks/152_extract_timeseries_to_point.ipynb
316
# - miscellaneous:
317
# - notebooks/cartoee_colab.ipynb
318
# - notebooks/cartoee_colorbar.ipynb
319
# - notebooks/cartoee_projections.ipynb
320
# - notebooks/cartoee_quickstart.ipynb
321
# - notebooks/cartoee_scalebar.ipynb
322
# - notebooks/cartoee_subplots.ipynb
323
# - notebooks/file_browser.ipynb
324
# - notebooks/geemap_and_earthengine.ipynb
325
# - notebooks/geemap_and_folium.ipynb
326
# - notebooks/geemap_and_ipyleaflet.ipynb
327
# - notebooks/geemap_and_ipywidgets.ipynb
328
# - notebooks/geemap_colab.ipynb
329
# - notebooks/geemap_matplotlib.ipynb
330
# - notebooks/geopandas.ipynb
331
# - notebooks/image_overlay.ipynb
332
# - notebooks/ipyleaflet_draw_control.ipynb
333
# - notebooks/ipyleaflet_tutorials.ipynb
334
# - notebooks/ipywidgets_demo.ipynb
335
# - notebooks/kml_kmz.ipynb
336
# - notebooks/local_rf_training.ipynb
337
# - notebooks/mouse_click_coordinates.ipynb
338
# - notebooks/netcdf.ipynb
339
# - notebooks/numpy_to_ee.ipynb
340
# - notebooks/nlcd_app.ipynb
341
# - notebooks/nlcd_datapane.ipynb
342
# - notebooks/notebook_template.ipynb
343
# - notebooks/oil_palm_and_rubber_plantation.ipynb
344
# - notebooks/otsu.ipynb
345
# - notebooks/qgis_layer_style_file.ipynb
346
# - notebooks/random_sampling.ipynb
347
# - notebooks/river_width.ipynb
348
# - notebooks/select_features.ipynb
349
# - notebooks/select_features_old.ipynb
350
# - notebooks/sentinel1_timelapse.ipynb
351
# - notebooks/surface_water_mapping.ipynb
352
# - notebooks/template.ipynb
353
# - notebooks/tn_surface_water.ipynb
354
# - notebooks/us_census_data.ipynb
355
# - notebooks/usda_naip_imagery.ipynb
356
# - notebooks/velocity.ipynb
357
# - notebooks/video_overlay.ipynb
358
# - notebooks/water_app.ipynb
359
# - notebooks/world_pop_density.ipynb
360
361