Gmatch

Software Screenshot:
Gmatch
Software Details:
Version: 0.1.0
Upload Date: 14 Apr 15
Developer: Sergio Pascual
Distribution Type: Freeware
Downloads: 76

Rating: 1.0/5 (Total Votes: 1)

Gmatch is a tool for matching catalogues using Groth method.

Sample usage

 >>> from gmatch import gmatch
 >>> # load cat1 and cat2 from somewhere
 >>> # they are numpy arrays
 >>> # N rows, 2 columns
 >>> cat1.shape
 (20, 2)
 >>> cat2.shape
 (20, 2)
 >>> matches = gmatch(cat1, cat2, eps=1e-3)
 >>> # eps is the *relative* tolerance in xy
 >>> matches
 None
 >>> # if the return value is None, the catalogues
 >>> # do not match

 >>> from gmatch import gmatch
 >>> # load cat1 and cat2 from somewhere
 >>> # they are numpy arrays
 >>> matches = gmatch(cat1, cat2, eps=1e-3)
 >>> # eps is the *relative* tolerance in xy
 >>> if matches:
 ... matches[0]
 ... matches[1]
 >>> # if the return value is not None
 >>> # then is a tuple
 >>> # first element matched objects in cat1
 >>> # second element matched objects in cat2

Requirements:

  • Python

Similar Software

Stellarium
Stellarium

17 Aug 18

INDI
INDI

27 Sep 15

de421
de421

14 Apr 15

Other Software of Developer Sergio Pascual

Numina
Numina

20 Feb 15

Comments to Gmatch

Comments not found
Add Comment
Turn on images!