Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/earthinversion/geospatial-data-visualization-using-pygmt
Example script to visualize topographic data, earthquake data, and tomographic data on a map
https://github.com/earthinversion/geospatial-data-visualization-using-pygmt
data geophysics pygmt python3 seismology visualization
Last synced: 2 days ago
JSON representation
Example script to visualize topographic data, earthquake data, and tomographic data on a map
- Host: GitHub
- URL: https://github.com/earthinversion/geospatial-data-visualization-using-pygmt
- Owner: earthinversion
- Created: 2022-02-03T17:42:11.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-08T01:26:24.000Z (almost 3 years ago)
- Last Synced: 2024-01-27T03:08:42.843Z (12 months ago)
- Topics: data, geophysics, pygmt, python3, seismology, visualization
- Language: Jupyter Notebook
- Homepage:
- Size: 8.29 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Geospatial Data Visualization using PyGMT
This notebook has been created for the BSL talk on Feb 02, 2022 at McCone Hall, University of California, Berkeley## You can also open the notebooks in the Binder application online...
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/earthinversion/Geospatial-Data-Visualization-using-PyGMT/master)
## Install libraries
### Using python env
```
python -m venv geoviz
source geoviz/bin/activate
pip install pygmt
```- Try:
```
python -c "import pygmt"
```
if there's no `ImportError`, then you are good to go.__NOTE:__
If there's any pygmt import problem, install GMT separately and link the `libgmt.dylib` file to the file python is looking for!- One way to install GMT is `conda install gmt -c conda-forge`
```
ln -s ~/miniconda3/envs/boxgmt/lib/libgmt.dylib ~/miniconda3/envs/geoviz/lib/libgmt.dylib
```### Using conda env (recommended)
```
conda create --name geoviz --channel conda-forge pandas pygmt jupyter notebook
``````
conda env export > environment.yml
```