File Coverage

palsrc/palObs.c
Criterion Covered Total %
statement 17 17 100.0
branch 8 8 100.0
condition n/a
subroutine n/a
pod n/a
total 25 25 100.0


line stmt bran cond sub pod time code
1             /*
2             *+
3             * Name:
4             * palObs
5              
6             * Purpose:
7             * Parameters of selected ground-based observing stations
8              
9             * Language:
10             * Starlink ANSI C
11              
12             * Type of Module:
13             * Library routine
14              
15             * Invocation:
16             * int palObs( size_t n, const char * c,
17             * char * ident, size_t identlen,
18             * char * name, size_t namelen,
19             * double * w, double * p, double * h );
20              
21             * Arguments:
22             * n = size_t (Given)
23             * Number specifying the observing station. If 0
24             * the identifier in "c" is used to determine the
25             * observing station to use.
26             * c = const char * (Given)
27             * Identifier specifying the observing station for
28             * which the parameters should be returned. Only used
29             * if n is 0. Can be NULL for n>0. Case insensitive.
30             * ident = char * (Returned)
31             * Identifier of the observing station selected. Will be
32             * identical to "c" if n==0. Unchanged if "n" or "c"
33             * do not match an observing station. Should be at least
34             * 11 characters (including the trailing nul).
35             * identlen = size_t (Given)
36             * Size of the buffer "ident" including trailing nul.
37             * name = char * (Returned)
38             * Full name of the specified observing station. Contains "?"
39             * if "n" or "c" did not correspond to a valid station. Should
40             * be at least 41 characters (including the trailing nul).
41             * w = double * (Returned)
42             * Longitude (radians, West +ve). Unchanged if observing
43             * station could not be identified.
44             * p = double * (Returned)
45             * Geodetic latitude (radians, North +ve). Unchanged if observing
46             * station could not be identified.
47             * h = double * (Returned)
48             * Height above sea level (metres). Unchanged if observing
49             * station could not be identified.
50              
51             * Returned Value:
52             * palObs = int
53             * 0 if an observing station was returned. -1 if no match was
54             * found.
55              
56             * Description:
57             * Station numbers, identifiers, names and other details are
58             * subject to change and should not be hardwired into
59             * application programs.
60             *
61             * All characters in "c" up to the first space are
62             * checked; thus an abbreviated ID will return the parameters
63             * for the first station in the list which matches the
64             * abbreviation supplied, and no station in the list will ever
65             * contain embedded spaces. "c" must not have leading spaces.
66             *
67             * IMPORTANT -- BEWARE OF THE LONGITUDE SIGN CONVENTION. The
68             * longitude returned by palOBS (and SLA_OBS) is west-positive in accordance
69             * with astronomical usage. However, this sign convention is
70             * left-handed and is the opposite of the one used by geographers;
71             * elsewhere in PAL the preferable east-positive convention is
72             * used. In particular, note that for use in palAop, palAoppa
73             * and palOap the sign of the longitude must be reversed.
74             *
75             * Users are urged to inform the author of any improvements
76             * they would like to see made. For example:
77             *
78             * typographical corrections
79             * more accurate parameters
80             * better station identifiers or names
81             * additional stations
82              
83              
84             * Authors:
85             * PTW: Patrick T. Wallace
86             * TIMJ: Tim Jenness (JAC, Hawaii)
87             * {enter_new_authors_here}
88              
89             * Notes:
90             * - Differs from the SLA interface in that the output short name
91             * is not the same variable as the input short name. This simplifies
92             * consting. Additionally the size of the output buffers are now
93             * specified in the API and a status integer is returned.
94              
95             * History:
96             * 2012-03-06 (TIMJ):
97             * Initial version containing entries from SLA/F as of 15 March 2002
98             * with a 2008 tweak to the JCMT GPS position.
99             * Adapted with permission from the Fortran SLALIB library.
100             * 2014-04-08 (TIMJ):
101             * Add APEX and NANTEN2
102             * {enter_further_changes_here}
103              
104             * Copyright:
105             * Copyright (C) 2002 Rutherford Appleton Laboratory
106             * Copyright (C) 2012 Science and Technology Facilities Council.
107             * Copyright (C) 2014 Cornell University.
108             * All Rights Reserved.
109              
110             * Licence:
111             * This program is free software; you can redistribute it and/or
112             * modify it under the terms of the GNU General Public License as
113             * published by the Free Software Foundation; either version 3 of
114             * the License, or (at your option) any later version.
115             *
116             * This program is distributed in the hope that it will be
117             * useful, but WITHOUT ANY WARRANTY; without even the implied
118             * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
119             * PURPOSE. See the GNU General Public License for more details.
120             *
121             * You should have received a copy of the GNU General Public License
122             * along with this program; if not, write to the Free Software
123             * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
124             * MA 02110-1301, USA.
125              
126             * Bugs:
127             * {note_any_bugs_here}
128             *-
129             */
130              
131             #if HAVE_CONFIG_H
132             # include
133             #endif
134              
135             #ifdef HAVE_BSD_STRING_H
136             #include
137             #endif
138              
139             #include
140              
141             /* We prefer to use the starutil package. */
142             #if HAVE_STAR_UTIL_H
143             #include "star/util.h"
144             #else
145             /* This version is just a straight copy without putting ellipsis on the end. */
146             static void star__strellcpy( char * dest, const char * src, size_t size ) {
147             # if HAVE_STRLCPY
148             strlcpy( dest, src, size );
149             # else
150             strncpy( dest, src, size );
151 2           dest[size-1] = '\0';
152             # endif
153             }
154              
155             #define star_strellcpy(dest, src, size) star__strellcpy(dest, src, size)
156             #endif
157              
158             #if HAVE__STRICMP || defined(_WIN32) || defined(_WIN64)
159             #define strcasecmp _stricmp
160             #endif
161              
162             #include "pal.h"
163             #include "palmac.h"
164              
165             /* Helper macros to convert degrees to radians in longitude and latitude */
166             #define WEST(ID,IAM,AS) PAL__DAS2R*((60.0*(60.0*(double)ID+(double)IAM))+(double)AS)
167             #define NORTH(ID,IAM,AS) WEST(ID,IAM,AS)
168             #define EAST(ID,IAM,AS) -1.0*WEST(ID,IAM,AS)
169             #define SOUTH(ID,IAM,AS) -1.0*WEST(ID,IAM,AS)
170              
171             struct telData {
172             double w;
173             double p;
174             double h;
175             char shortname[11];
176             char longname[41];
177             };
178              
179              
180 11           int palObs( size_t n, const char * c,
181             char * ident, size_t identlen,
182             char * name, size_t namelen,
183             double * w, double * p, double * h ) {
184 11           const struct telData telData[] = {
185             /* AAT (Observer's Guide) AAT */
186             {
187             EAST(149,3,57.91),
188             SOUTH(31,16,37.34),
189             1164E0,
190             "AAT",
191             "Anglo-Australian 3.9m Telescope"
192             },
193             /* WHT (Gemini, April 1987) LPO4.2 */
194             {
195             WEST(17,52,53.9),
196             NORTH(28,45,38.1),
197             2332E0,
198             "LPO4.2",
199             "William Herschel 4.2m Telescope"
200             },
201             /* INT (Gemini, April 1987) LPO2.5 */
202             {
203             WEST(17,52,39.5),
204             NORTH(28,45,43.2),
205             2336E0,
206             "LPO2.5",
207             "Isaac Newton 2.5m Telescope"
208             },
209             /* JKT (Gemini, April 1987) LPO1 */
210             {
211             WEST(17,52,41.2),
212             NORTH(28,45,39.9),
213             2364E0,
214             "LPO1",
215             "Jacobus Kapteyn 1m Telescope"
216             },
217             /* Lick 120" (S.L.Allen, private communication, 2002) LICK120 */
218             {
219             WEST(121,38,13.689),
220             NORTH(37,20,34.931),
221             1286E0,
222             "LICK120",
223             "Lick 120 inch"
224             },
225             /* MMT 6.5m conversion (MMT Observatory website) MMT */
226             {
227             WEST(110,53,4.4),
228             NORTH(31,41,19.6),
229             2608E0,
230             "MMT",
231             "MMT 6.5m, Mt Hopkins"
232             },
233             /* Victoria B.C. 1.85m (1984 Almanac) DAO72 */
234             {
235             WEST(123,25,1.18),
236             NORTH(48,31,11.9),
237             238E0,
238             "DAO72",
239             "DAO Victoria BC 1.85 metre"
240             },
241             /* Las Campanas (1983 Almanac) DUPONT */
242             {
243             WEST(70,42,9.),
244             SOUTH(29,0,11.),
245             2280E0,
246             "DUPONT",
247             "Du Pont 2.5m Telescope, Las Campanas"
248             },
249             /* Mt Hopkins 1.5m (1983 Almanac) MTHOP1.5 */
250             {
251             WEST(110,52,39.00),
252             NORTH(31,40,51.4),
253             2344E0,
254             "MTHOP1.5",
255             "Mt Hopkins 1.5 metre"
256             },
257             /* Mt Stromlo 74" (1983 Almanac) STROMLO74 */
258             {
259             EAST(149,0,27.59),
260             SOUTH(35,19,14.3),
261             767E0,
262             "STROMLO74",
263             "Mount Stromlo 74 inch"
264             },
265             /* ANU 2.3m, SSO (Gary Hovey) ANU2.3 */
266             {
267             EAST(149,3,40.3),
268             SOUTH(31,16,24.1),
269             1149E0,
270             "ANU2.3",
271             "Siding Spring 2.3 metre"
272             },
273             /* Greenbank 140' (1983 Almanac) GBVA140 */
274             {
275             WEST(79,50,9.61),
276             NORTH(38,26,15.4),
277             881E0,
278             "GBVA140",
279             "Greenbank 140 foot"
280             },
281             /* Cerro Tololo 4m (1982 Almanac) TOLOLO4M */
282             {
283             WEST(70,48,53.6),
284             SOUTH(30,9,57.8),
285             2235E0,
286             "TOLOLO4M",
287             "Cerro Tololo 4 metre"
288             },
289             /* Cerro Tololo 1.5m (1982 Almanac) TOLOLO1.5M */
290             {
291             WEST(70,48,54.5),
292             SOUTH(30,9,56.3),
293             2225E0,
294             "TOLOLO1.5M",
295             "Cerro Tololo 1.5 metre"
296             },
297             /* Tidbinbilla 64m (1982 Almanac) TIDBINBLA */
298             {
299             EAST(148,58,48.20),
300             SOUTH(35,24,14.3),
301             670E0,
302             "TIDBINBLA",
303             "Tidbinbilla 64 metre"
304             },
305             /* Bloemfontein 1.52m (1981 Almanac) BLOEMF */
306             {
307             EAST(26,24,18.),
308             SOUTH(29,2,18.),
309             1387E0,
310             "BLOEMF",
311             "Bloemfontein 1.52 metre"
312             },
313             /* Bosque Alegre 1.54m (1981 Almanac) BOSQALEGRE */
314             {
315             WEST(64,32,48.0),
316             SOUTH(31,35,53.),
317             1250E0,
318             "BOSQALEGRE",
319             "Bosque Alegre 1.54 metre"
320             },
321             /* USNO 61" astrographic reflector, Flagstaff (1981 Almanac) FLAGSTF61 */
322             {
323             WEST(111,44,23.6),
324             NORTH(35,11,2.5),
325             2316E0,
326             "FLAGSTF61",
327             "USNO 61 inch astrograph, Flagstaff"
328             },
329             /* Lowell 72" (1981 Almanac) LOWELL72 */
330             {
331             WEST(111,32,9.3),
332             NORTH(35,5,48.6),
333             2198E0,
334             "LOWELL72",
335             "Perkins 72 inch, Lowell"
336             },
337             /* Harvard 1.55m (1981 Almanac) HARVARD */
338             {
339             WEST(71,33,29.32),
340             NORTH(42,30,19.0),
341             185E0,
342             "HARVARD",
343             "Harvard College Observatory 1.55m"
344             },
345             /* Okayama 1.88m (1981 Almanac) OKAYAMA */
346             {
347             EAST(133,35,47.29),
348             NORTH(34,34,26.1),
349             372E0,
350             "OKAYAMA",
351             "Okayama 1.88 metre"
352             },
353             /* Kitt Peak Mayall 4m (1981 Almanac) KPNO158 */
354             {
355             WEST(111,35,57.61),
356             NORTH(31,57,50.3),
357             2120E0,
358             "KPNO158",
359             "Kitt Peak 158 inch"
360             },
361             /* Kitt Peak 90 inch (1981 Almanac) KPNO90 */
362             {
363             WEST(111,35,58.24),
364             NORTH(31,57,46.9),
365             2071E0,
366             "KPNO90",
367             "Kitt Peak 90 inch"
368             },
369             /* Kitt Peak 84 inch (1981 Almanac) KPNO84 */
370             {
371             WEST(111,35,51.56),
372             NORTH(31,57,29.2),
373             2096E0,
374             "KPNO84",
375             "Kitt Peak 84 inch"
376             },
377             /* Kitt Peak 36 foot (1981 Almanac) KPNO36FT */
378             {
379             WEST(111,36,51.12),
380             NORTH(31,57,12.1),
381             1939E0,
382             "KPNO36FT",
383             "Kitt Peak 36 foot"
384             },
385             /* Kottamia 74" (1981 Almanac) KOTTAMIA */
386             {
387             EAST(31,49,30.),
388             NORTH(29,55,54.),
389             476E0,
390             "KOTTAMIA",
391             "Kottamia 74 inch"
392             },
393             /* La Silla 3.6m (1981 Almanac) ESO3.6 */
394             {
395             WEST(70,43,36.),
396             SOUTH(29,15,36.),
397             2428E0,
398             "ESO3.6",
399             "ESO 3.6 metre"
400             },
401             /* Mauna Kea 88 inch MAUNAK88 */
402             /* (IfA website, Richard Wainscoat) */
403             {
404             WEST(155,28,9.96),
405             NORTH(19,49,22.77),
406             4213.6E0,
407             "MAUNAK88",
408             "Mauna Kea 88 inch"
409             },
410             /* UKIRT (IfA website, Richard Wainscoat) UKIRT */
411             {
412             WEST(155,28,13.18),
413             NORTH(19,49,20.75),
414             4198.5E0,
415             "UKIRT",
416             "UK Infra Red Telescope"
417             },
418             /* Quebec 1.6m (1981 Almanac) QUEBEC1.6 */
419             {
420             WEST(71,9,9.7),
421             NORTH(45,27,20.6),
422             1114E0,
423             "QUEBEC1.6",
424             "Quebec 1.6 metre"
425             },
426             /* Mt Ekar 1.82m (1981 Almanac) MTEKAR */
427             {
428             EAST(11,34,15.),
429             NORTH(45,50,48.),
430             1365E0,
431             "MTEKAR",
432             "Mt Ekar 1.82 metre"
433             },
434             /* Mt Lemmon 60" (1981 Almanac) MTLEMMON60 */
435             {
436             WEST(110,42,16.9),
437             NORTH(32,26,33.9),
438             2790E0,
439             "MTLEMMON60",
440             "Mt Lemmon 60 inch"
441             },
442             /* Mt Locke 2.7m (1981 Almanac) MCDONLD2.7 */
443             {
444             WEST(104,1,17.60),
445             NORTH(30,40,17.7),
446             2075E0,
447             "MCDONLD2.7",
448             "McDonald 2.7 metre"
449             },
450             /* Mt Locke 2.1m (1981 Almanac) MCDONLD2.1 */
451             {
452             WEST(104,1,20.10),
453             NORTH(30,40,17.7),
454             2075E0,
455             "MCDONLD2.1",
456             "McDonald 2.1 metre"
457             },
458             /* Palomar 200" (1981 Almanac) PALOMAR200 */
459             {
460             WEST(116,51,50.),
461             NORTH(33,21,22.),
462             1706E0,
463             "PALOMAR200",
464             "Palomar 200 inch"
465             },
466             /* Palomar 60" (1981 Almanac) PALOMAR60 */
467             {
468             WEST(116,51,31.),
469             NORTH(33,20,56.),
470             1706E0,
471             "PALOMAR60",
472             "Palomar 60 inch"
473             },
474             /* David Dunlap 74" (1981 Almanac) DUNLAP74 */
475             {
476             WEST(79,25,20.),
477             NORTH(43,51,46.),
478             244E0,
479             "DUNLAP74",
480             "David Dunlap 74 inch"
481             },
482             /* Haute Provence 1.93m (1981 Almanac) HPROV1.93 */
483             {
484             EAST(5,42,46.75),
485             NORTH(43,55,53.3),
486             665E0,
487             "HPROV1.93",
488             "Haute Provence 1.93 metre"
489             },
490             /* Haute Provence 1.52m (1981 Almanac) HPROV1.52 */
491             {
492             EAST(5,42,43.82),
493             NORTH(43,56,0.2),
494             667E0,
495             "HPROV1.52",
496             "Haute Provence 1.52 metre"
497             },
498             /* San Pedro Martir 83" (1981 Almanac) SANPM83 */
499             {
500             WEST(115,27,47.),
501             NORTH(31,2,38.),
502             2830E0,
503             "SANPM83",
504             "San Pedro Martir 83 inch"
505             },
506             /* Sutherland 74" (1981 Almanac) SAAO74 */
507             {
508             EAST(20,48,44.3),
509             SOUTH(32,22,43.4),
510             1771E0,
511             "SAAO74",
512             "Sutherland 74 inch"
513             },
514             /* Tautenburg 2m (1981 Almanac) TAUTNBG */
515             {
516             EAST(11,42,45.),
517             NORTH(50,58,51.),
518             331E0,
519             "TAUTNBG",
520             "Tautenburg 2 metre"
521             },
522             /* Catalina 61" (1981 Almanac) CATALINA61 */
523             {
524             WEST(110,43,55.1),
525             NORTH(32,25,0.7),
526             2510E0,
527             "CATALINA61",
528             "Catalina 61 inch"
529             },
530             /* Steward 90" (1981 Almanac) STEWARD90 */
531             {
532             WEST(111,35,58.24),
533             NORTH(31,57,46.9),
534             2071E0,
535             "STEWARD90",
536             "Steward 90 inch"
537             },
538             /* Russian 6m (1981 Almanac) USSR6 */
539             {
540             EAST(41,26,30.0),
541             NORTH(43,39,12.),
542             2100E0,
543             "USSR6",
544             "USSR 6 metre"
545             },
546             /* Arecibo 1000' (1981 Almanac) ARECIBO */
547             {
548             WEST(66,45,11.1),
549             NORTH(18,20,36.6),
550             496E0,
551             "ARECIBO",
552             "Arecibo 1000 foot"
553             },
554             /* Cambridge 5km (1981 Almanac) CAMB5KM */
555             {
556             EAST(0,2,37.23),
557             NORTH(52,10,12.2),
558             17E0,
559             "CAMB5KM",
560             "Cambridge 5km"
561             },
562             /* Cambridge 1 mile (1981 Almanac) CAMB1MILE */
563             {
564             EAST(0,2,21.64),
565             NORTH(52,9,47.3),
566             17E0,
567             "CAMB1MILE",
568             "Cambridge 1 mile"
569             },
570             /* Bonn 100m (1981 Almanac) EFFELSBERG */
571             {
572             EAST(6,53,1.5),
573             NORTH(50,31,28.6),
574             366E0,
575             "EFFELSBERG",
576             "Effelsberg 100 metre"
577             },
578             /* Greenbank 300' (1981 Almanac) GBVA300 (R.I.P.) */
579             {
580             WEST(79,50,56.36),
581             NORTH(38,25,46.3),
582             894E0,
583             "(R.I.P.)",
584             "Greenbank 300 foot"
585             },
586             /* Jodrell Bank Mk 1 (1981 Almanac) JODRELL1 */
587             {
588             WEST(2,18,25.),
589             NORTH(53,14,10.5),
590             78E0,
591             "JODRELL1",
592             "Jodrell Bank 250 foot"
593             },
594             /* Australia Telescope Parkes Observatory PARKES */
595             /* (Peter te Lintel Hekkert) */
596             {
597             EAST(148,15,44.3591),
598             SOUTH(32,59,59.8657),
599             391.79E0,
600             "PARKES",
601             "Parkes 64 metre"
602             },
603             /* VLA (1981 Almanac) VLA */
604             {
605             WEST(107,37,3.82),
606             NORTH(34,4,43.5),
607             2124E0,
608             "VLA",
609             "Very Large Array"
610             },
611             /* Sugar Grove 150' (1981 Almanac) SUGARGROVE */
612             {
613             WEST(79,16,23.),
614             NORTH(38,31,14.),
615             705E0,
616             "SUGARGROVE",
617             "Sugar Grove 150 foot"
618             },
619             /* Russian 600' (1981 Almanac) USSR600 */
620             {
621             EAST(41,35,25.5),
622             NORTH(43,49,32.),
623             973E0,
624             "USSR600",
625             "USSR 600 foot"
626             },
627             /* Nobeyama 45 metre mm dish (based on 1981 Almanac entry) NOBEYAMA */
628             {
629             EAST(138,29,12.),
630             NORTH(35,56,19.),
631             1350E0,
632             "NOBEYAMA",
633             "Nobeyama 45 metre"
634             },
635             /* James Clerk Maxwell 15 metre mm telescope, Mauna Kea JCMT */
636             /* From GPS measurements on 11Apr2007 for eSMA setup (R. Tilanus) */
637             {
638             WEST(155,28,37.30),
639             NORTH(19,49,22.22),
640             4124.75E0,
641             "JCMT",
642             "JCMT 15 metre"
643             },
644             /* ESO 3.5 metre NTT, La Silla (K.Wirenstrand) ESONTT */
645             {
646             WEST(70,43,7.),
647             SOUTH(29,15,30.),
648             2377E0,
649             "ESONTT",
650             "ESO 3.5 metre NTT"
651             },
652             /* St Andrews University Observatory (1982 Almanac) ST.ANDREWS */
653             {
654             WEST(2,48,52.5),
655             NORTH(56,20,12.),
656             30E0,
657             "ST.ANDREWS",
658             "St Andrews"
659             },
660             /* Apache Point 3.5 metre (R.Owen) APO3.5 */
661             {
662             WEST(105,49,11.56),
663             NORTH(32,46,48.96),
664             2809E0,
665             "APO3.5",
666             "Apache Point 3.5m"
667             },
668             /* W.M.Keck Observatory, Telescope 1 KECK1 */
669             /* (William Lupton) */
670             {
671             WEST(155,28,28.99),
672             NORTH(19,49,33.41),
673             4160E0,
674             "KECK1",
675             "Keck 10m Telescope #1"
676             },
677             /* Tautenberg Schmidt (1983 Almanac) TAUTSCHM */
678             {
679             EAST(11,42,45.0),
680             NORTH(50,58,51.0),
681             331E0,
682             "TAUTSCHM",
683             "Tautenberg 1.34 metre Schmidt"
684             },
685             /* Palomar Schmidt (1981 Almanac) PALOMAR48 */
686             {
687             WEST(116,51,32.0),
688             NORTH(33,21,26.0),
689             1706E0,
690             "PALOMAR48",
691             "Palomar 48-inch Schmidt"
692             },
693             /* UK Schmidt, Siding Spring (1983 Almanac) UKST */
694             {
695             EAST(149,4,12.8),
696             SOUTH(31,16,27.8),
697             1145E0,
698             "UKST",
699             "UK 1.2 metre Schmidt, Siding Spring"
700             },
701             /* Kiso Schmidt, Japan (1981 Almanac) KISO */
702             {
703             EAST(137,37,42.2),
704             NORTH(35,47,38.7),
705             1130E0,
706             "KISO",
707             "Kiso 1.05 metre Schmidt, Japan"
708             },
709             /* ESO Schmidt, La Silla (1981 Almanac) ESOSCHM */
710             {
711             WEST(70,43,46.5),
712             SOUTH(29,15,25.8),
713             2347E0,
714             "ESOSCHM",
715             "ESO 1 metre Schmidt, La Silla"
716             },
717             /* Australia Telescope Compact Array ATCA */
718             /* (WGS84 coordinates of Station 35, Mark Calabretta) */
719             {
720             EAST(149,33,0.500),
721             SOUTH(30,18,46.385),
722             236.9E0,
723             "ATCA",
724             "Australia Telescope Compact Array"
725             },
726             /* Australia Telescope Mopra Observatory MOPRA */
727             /* (Peter te Lintel Hekkert) */
728             {
729             EAST(149,5,58.732),
730             SOUTH(31,16,4.451),
731             850E0,
732             "MOPRA",
733             "ATNF Mopra Observatory"
734             },
735             /* Subaru telescope, Mauna Kea SUBARU */
736             /* (IfA website, Richard Wainscoat) */
737             {
738             WEST(155,28,33.67),
739             NORTH(19,49,31.81),
740             4163E0,
741             "SUBARU",
742             "Subaru 8m telescope"
743             },
744             /* Canada-France-Hawaii Telescope, Mauna Kea CFHT */
745             /* (IfA website, Richard Wainscoat) */
746             {
747             WEST(155,28,7.95),
748             NORTH(19,49,30.91),
749             4204.1E0,
750             "CFHT",
751             "Canada-France-Hawaii 3.6m Telescope"
752             },
753             /* W.M.Keck Observatory, Telescope 2 KECK2 */
754             /* (William Lupton) */
755             {
756             WEST(155,28,27.24),
757             NORTH(19,49,35.62),
758             4159.6E0,
759             "KECK2",
760             "Keck 10m Telescope #2"
761             },
762             /* Gemini North, Mauna Kea GEMININ */
763             /* (IfA website, Richard Wainscoat) */
764             {
765             WEST(155,28,8.57),
766             NORTH(19,49,25.69),
767             4213.4E0,
768             "GEMININ",
769             "Gemini North 8-m telescope"
770             },
771             /* Five College Radio Astronomy Observatory FCRAO */
772             /* (Tim Jenness) */
773             {
774             WEST(72,20,42.0),
775             NORTH(42,23,30.0),
776             314E0,
777             "FCRAO",
778             "Five College Radio Astronomy Obs"
779             },
780             /* NASA Infra Red Telescope Facility IRTF */
781             /* (IfA website, Richard Wainscoat) */
782             {
783             WEST(155,28,19.20),
784             NORTH(19,49,34.39),
785             4168.1E0,
786             "IRTF",
787             "NASA IR Telescope Facility, Mauna Kea"
788             },
789             /* Caltech Submillimeter Observatory CSO */
790             /* (IfA website, Richard Wainscoat; height estimated) */
791             {
792             WEST(155,28,31.79),
793             NORTH(19,49,20.78),
794             4080E0,
795             "CSO",
796             "Caltech Sub-mm Observatory, Mauna Kea"
797             },
798             /* ESO VLT, UT1 VLT1 */
799             /* (ESO website, VLT Whitebook Chapter 2) */
800             {
801             WEST(70,24,11.642),
802             SOUTH(24,37,33.117),
803             2635.43,
804             "VLT1",
805             "ESO VLT, Paranal, Chile: UT1"
806             },
807             /* ESO VLT, UT2 VLT2 */
808             /* (ESO website, VLT Whitebook Chapter 2) */
809             {
810             WEST(70,24,10.855),
811             SOUTH(24,37,31.465),
812             2635.43,
813             "VLT2",
814             "ESO VLT, Paranal, Chile: UT2"
815             },
816             /* ESO VLT, UT3 VLT3 */
817             /* (ESO website, VLT Whitebook Chapter 2) */
818             {
819             WEST(70,24,9.896),
820             SOUTH(24,37,30.300),
821             2635.43,
822             "VLT3",
823             "ESO VLT, Paranal, Chile: UT3"
824             },
825             /* ESO VLT, UT4 VLT4 */
826             /* (ESO website, VLT Whitebook Chapter 2) */
827             {
828             WEST(70,24,8.000),
829             SOUTH(24,37,31.000),
830             2635.43,
831             "VLT4",
832             "ESO VLT, Paranal, Chile: UT4"
833             },
834             /* Gemini South, Cerro Pachon GEMINIS */
835             /* (GPS readings by Patrick Wallace) */
836             {
837             WEST(70,44,11.5),
838             SOUTH(30,14,26.7),
839             2738E0,
840             "GEMINIS",
841             "Gemini South 8-m telescope"
842             },
843             /* Cologne Observatory for Submillimeter Astronomy (KOSMA) KOSMA3M */
844             /* (Holger Jakob) */
845             {
846             EAST(7,47,3.48),
847             NORTH(45,58,59.772),
848             3141E0,
849             "KOSMA3M",
850             "KOSMA 3m telescope, Gornergrat"
851             },
852             /* Magellan 1, 6.5m telescope at Las Campanas, Chile MAGELLAN1 */
853             /* (Skip Schaller) */
854             {
855             WEST(70,41,31.9),
856             SOUTH(29,0,51.7),
857             2408E0,
858             "MAGELLAN1",
859             "Magellan 1, 6.5m, Las Campanas"
860             },
861             /* Magellan 2, 6.5m telescope at Las Campanas, Chile MAGELLAN2 */
862             /* (Skip Schaller) */
863             {
864             WEST(70,41,33.5),
865             SOUTH(29,0,50.3),
866             2408E0,
867             "MAGELLAN2",
868             "Magellan 2, 6.5m, Las Campanas"
869             },
870             /* APEX - Atacama Pathfinder EXperiment, Llano de Chajnantor APEX */
871             /* (APEX web site) */
872             {
873             WEST(67,45,33.0),
874             SOUTH(23,0,20.8),
875             5105E0,
876             "APEX",
877             "APEX 12m telescope, Llano de Chajnantor"
878             },
879             /* NANTEN2 Submillimeter Observatory, 4m telescope Atacame desert NANTEN2 */
880             /* (NANTEN2 web site) */
881             {
882             WEST(67,42,8.0),
883             SOUTH(22,57,47.0),
884             4865E0,
885             "NANTEN2",
886             "NANTEN2 4m telescope, Pampa la Bola"
887             }
888             };
889              
890             int retval = -1; /* Return status. 0 if found. -1 if no match */
891              
892             /* Work out the number of telescopes */
893             const size_t NTEL = sizeof(telData) / sizeof(struct telData);
894              
895             /* Prefill the return buffer in a pessimistic manner */
896             star_strellcpy( name, "?", namelen );
897              
898 11 100         if (n > 0) {
899 3 100         if (n <= NTEL) {
900             /* Index into telData with correction for zero-based indexing */
901             struct telData thistel;
902 2           thistel = telData[n-1];
903 2           *w = thistel.w;
904 2           *p = thistel.p;
905 2           *h = thistel.h;
906             star_strellcpy( ident, thistel.shortname, identlen );
907             star_strellcpy( name, thistel.longname, namelen );
908             retval = 0;
909             }
910              
911             } else {
912             /* Searching */
913             size_t i;
914 346 100         for (i=0; i
915 345           struct telData thistel = telData[i];
916 345 100         if (strcasecmp( c, thistel.shortname) == 0) {
917             /* a match */
918 7           *w = thistel.w;
919 7           *p = thistel.p;
920 7           *h = thistel.h;
921             star_strellcpy( ident, thistel.shortname, identlen );
922             star_strellcpy( name, thistel.longname, namelen );
923             retval = 0;
924 7           break;
925             }
926             }
927              
928             }
929              
930 11           return retval;
931              
932             }