├── .gitignore ├── .gitmodules ├── .rtd-environment.yml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── ah_bootstrap.py ├── docs ├── Makefile ├── _templates │ └── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst ├── conf.py ├── index.rst └── make.bat ├── examples ├── README.txt ├── define_and_run_trivial_analytical_model.py ├── define_and_run_trivial_preprocessor_and_extrapolator.py ├── gaussian_example_data.py ├── potential_extrapolation_of_example_data.py ├── potential_extrapolation_of_hmi_data.py ├── potential_extrapolation_of_hmi_fits_file.py ├── potential_extrapolation_of_images.py └── potential_extrapolation_performance_tests.py ├── ez_setup.py ├── licenses ├── LICENSE.rst └── README.rst ├── pytest.ini ├── readthedocs.yml ├── setup.cfg ├── setup.py └── solarbextrapolation ├── __init__.py ├── _astropy_init.py ├── analyticalmodels ├── __init__.py ├── base.py └── titov_demoulin_equilibrium.py ├── conftest.py ├── data ├── __init__.py ├── _sample.py └── sample.py ├── example_data_generator.py ├── extrapolators ├── __init__.py ├── base.py ├── potential_field_extrapolator.py ├── potential_field_extrapolator_numba.py └── potential_field_extrapolator_python.py ├── map3dclasses.py ├── mayavi_seed_streamlines.py ├── preprocessors ├── __init__.py └── base.py ├── temp_gradient.py ├── tests ├── __init__.py ├── coveragerc ├── setup_package.py └── test_scripts.py ├── utilities.py └── visualisation_functions.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rtd-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/.rtd-environment.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/README.md -------------------------------------------------------------------------------- /ah_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/ah_bootstrap.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/docs/_templates/autosummary/base.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/docs/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/define_and_run_trivial_analytical_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/define_and_run_trivial_analytical_model.py -------------------------------------------------------------------------------- /examples/define_and_run_trivial_preprocessor_and_extrapolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/define_and_run_trivial_preprocessor_and_extrapolator.py -------------------------------------------------------------------------------- /examples/gaussian_example_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/gaussian_example_data.py -------------------------------------------------------------------------------- /examples/potential_extrapolation_of_example_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/potential_extrapolation_of_example_data.py -------------------------------------------------------------------------------- /examples/potential_extrapolation_of_hmi_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/potential_extrapolation_of_hmi_data.py -------------------------------------------------------------------------------- /examples/potential_extrapolation_of_hmi_fits_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/potential_extrapolation_of_hmi_fits_file.py -------------------------------------------------------------------------------- /examples/potential_extrapolation_of_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/potential_extrapolation_of_images.py -------------------------------------------------------------------------------- /examples/potential_extrapolation_performance_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/examples/potential_extrapolation_performance_tests.py -------------------------------------------------------------------------------- /ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/ez_setup.py -------------------------------------------------------------------------------- /licenses/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/licenses/LICENSE.rst -------------------------------------------------------------------------------- /licenses/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/licenses/README.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/pytest.ini -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/setup.py -------------------------------------------------------------------------------- /solarbextrapolation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/__init__.py -------------------------------------------------------------------------------- /solarbextrapolation/_astropy_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/_astropy_init.py -------------------------------------------------------------------------------- /solarbextrapolation/analyticalmodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/analyticalmodels/__init__.py -------------------------------------------------------------------------------- /solarbextrapolation/analyticalmodels/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/analyticalmodels/base.py -------------------------------------------------------------------------------- /solarbextrapolation/analyticalmodels/titov_demoulin_equilibrium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/analyticalmodels/titov_demoulin_equilibrium.py -------------------------------------------------------------------------------- /solarbextrapolation/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/conftest.py -------------------------------------------------------------------------------- /solarbextrapolation/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/data/__init__.py -------------------------------------------------------------------------------- /solarbextrapolation/data/_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/data/_sample.py -------------------------------------------------------------------------------- /solarbextrapolation/data/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/data/sample.py -------------------------------------------------------------------------------- /solarbextrapolation/example_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/example_data_generator.py -------------------------------------------------------------------------------- /solarbextrapolation/extrapolators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/extrapolators/__init__.py -------------------------------------------------------------------------------- /solarbextrapolation/extrapolators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/extrapolators/base.py -------------------------------------------------------------------------------- /solarbextrapolation/extrapolators/potential_field_extrapolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/extrapolators/potential_field_extrapolator.py -------------------------------------------------------------------------------- /solarbextrapolation/extrapolators/potential_field_extrapolator_numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/extrapolators/potential_field_extrapolator_numba.py -------------------------------------------------------------------------------- /solarbextrapolation/extrapolators/potential_field_extrapolator_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/extrapolators/potential_field_extrapolator_python.py -------------------------------------------------------------------------------- /solarbextrapolation/map3dclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/map3dclasses.py -------------------------------------------------------------------------------- /solarbextrapolation/mayavi_seed_streamlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/mayavi_seed_streamlines.py -------------------------------------------------------------------------------- /solarbextrapolation/preprocessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/preprocessors/__init__.py -------------------------------------------------------------------------------- /solarbextrapolation/preprocessors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/preprocessors/base.py -------------------------------------------------------------------------------- /solarbextrapolation/temp_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/temp_gradient.py -------------------------------------------------------------------------------- /solarbextrapolation/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/tests/__init__.py -------------------------------------------------------------------------------- /solarbextrapolation/tests/coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/tests/coveragerc -------------------------------------------------------------------------------- /solarbextrapolation/tests/setup_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/tests/setup_package.py -------------------------------------------------------------------------------- /solarbextrapolation/tests/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/tests/test_scripts.py -------------------------------------------------------------------------------- /solarbextrapolation/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/utilities.py -------------------------------------------------------------------------------- /solarbextrapolation/visualisation_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunpy/solarbextrapolation/HEAD/solarbextrapolation/visualisation_functions.py --------------------------------------------------------------------------------