Skip to content
Snippets Groups Projects
jupytext:
  text_representation:
    extension: .md
    format_name: myst
kernelspec:
  display_name: Python 3
  language: python
  name: python3

First map with MUYSC

In MUYSC, we utilize decimal coordinates to accurately locate objects, and for enhanced precision in studying specific zones, we recommend using Google Earth.

Earth

The initial step involves creating a polygon surrounding the object of interest. Subsequently, place two points along a diagonal of the polygon, and input the obtained geographic coordinates into the MUYSC format. This will result in a quadrilateral representing the study area.

:::{note} If you put the coordinates in other format it will show a different zone than the desired. :::

Running this code you will visualize the structure of Cerro Machín:

:::{code-cell}

CERRO MACHÍN ESTRUCTURA

regionPoints = [4.466944, 4.500833, -75.404720, -75.372694, "CERRO MACHÍN"] a = MuyscImprove.Mute(regionPoints,80,srtm1_data, "Greens") a.elevation() a.plot_structure() :::

The following illustrates an example of how MUYSC can display the geological structure:

Machin

Now let's see other part in the world

:tags: [output_scroll]
# MONTE FUJI 
regionPoints = [35.398710, 35.327432, 138.799493, 138.683672, "MONTE FUJI"]
a = MuyscImprove.Mute(regionPoints,80,srtm1_data, "Greens")
a.elevation()
a.plot_structure()

The following illustrates an example of how MUYSC can display the geological structure:

Machin