home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3 / hamradioversion3.0examsandprograms1992.iso / news / inham05 / 858. < prev   
Text File  |  1980-01-01  |  10KB  |  368 lines

  1. INFO-HAMS Digest            Thu,  9 Nov 89       Volume 89 : Issue 858
  2.  
  3. Today's Topics:
  4.                        455KHz IFs (continued..)
  5.                         ARRL NR 83: JAS-1 DEAD
  6.                          Ear Mike from Telex
  7.                      FOR SALE, Two Meter, Allmode
  8.                       Great Circle, No Graphics
  9.                  Havana Moon's "Los Numeros" On-Line
  10.                      starter shortwave radios ...
  11.                          TM-721A upgrade info
  12. ----------------------------------------------------------------------
  13.  
  14. Date: 9 Nov 89 09:32:23 GMT
  15. From: omen!caf@uunet.uu.net  (Chuck Forsberg WA7KGX)
  16. Subject: 455KHz IFs (continued..)
  17.  
  18. Another reason for the lower IF frequency in car radios was that
  19. they use to be permeability tuned (variable inductors instead of
  20. variable caps) and tracking was easier with the lower IF.  This
  21. was long before transistors made it to car radios.
  22.  
  23. You could rewire a tube car radio into a 6 meter
  24. transceiver without too much trouble.
  25.  
  26. ------------------------------
  27.  
  28. Date: 8 Nov 89 22:05:54 GMT
  29. From: n8emr!gws@tut.cis.ohio-state.edu  (Gary Sanders)
  30. Subject: ARRL NR 83: JAS-1 DEAD
  31.  
  32. ==============================================================
  33. |         Relayed from packet radio via                |
  34. | N8EMR's Ham BBS, 614-457-4227 (1200/2400/19.2 telebit,8N1) |
  35. ==============================================================
  36.  
  37. ARRL BULLETIN NR 83 (ARLB083) 11/8/89
  38.  
  39. THE OPERATION OF AMATEUR SATELLIE JAS-1/FUJI-OSCAR 12 WAS TERMINATED,
  40. EFFECTIVE NOVEMBER 5, BECAUSE OF LOW POWER GENERATION.  
  41.  
  42. JARL REPORTS QUOTE, IT IS OUR GREAT PLEASURE TO REALIZE THAT WE WERE
  43. ABLE TO PROVIDE CHANCES OF SATELLITE COMMUNICATION, ESPECIALLY THE
  44. FLYING BBS, AND, TAKING THIS OPPORTUNITY, WE THANK ALL SATELLITE
  45. ENTHUSIASTS FOR HAVING CONTACTED THE BIRD.  NOW, WE ARE PREPARING
  46. THE NEXT BIRD, JAS-1B, AS THE SUCCESSOR OF FO-12, WHICH HAS THE SAME
  47. MISSION CONFIGURATION AS THAT OF FO-12 EXCEPT FOR ITS ORBIT.  PLEASE
  48. LOOK FORWARD TO ITS LAUNCH IN FEBRUARY 1990. UNQUOTE.  AR
  49.  
  50. -- 
  51. Gary W. Sanders (gws@n8emr or ...!osu-cis!n8emr!gws), 72277,1325
  52. N8EMR @ W8CQK (ip addr) 44.70.0.1 [Ohio AMPR address coordinator]
  53. HAM/SWL/SCANNER BBS (1200/2400/PEP) 614-457-4227
  54.  
  55. ------------------------------
  56.  
  57. Date: Thu, 09 Nov 89 04:53:13 EST
  58. From: Chris Allison <CHRIS%MIAMIU.BITNET@CORNELLC.cit.cornell.edu>
  59. Subject: Ear Mike from Telex
  60.  
  61.      I have just seen an ad from Telex about a product called Ear-Mike.
  62. It is a speaker/mike built into an ear peace that is connected through
  63. an adapter to your radio.  It is reported to be good in high noise areas.
  64. Has anyone seen one of these?  What is the sound quality like (talking through
  65. my ears - seems like it should sound different)?
  66.  
  67. Chris Allison N8DSC
  68.  
  69. ------------------------------
  70.  
  71. Date: 9 Nov 89 03:07:57 GMT
  72. From: attctc!jolnet!arf@tut.cis.ohio-state.edu  (Jack Schmidling)
  73. Subject: FOR SALE, Two Meter, Allmode
  74.  
  75. ats/e12 
  76.  
  77. FOR SALE:  TWO METER ALL MODE 
  78.  
  79. Kenwood TS700A, two meter transceiver. 
  80. AM/FM, CW/SSB 10 Watts. 
  81. Built-in receive pre-amp and PLL. 
  82. Includes Hustler GS-7, 7db gain vert antenna. 
  83. $300 takes all. 
  84.  
  85. Jack Schmidling arf@jolnet.ORPK.IL.us 
  86.  
  87. ------------------------------
  88.  
  89. Date: 9 Nov 89 03:34:29 GMT
  90. From: attctc!sampson@tut.cis.ohio-state.edu  (Steve Sampson)
  91. Subject: Great Circle, No Graphics
  92.  
  93. Here's a program that some may find useful, others will want to hit 'n'...
  94.  
  95. /*
  96.  *    gc.c
  97.  *
  98.  *    Great Circle.  This program is used to determine bearing
  99.  *    and range to a station given latitude and longitude data.
  100.  *
  101.  *    Ver 1.01 By S. R. Sampson, N5OWK
  102.  *    Public Domain (p) November 1989
  103.  *
  104.  *    Ref: Air Force Manual 51-40, "Air Navigation", 1 February 1987
  105.  *
  106.  *    Usage examples:
  107.  *
  108.  *    gc 35.19n97.27w 0s0e        (Moore to Greenwich U.K.)
  109.  *    gc 35.19N97.27W 38.51n77.02W    (Moore to Washington D.C.)
  110.  *    gc 33.56n118.24w 55.45n37.35e    (L.A. to Moscow U.S.S.R.)
  111.  */
  112.  
  113. /* Includes */
  114.  
  115. #include <stdio.h>
  116. #include <string.h>
  117. #include <ctype.h>
  118. #include <math.h>
  119.  
  120. /* Defines */
  121.  
  122. #define    RADIAN    (180.0 / M_PI)
  123.  
  124. /* Globals */
  125.  
  126. double    tmp,
  127.     dist,
  128.     range,
  129.     bearing,
  130.     QTH_Lat,
  131.     DEST_Lat,
  132.     QTH_Long,
  133.     DEST_Long,
  134.     Delta_Long;
  135.  
  136. /* Simple Declare, No Prototypes */
  137.  
  138. /*
  139.  *    Error routine
  140.  */
  141.  
  142. void err(type)
  143. int    type;
  144. {
  145.     switch(type)  {
  146.     case 1:
  147.         printf("\007Latitude Out of Range (90N to 90S)\n");
  148.         break;
  149.     case 2:
  150.         printf("\007Longitude Out of Range (180W to 180E)\n");
  151.         break;
  152.     case 3:
  153.         printf("\007Minutes Out of Range (0 to 59)\n");
  154.     }
  155.  
  156.     exit(1);
  157. }
  158.  
  159. /*
  160.  *    Convert Degrees and Minutes to Decimal
  161.  */
  162.  
  163. double dm2dec(n)
  164. double    n;
  165. {
  166.     double    t;
  167.  
  168.     t = (int)n;
  169.     n -= t;
  170.     n /= .60;
  171.  
  172.     if (n >= 1.0)
  173.         err(3);
  174.  
  175.     return (n + t);
  176. }
  177.  
  178. /*
  179.  *    Parse the input line
  180.  *
  181.  *    dd.mm[NnSs]ddd.mm[EeWw]
  182.  */
  183.  
  184. void parse(s, lat, lon)
  185. char    *s;
  186. double    *lat, *lon;
  187. {
  188.     register char    *i, *t;
  189.     int        l;
  190.  
  191.     l = strlen(s);
  192.     for (i = s; i < (s + l); ++i)  {
  193.         switch(toupper(*i))  {
  194.         case 'N':
  195.             *i = '\0';
  196.             t = i + 1;
  197.             *lat = atof(s);
  198.             break;
  199.         case 'S':
  200.             *i = '\0';
  201.             t = i + 1;
  202.             *lat = -atof(s);
  203.             break;
  204.         case 'E':
  205.             *i = '\0';
  206.             *lon = -atof(t);
  207.             break;
  208.         case 'W':
  209.             *i = '\0';
  210.             *lon = atof(t);
  211.         }
  212.     }
  213.  
  214.     *lat = dm2dec(*lat);
  215.     *lon = dm2dec(*lon);
  216.  
  217.     if (*lat > 90.0 || *lat < -90.0)
  218.         err(1);
  219.  
  220.     if (*lon > 180.0 || *lon < -180.0)
  221.         err(2);
  222. }
  223.  
  224. main(argc, argv)
  225. int    argc;
  226. char    *argv[];
  227. {
  228.     if (argc != 3)  {
  229.         printf("Usage: gc station1 station2\n\n");
  230.         printf("This program computes Great Circle Bearing and Range\n");
  231.         printf("Given the Latitude and Longitude  (Degrees and Minutes)\n\n");
  232.         printf("You must input the Lat/Long of the two stations\n");
  233.         printf("The output will be relative to the first Coordinate\n\n");
  234.         printf("Input the two station Lat/Longs using the following format:\n\n");
  235.         printf("\tdd.mmHddd.mmG  Lead/Lagging Zeros can be left out\n\n");
  236.         printf("d = Degrees, m = Minutes, H = Hemisphere (N or S), G = Greenwich (W or E)\n");
  237.  
  238.         exit(1);
  239.     }
  240.  
  241.     /* Process the command line data */
  242.  
  243.     parse(argv[1], &QTH_Lat, &QTH_Long);
  244.     parse(argv[2], &DEST_Lat, &DEST_Long);
  245.  
  246.     /* Compute the Bearing and Range, From the Formula in Chapter 23 */
  247.  
  248.     Delta_Long = DEST_Long - QTH_Long;
  249.  
  250.     QTH_Lat    /= RADIAN;    /* Convert variables to Radians */
  251.     QTH_Long   /= RADIAN;
  252.     DEST_Lat   /= RADIAN;
  253.     Delta_Long /= RADIAN;
  254.  
  255.     tmp = (sin(QTH_Lat) * sin(DEST_Lat)) +
  256.         (cos(QTH_Lat) * cos(DEST_Lat) * cos(Delta_Long));
  257.  
  258.     dist = acos(tmp);
  259.     range = 60.0 * (dist * RADIAN);
  260.  
  261.     tmp = (sin(DEST_Lat) - (sin(QTH_Lat) * cos(dist))) /
  262.         (sin(dist) * cos(QTH_Lat));
  263.  
  264.     bearing = acos(tmp) * RADIAN;
  265.  
  266.     if (Delta_Long > 0.0)
  267.         bearing = 360.0 - bearing;
  268.  
  269.     /* Computations complete, show answer */
  270.  
  271.     printf("\nBearing is %.0f Degrees for %.0f Nautical Miles\n",
  272.         bearing, range);
  273.  
  274.     exit(0);
  275. }
  276.  
  277. /* EOF */
  278.  
  279. ------------------------------
  280.  
  281. Date: 9 Nov 89 07:56:37 GMT
  282. From: lanai!pierce@cs.ucla.edu  (Brad Pierce)
  283. Subject: Havana Moon's "Los Numeros" On-Line
  284.  
  285. In article <23733@cup.portal.com> Havana_-_Moon@cup.portal.com writes:
  286.  
  287. >                            ** WHO IS HAVANA MOON? **
  288.  
  289. >      Havana Moon is the pseudonym of a very well known figure in
  290. >      Shortwave Radio, on both the hobby and the professional levels. 
  291. >      He is a former Intelligence Officer who is acknowledged to be 
  292. >      one of the leading experts in the curious shortwave phenomenon 
  293. >      known as "Spy Numbers Transmissions."
  294.  
  295. What is Spy Numbers Transmissions? 
  296.  
  297. -- Brad
  298.  
  299. *
  300. *
  301. *
  302. *
  303. * * * * *
  304.  
  305. ------------------------------
  306.  
  307. Date: 9 Nov 89 09:35:43 GMT
  308. From: sdcc6!sdcc10!muller@ucsd.edu  (Keith Muller)
  309. Subject: starter shortwave radios ...
  310.  
  311. There are two types of markets:
  312. 1) DX radios for grabbing those "down in the mud" signals
  313. 2) Hi-fi radios for quality audio
  314.  
  315. Obviously it is hard for a radio to do both well. Lower cost radios
  316. do either 1 or 2 well but not both (usually). Higher cost radios add
  317. electronics to improve either 1 and/or 2, but even then doing both
  318. is hard. 
  319.  
  320. For example take the Sony 2020 (aka 2001D outside of the USA). It is great
  321. DX radio for it's price, but it audio quality is far from Hi-Fi even
  322. on the best of signals. The Grundig 650 is great for Hi-FI, but it is
  323. not in the same class as the Sony 2010 for weak signals.
  324.  
  325. For a first time radio one nice choice is the Sangean  ATS-803A (aka radio shack
  326. DX-440, eska RX 33). It is not the DX performer the sony is but is close.
  327. It has much better audio. (The FM stereo output is pretty good).  And it
  328. costs a lot less ($180 USA versus $350+ USA).
  329.  
  330. If cost is no object then the Grundig 650 for Hi-FI on strong signals. The
  331. kenwood R-5000, JRC NRD-525 or the Icom R9000 are good at DX (and good
  332. audio on the R-5000). The R9000 is looks awesome in the ad's, though I
  333. have never seen one in person. The icom R-71a used to be good, but
  334. the newer serial numbers in the USA show several problems. JRC radios
  335. are built like battleships, though the performance is not up to same
  336. level as similar priced radios in some respects. 
  337.  
  338. For used radios. Drake R-7 and similar models should be kicking around.
  339. Drake made some really good radios even at todays standards. I have no idea
  340. what they go for now.
  341.  
  342. My favorite of the group is the Kenwood R-5000. It has the DX performance
  343. and I can listen to music on it for hours. Listing to a strong music
  344. station on the Sony 2010 is hard on the ears.
  345.  
  346.     Keith Muller
  347.     University of California
  348.     muller@ucsd.edu
  349.  
  350. ------------------------------
  351.  
  352. Date: 8 Nov 89 17:07:07 GMT
  353. From: ibmarc!singer@uunet.uu.net  (David Singer)
  354. Subject: TM-721A upgrade info
  355.  
  356. Do you know when the upgrade will be available?
  357.  
  358. David Singer, N6TFX   Internet:  singer@ibm.com
  359.                       Packet:    n6tfx @ n6ldl
  360.                       Amprnet:   n6tfx@n6tfx.ampr.org
  361.                       Bitnet:    singer@almvma
  362.  
  363. ------------------------------
  364.  
  365. End of INFO-HAMS Digest V89 Issue #858
  366. **************************************
  367.  
  368.