Skip to content

Releases: btobers/RAGU

cmap parameter added to configuration file

13 Jul 01:33
Compare
Choose a tag to compare

Added user-defined cmap option to configuration file.

Note, the config.ini file is initialized the first time ragu is run on a computer, so if you've previously run ragu, you'll need to do one of three things to implement this change:

  1. add the following two lines directly under the 'param' key
# str cmap: Matplotlib colormap to use (default = seismic)
cmap  = 
  1. Regenerate your config file
import os
from ragu import config
# get configuration file
basedir = os.path.join(os.path.expanduser('~'),'RAGU')
config.create_config(basedir+'/config.ini')
  1. Remove your existing configuration file, and then a new one will be generated upon running ragu

Several small changes since last release

10 Jun 20:19
1df2107
Compare
Choose a tag to compare

Release incorporates all changes from ragu-0.1.27->ragu-0.1.40

RAGU is pypi installable

21 Nov 20:25
Compare
Choose a tag to compare

Several changes since last release.

  1. RAGU has been slightly been restructured so that it can be installed via pypi
    $ pip install ragu
  2. All pyproj coordinate transformations updated to pyproj2 format

RIMFAX ingester added

06 Jun 16:49
Compare
Choose a tag to compare

RAGU can now ingest RIMFAX data from the MARS 2020 rover - however PDS datafiles must be first parsed into separate files for the shallow, surface, and deep modes. Example code below and included in ingest/ingest_rimfax.py:

#  data files should first be split up into separate files for each mode of active sounding - use the following commented code to do this:
mode=[26,78,214]
name=['shallow','surface','deep']
for fn in glob.glob('rimfax*.csv'):
  f = pd.read_csv(fn, header=0)
  for m,n in zip(mode,name):
    f_ = f.loc[(f["record_type"]==0) & (f["config_id"]==m)]
    f_.to_csv(fn[:-4]+'_'+n+'.csv')

MARSIS PDS ingester

28 Feb 20:19
Compare
Choose a tag to compare

Multiple updates since last release.

v2.2

17 Mar 23:16
8b7c4fd
Compare
Choose a tag to compare
Update README.md

Multiple changes since last release

31 Jan 20:16
Compare
Choose a tag to compare

Since last release there have been multiple changes, including:

  • Notepad UI for entering per-file notes
  • RAGU project files
  • Lots of bug fixes
  • And more

v2.0

25 Feb 21:34
Compare
Choose a tag to compare

Overhauled to allow user to interpret multiple horizons.

v1.6

14 Jan 04:25
007d906
Compare
Choose a tag to compare
Update ragu_env.yml

output figure fontsize setting, figure clip, sim output

22 Dec 17:18
Compare
Choose a tag to compare