Ragu

Latest version: v0.1.33

Safety actively analyzes 624020 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 3

2.4

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')

2.3

Multiple updates since last release.

2.2

2.1

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

2.0

Overhauled to allow user to interpret multiple horizons.

1.6

Page 1 of 3

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.