henry2004y / Batsrus.jl

BATSRUS/SWMF Data Processor
https://henry2004y.github.io/Batsrus.jl/dev/
MIT License
5 stars 2 forks source link

Batsrus.jl

Build Status License: MIT DOI

Fast BATSRUS/SWMF data loading, conversion, and visualization using Julia, successor of VisAnaMatlab.

This package provides the following functionalities:

For more details, please check the document.

Prerequisites

Installation

using Pkg
Pkg.add("Batsrus")

Usage

Please refer to the manual.

Using from Python

In Python, you can easily take advantage of this package with the aid of JuliaCall or PyJulia.

With JuliaCall:

from juliacall import Main as jl
jl.seval("using Batsrus")
file = 'test/example.out'
data = Batsrus.load(file)

With PyJulia:

from julia import Batsrus
file = 'test/example.out'
data = Batsrus.load(file)

Benchmark

See the benchmark in the document.

Author