-/*============================================================================
+1/*============================================================================
WCSLIB 4.23 - an implementation of the FITS WCS standard.
Copyright (C) 1995-2014, Mark Calabretta
int wcssub(int alloc, const struct wcsprm *wcssrc, int *nsub, int axes[],
struct wcsprm *wcsdst);
-int wcscompare(int cmp, const struct wcsprm *wcs1, const struct wcsprm *wcs2,
+int wcscompare(int cmp, double tol, const struct wcsprm *wcs1, const struct wcsprm *wcs2,
int *equal);
int wcsfree(struct wcsprm *wcs);
wcsprm_python2c(&self->x);
wcsprm_python2c(&other->x);
- status = wcscompare(cmp, &self->x, &other->x, &equal);
+ status = wcscompare(cmp, 0.0, &self->x, &other->x, &equal);
wcsprm_c2python(&self->x);
wcsprm_c2python(&other->x);
wcsprm_python2c(bx);
status = wcscompare(
WCSCOMPARE_ANCILLARY,
+ 0.0,
ax, bx, &equal);
wcsprm_c2python(ax);
wcsprm_c2python(bx);