Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simulation tutorials cleanup #876

Merged
merged 23 commits into from May 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
71fb411
Remove obvious redundant examples. Move basic inversion to linear exa…
dccowan May 15, 2020
661367e
Move linear inversion to tutorials. Add IRLS gravity example.
dccowan May 18, 2020
1eaea05
Restructure tutorials
dccowan May 20, 2020
6555ed4
Refactor examples
dccowan May 21, 2020
7630625
Create IRLS DCR 2.5D inversion tutorial. Create archive folder for ex…
dccowan May 21, 2020
423dbf0
Update FDEM dipole source wholespace analytics and make tutorial
dccowan May 21, 2020
9462e98
Add dipole whole space solutions for dipoles and create analytic tuto…
dccowan May 21, 2020
6c8348b
Add 2D seismic tomography tutorial
dccowan May 22, 2020
0ec3124
Merge branch 'simulation' into simulation_examples_cleanup
jcapriot May 22, 2020
c9997d6
move these into the tutorials index
jcapriot May 22, 2020
8f78e2a
remove purnong data
jcapriot May 22, 2020
4c3238f
remove downloaded data
jcapriot May 22, 2020
3c9082f
Not testing if something == True.
jcapriot May 22, 2020
c65d541
switching ComboMaps to construct via multiplication
jcapriot May 22, 2020
76cff31
removing this for now
jcapriot May 22, 2020
e6d272e
a bit of reorganization of examples and tutorials
jcapriot May 25, 2020
61804b9
add Maps gallery examples back in
jcapriot May 25, 2020
4290465
link updates
jcapriot May 25, 2020
dc491da
small readme update
jcapriot May 25, 2020
db2e6c5
update for doc testing
jcapriot May 25, 2020
ea438af
swithc to default B, but also allow H.
jcapriot May 25, 2020
8f67349
fix for some doc warnings.
jcapriot May 25, 2020
89ad75a
add reference to the PR
jcapriot May 26, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 11 additions & 11 deletions .gitignore
Expand Up @@ -44,20 +44,20 @@ docs/_build/
docs/warnings.txt
.DS_Store
docs/content/examples/*
docs/content/tutorials/basic_inversions/*
docs/content/tutorials/forward_simulations/*
docs/content/tutorials/models_mapping/*
docs/content/tutorials/*
docs/modules/*

# paths to where data are downloaded
examples/00_published/bookpurnong_inversion/*
examples/00_published/._bookpurnong_inversion
examples/00_published/*.tar.gz
examples/00_published/*.png
tutorials/basic_inversions/1_gravity/gravity/*
tutorials/basic_inversions/2_magnetics/magnetics/*
tutorials/basic_inversions/3_dcip/dcip1d/*
tutorials/basic_inversions/3_dcip/dcip2d/*
examples/20-published/bookpurnong_inversion/*
examples/20-published/._bookpurnong_inversion
examples/20-published/*.tar.gz
examples/20-published/*.png
tutorials/03-gravity/gravity/*
tutorials/04-magnetics/magnetics/*
tutorials/05-dcr/dcip1d/*
tutorials/05-dcr/dcip2d/*
tutorials/06-ip/dcip2d/*
tutorials/12-seismic/seismic/*

# jupyter
*.ipynb
Expand Down
13 changes: 4 additions & 9 deletions .travis.yml
Expand Up @@ -20,7 +20,7 @@ env:
- PYPI_PY=3.6 # deploy to pypi from python 3.6

matrix:
- TEST_DIR=tests/docs;
- TEST_DIR=tests/docs
- TEST_DIR=tests/em/fdem/inverse/derivs
- TEST_DIR=tests/em/tdem
- TEST_DIR="tests/em/static tests/seis tests/base tests/utils"
Expand Down Expand Up @@ -59,16 +59,11 @@ install:
tar -xzf credentials.tar.gz ;
gcloud auth activate-service-account --key-file credentials/client-secret-docs.json ;
gsutil cp gs://simpeg/simulation/${TRAVIS_PYTHON_VERSION}/examples.tar.gz $PWD/docs/content ;
gsutil cp gs://simpeg/simulation/${TRAVIS_PYTHON_VERSION}/tut_basic_inversions.tar.gz $PWD/docs/content/tutorials ;
gsutil cp gs://simpeg/simulation/${TRAVIS_PYTHON_VERSION}/tut_forward_simulations.tar.gz $PWD/docs/content/tutorials ;
gsutil cp gs://simpeg/simulation/${TRAVIS_PYTHON_VERSION}/tut_models_mapping.tar.gz $PWD/docs/content/tutorials ;
gsutil cp gs://simpeg/simulation/${TRAVIS_PYTHON_VERSION}/tutorials.tar.gz $PWD/docs/content ;
cd docs/content ;
tar -xzf examples.tar.gz examples;
cd tutorials;
tar -xzf tut_basic_inversions.tar.gz basic_inversions;
tar -xzf tut_forward_simulations.tar.gz forward_simulations;
tar -xzf tut_models_mapping.tar.gz models_mapping;
cd ../../../ ;
tar -xzf tutorials.tar.gz tutorials;
cd ../../ ;
fi

# Run test
Expand Down
10 changes: 5 additions & 5 deletions README.rst
Expand Up @@ -2,7 +2,7 @@
:alt: SimPEG Logo

SimPEG
======
******

.. image:: https://img.shields.io/pypi/v/SimPEG.svg
:target: https://pypi.python.org/pypi/SimPEG
Expand Down Expand Up @@ -51,7 +51,7 @@ You are welcome to join forum and engage with people who use and develop SimPEG
Weekly meetings are open to all. They are generally held on Tuesdays at 10:30am PDT. Please see the calendar (`GCAL <https://calendar.google.com/calendar/b/0?cid=ZHVhamYzMWlibThycWdkZXM5NTdoYXV2MnNAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ>`_, `ICAL <https://calendar.google.com/calendar/ical/duajf31ibm8rqgdes957hauv2s%40group.calendar.google.com/public/basic.ics>`_) for information on the next meeting.

Overview Video
--------------
==============

.. image:: https://img.youtube.com/vi/yUm01YsS9hQ/0.jpg
:target: https://www.youtube.com/watch?v=yUm01YsS9hQ
Expand All @@ -61,7 +61,7 @@ Working towards all the Geophysics, but Backwards - SciPy 2016


Citing SimPEG
-------------
=============

There is a paper about SimPEG!

Expand All @@ -81,7 +81,7 @@ There is a paper about SimPEG!
}

Electromagnetics
****************
----------------

If you are using the electromagnetics module of SimPEG, please cite:

Expand All @@ -106,7 +106,7 @@ If you are using the electromagnetics module of SimPEG, please cite:


Links
-----
=====

Website:
http://simpeg.xyz
Expand Down