You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lot of Earth Science and some Planetary Science datasets are now accessed primarily via Jupyter notebooks. There's no direct way to transfer results from Jupyter notebooks (e.g. from a query or analysis) into MMGIS for broader sharing with a research team or expose that data to other MMGIS tools (e.g. Identify or Measure tool).
Describe the feature request
Create an MMGIS Python module that works within a Jupyter notebook and can share data with an MMGIS instance or grab layers from an MMGIS instance.
from ipyleaflet import Map, basemaps, basemap_to_tiles
import mmgis
map = mmgis.login(uuid)
m = Map(mmgis.map2D(map))
# or
baselayer=mmgis.layer(map,"HiRISE basemap")
center=mmgis.map2D.center
zlevel=mmgis.map2D(map).initZ
m = Map(baselayer,center,zlevel)
m
The text was updated successfully, but these errors were encountered:
Checked for duplicates
Yes - I've already checked
Alternatives considered
Yes - and alternatives don't suffice
Related problems
A lot of Earth Science and some Planetary Science datasets are now accessed primarily via Jupyter notebooks. There's no direct way to transfer results from Jupyter notebooks (e.g. from a query or analysis) into MMGIS for broader sharing with a research team or expose that data to other MMGIS tools (e.g. Identify or Measure tool).
Describe the feature request
Create an MMGIS Python module that works within a Jupyter notebook and can share data with an MMGIS instance or grab layers from an MMGIS instance.
Notebook to MMGIS pseudocode:
MMGIS data to Notebook pseudocode:
The text was updated successfully, but these errors were encountered: