• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSES/H12-Aug-2021-384299

eg/H12-Aug-2021-668267

inc/My/Module/H12-Aug-2021-1,527648

lib/Astro/SIMBAD/H12-Aug-2021-1,888882

script/H12-Aug-2021-432181

t/H12-Aug-2021-940660

xt/author/H12-Aug-2021-669476

Build.PLH A D12-Aug-20212.4 KiB10781

ChangesH A D12-Aug-202111.4 KiB335235

MANIFESTH A D12-Aug-2021860 5049

META.jsonH A D12-Aug-20212.2 KiB8584

META.ymlH A D12-Aug-20211.3 KiB5352

Makefile.PLH A D12-Aug-20214.1 KiB161125

READMEH A D12-Aug-20212.7 KiB7756

README

1Astro-SIMBAD-Client is Copyright (C) 2005-2021 by Thomas R. Wyant, III
2
3DESCRIPTION
4
5This module provides an object-oriented interface to SIMBAD 4. The new
6SOAP queries are supported, with the object carrying default output type
7and output format, as well as server name on the assumption that mirrors
8will be forthcoming.
9
10There are also methods to submit scripts, both verbatim and from files,
11and to execute the 'url queries'.
12
13Both queries and scripts have hooks for parsing the output. A couple
14parse routines are included, as well as formats to produce output
15parsable by the parse routines. The contents of the eg directory provide
16examples of the use of both. But the primary focus of this package is
17data acquisition, not parsing or presentation.
18
19Also included is 'simbadc', a simple script for using the class
20interactively. The 'simbadc' script can also be used as a Unix filter,
21that is, you can redirect commands into it from a file, or pipe them
22in from another program.
23
24INSTALLATION
25
26Most Perl users will want to install using their favorite of either
27'cpan' or 'cpanp'. For either of these, installing Astro::Coord::ECI
28gets you everything. ActivePerl users will want to use ActiveState's
29'ppi', and install Astro-satpass.
30
31If for some reason neither of these works for you, you can download the
32distribution and expand it using something like
33
34    tar -xzf Astro-SIMBAD-Client-9.999.tar.gz
35
36Users of MSWin32 (and perhaps other operating systems) may need to
37convert the line endings in the expanded files from Unix to their native
38system before proceeding.
39
40Then, issue one of the following two incantations:
41
42    perl Makefile.PL
43    make
44    make test
45    sudo make install
46
47or
48
49    perl Build.PL
50    ./Build
51    ./Build test
52    sudo ./Build install
53
54You should substitute the appropriate program name for 'make', eg nmake
55(typically) under MSWin32, or mms or mmk under VMS. See
56ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe for a copy of
57nmake for MSWin32 if you need it.
58
59Unix users may want to use 'su' rather than 'sudo' for the install.
60Non-unix users may need to be logged in to an administrative or
61otherwise privileged accout, and turn on privileges (if applicable) for
62the install.
63
64Of course, since it's pure Perl, you can just expand the kit and drop
65the .pm files into the Astro/Coord/ECI directory (creating it if
66necessary) in the appropriate place in your @INC directories.
67
68LICENSING INFORMATION
69
70This package is free software; you can redistribute it and/or modify it
71under the same terms as Perl 5.10.0. For more details, see the full text
72of the licenses in the directory LICENSES.
73
74This program is distributed in the hope that it will be useful, but
75without any warranty; without even the implied warranty of
76merchantability or fitness for a particular purpose.
77