Skip to content

Commit

Permalink
Merge branch 'main' of github.com:dstndstn/astrometry.net
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin Lang committed Nov 2, 2024
2 parents 828235c + 8c6ff4b commit fb1342a
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 10 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ solver: config util catalogs libkd qfits-an

plot: config util catalogs libkd qfits-an

cfitsio-utils:
$(MAKE) -C solver cfitsutils

$(SUBDIRS):
$(MAKE) -C $@
$(SUBDIRS_OPT):
Expand Down Expand Up @@ -188,6 +191,9 @@ install-core:
done
.PHONY: install install-core

install-cfitsio-utils:
$(MAKE) -C solver install-cfitsutils

ifeq ($(SYSTEM_GSL),yes)
install-gsl:
else
Expand Down
12 changes: 12 additions & 0 deletions doc/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,18 @@ or::

$ make install INSTALL_DIR=/your/install/directory PYTHON_SCRIPT="/usr/local/bin/python3.6"'

Astrometry.net code includes some useful utilities copied from Cfitsio for working with fits files
(fitscopy, fitsverify, imcopy). These utilities are not built and installed by default, as in modern linux
distributions are usually provided by appropriate packages (for example `libcfitsio-bin` for Ubuntu/Debian,
`cfitsio-utils` for Fedora, `fitsverify` for both).
However, If you'd like to build and install them from the astrometry copies, run:

$ make cfitsio-utils

and:

$ make install-cfitsio-utils


Auto-config
-----------
Expand Down
7 changes: 5 additions & 2 deletions net/templates/footer.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<p id="supported_by">
This project is partially supported by the US National Science Foundation,
the US National Aeronautics and Space Administration, and the Canadian
National Science and Engineering Research Council. None of the views
expressed on this site represent those of the funding agencies.
National Science and Engineering Research Council.
<br/>
The Nova.astrometry.net web service is hosted by the Canadian Advanced Network For Astronomical Research operated by the Canadian Astronomy Data Center, part of the National Research Council of Canada.
<br/>
None of the views expressed on this site represent those of the funding agencies.
</p>
35 changes: 27 additions & 8 deletions solver/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,13 @@ ALL_WCSLIB_TARGETS :=
# echo CFITS_INC: $(CFITS_INC)
# echo ZLIB_INC: $(ZLIB_INC)

CFITS_UTILS := tablist modhead fitscopy tabmerge liststruc \
listhead imcopy imarith imstat
CFITS_UTILS := fitscopy imcopy
# fitstomatlab

FITS_UTILS := $(CFITS_UTILS)
# The following are not usually distributed through cfitsio packaged in
# major linux distributions
FITS_UTILS := tablist modhead tabmerge liststruc listhead \
imarith imstat

MISC_EXECS := project-usnob diffractionFlag_check hpgrid resort-xylist

Expand Down Expand Up @@ -142,9 +144,11 @@ OLDEXECS_OBJS := catalog.o verify.o $(UTIL_OBJS)

PIPELINE_MAIN_OBJ := $(addsuffix .o,$(PIPELINE))
PROSPECTUS_MAIN_OBJ := $(addsuffix .o,$(PROSPECTUS))
CFITS_UTILS_MAIN_OBJ := $(addsuffix .o,$(CFITS_UTILS))
FITS_UTILS_MAIN_OBJ := $(addsuffix .o,$(FITS_UTILS))

INSTALL_EXECS := $(FITS_UTILS) fitsverify $(PIPELINE) $(PROGS)
INSTALL_EXECS := $(PIPELINE) $(PROGS) $(FITS_UTILS)
INSTALL_CFITSUTILS := $(CFITS_UTILS) fitsverify

INSTALL_H := allquads.h augment-xylist.h axyfile.h \
engine.h onefield.h solverutils.h build-index.h catalog.h \
Expand All @@ -156,13 +160,13 @@ INSTALL_H := allquads.h augment-xylist.h axyfile.h \
tweak2.h

ALL_OBJ := $(UTIL_OBJS) $(KDTREE_OBJS) $(QFITS_OBJ) \
$(PIPELINE_MAIN_OBJ) $(PROSPECTUS_MAIN_OBJ) $(FITS_UTILS_MAIN_OBJ) \
$(OTHER_OBJS)
$(PIPELINE_MAIN_OBJ) $(PROSPECTUS_MAIN_OBJ) $(CFITS_UTILS_MAIN_OBJ) \
$(FITS_UTILS_MAIN_OBJ) $(OTHER_OBJS)
ALL_EXECS :=

all: $(QFITS_SLIB) $(LIBKD_LIB_FILE) \
$(ANUTILS_LIB_FILE) $(ANFILES_LIB_FILE) \
$(PROGS) $(PIPELINE) $(FITS_UTILS) fitsverify \
$(FITS_UTILS) $(PROGS) $(PIPELINE) \
$(ENGINE_LIB) $(ENGINE_SO) augment-xylist

$(MAIN_PROGS): %: %-main.o $(SLIB)
Expand All @@ -177,6 +181,9 @@ pipeline: $(PIPELINE)
.PHONY: prospectus_progs
prospectus_progs: $(PROSPECTUS)

.PHONY: cfitsutils
cfitsutils: $(CFITS_UTILS) fitsverify

.PHONY: fitsutils
fitsutils: $(FITS_UTILS)

Expand Down Expand Up @@ -220,6 +227,15 @@ install: $(INSTALL_EXECS) $(INSTALL_LIB)
ln -f -s '$(LINK_DIR)/'$$x '$(BIN_INSTALL_DIR)/'$$x; \
done


install-cfitsutils: $(CFITS_UTILS)
@echo Installing in directory '$(INSTALL_DIR)'
$(MKDIR) '$(INSTALL_DIR)/bin'
@for x in $(CFITS_UTILS); do \
echo $(CP) $$x '$(INSTALL_DIR)/bin'; \
$(CP) $$x '$(INSTALL_DIR)/bin'; \
done

test-solver: test-solver.o solver_test.o $(SLIB)
test-solver-2: test-solver-2.o solver_test_2.o $(SLIB)

Expand Down Expand Up @@ -297,6 +313,9 @@ hpgrid: hpgrid.o $(SLIB)
$(CFITS_UTILS) :: %: %.o $(CFITS_SLIB)
$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $^ $(CFITS_LIB) $(LDLIBS)

$(FITS_UTILS) :: %: %.o $(CFITS_SLIB)
$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $^ $(CFITS_LIB) $(LDLIBS)

fitsverify: ftverify.c fvrf_data.c fvrf_file.c fvrf_head.c fvrf_key.c fvrf_misc.c $(CFITS_SLIB)
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -DSTANDALONE -trigraphs $(CFITS_INC) -o $@ $^ $(CFITS_LIB) -lm

Expand Down Expand Up @@ -367,7 +386,7 @@ include $(COMMON)/makefile.deps

clean:
rm -f $(EXECS) $(EXTRA_EXECS) $(SOLVER_EXECS) $(MISC_EXECS) $(PROGS) \
$(PIPELINE) $(PROSPECTUS) $(DEPS) $(FITS_UTILS) $(ALL_OBJ) \
$(PIPELINE) $(PROSPECTUS) $(DEPS) $(CFITS_UTILS) $(ALL_OBJ) \
$(NODEP_OBJS) fitsverify \
$(ALL_EXECS) $(GENERATED_FILES) $(ALL_TESTS_CLEAN) \
$(ENGINE_LIB) $(ENGINE_SO) \
Expand Down

0 comments on commit fb1342a

Please sign in to comment.