Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 29 additions & 20 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,34 +1,43 @@
2018-03-09 Steve Morley <smorley@lanl.gov>
* Release: v1.5.16
2019-11-05 Mark Galassi <mark@galassi.org>

* tests: revised and expanded test suite, github repo set to use Travis
CI
* libLanlGeoMag/Makefile.am: took out again the Images/ directory
because it makes tarballs and RPMs too big (on the order of 300meg
instead of 50meg).

* Lgm_QinDenton: updated defaults, changed handling of missing data
files
* Makefile.am (EXTRA_DIST): re-added the Images directory that was
commented out. This is necessary for a "make install" from the
tarball to work.

* Lgm_Ellipsoid: added shapes, intersections, etc.
* lanlgeomag.spec.in: added some Requires and BuildRequires, and
took out the requirement for Perl since we configure with
--disable-perl. Also started using appropriate RPM macros.

* Tools: Command line utils for Magnetic Ephemeris files and Last
Closed Drift Shell calculation
* configure.ac: updated THE_PKG_RELEASE to 7; this affects the RPM
package release number.

* ViewDriftShell: Updates to improve portability and UI
* Doxyfile: added USE_MATHJAX, the compact latex option, and the
amsmath package, which is needed for the \text{'} that comes up
occasionally in the doxygen docs.

* ComputeLstar: Behavior in Shabansky orbits now set by flag in
LstarInfo struct
* Doc/LanlGeoMag.tag.in, configure.ac: the LanlGeoMag.tag file was
required for "make dist" but did not exist. I have added it,
built from a .in file so it can have a version number in it.
Modified configure.ac to generate Doc/LanlGeoMag.tag from
Doc/LanlGeoMag.tag.in

* Lgm_CTrans: Added JPL DE421 to obtain Sun vector (now have DE, high
accuracy and low accuracy)
2017-11-16 Mark Galassi <markgalassi@lanl.gov>

* TS07: TS07 magnetic field model fully enabled. Requires coefficient
files in same location/format as IRBEMlib.
* configure.ac: releasing version 1.5.16.

* Other: More changes since this file was last updated than can be
encapsulated here. OSS release and GitHub hosting means that commit
history is now publicly available.
* lanlgeomag.spec.in: added --disable-perl for building RPMs.

* libLanlGeoMag/Makefile.am (EXTRA_DIST): took the Images
directory out of this list because it makes the tarball
distribution too big.

2011-07-08 Mike Henderson <mghenderson@lanl.gov>
* configure.ac: added LGM_INDEX_DATA_DIR to locate where to find index data (e.g. Kp, Dst, AE).
* configure.ac: added LGM_INDEX_DATA_DIR to locate where to find
index data (e.g. Kp, Dst, AE).

2011-04-25 Mark Galassi <markgalassi@lanl.gov>
* configure.ac, lanlgeomag.spec.in: started maintaining a .spec.in
Expand Down
1 change: 1 addition & 0 deletions Doc/LanlGeoMag.tag.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@VERSION@
8 changes: 4 additions & 4 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ FORMULA_TRANSPARENT = YES
# output. When enabled you may also need to install MathJax separately and
# configure the path to it using the MATHJAX_RELPATH option.

USE_MATHJAX = NO
USE_MATHJAX = YES

# When MathJax is enabled you need to specify the location relative to the
# HTML output directory using the MATHJAX_RELPATH option. The destination
Expand Down Expand Up @@ -1290,7 +1290,7 @@ LATEX_OUTPUT = latex
# generating bitmaps for formulas in the HTML output, but not in the
# Makefile that is written to the output directory.

LATEX_CMD_NAME = latex
LATEX_CMD_NAME = pdflatex

# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
# generate index for LaTeX. If left blank `makeindex' will be used as the
Expand All @@ -1302,7 +1302,7 @@ MAKEINDEX_CMD_NAME = makeindex
# LaTeX documents. This may be useful for small projects and may help to
# save some trees in general.

COMPACT_LATEX = NO
COMPACT_LATEX = YES

# The PAPER_TYPE tag can be used to set the paper type that is used
# by the printer. Possible values are: a4, letter, legal and
Expand All @@ -1313,7 +1313,7 @@ PAPER_TYPE = $(PAPER_SIZE)
# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
# packages that should be included in the LaTeX output.

EXTRA_PACKAGES =
EXTRA_PACKAGES = amsmath

# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
# the generated latex document. The header should contain everything until
Expand Down
7 changes: 2 additions & 5 deletions Examples/CoordQuickStart/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@
HDF5FLAGS = `pkg-config hdf5 --cflags --libs 2>/dev/null`
LGMFLAGS = `pkg-config lgm --cflags --libs`

all : CoordQuickStart CoordTransTest compareGSE
all : CoordQuickStart CoordTransTest

CoordQuickStart: CoordQuickStart.c
gcc CoordQuickStart.c -Wall $(LGMFLAGS) $(HDF5FLAGS) -o CoordQuickStart

CoordTransTest: CoordTransTest.c
gcc CoordTransTest.c -Wall $(LGMFLAGS) $(HDF5FLAGS) -o CoordTransTest

compareGSE: compareGSE.c
gcc compareGSE.c -Wall $(LGMFLAGS) $(HDF5FLAGS) -o compareGSE

clean:
rm CoordQuickStart CoordTransTest compareGSE
rm CoordQuickStart CoordTransTest
Loading