Antennerichting bepalen...........

Allerlei informatie en nieuwtjes over de diverse repeaters.
Plaats reactie
Bericht
Auteur
cadillac62be
Berichten: 12
Lid geworden op: 22 dec 2009, 21:26

Antennerichting bepalen...........

#1 Bericht door cadillac62be »

Hallo,
Ik ben op zoek naar een simpel programma (gratis) dat de antennerichting berekend tussen mijn QTH
en deze van de repeaters in België aan de hand van de QTH-locators of iets dergelijks..............
Ik heb reeds gezocht maar vind niets waarschijnlijk gebruik ik geen goed zoekwoord....
Het is dus eigenlijk om mijn beam antenne op UHF/VHF optimaal te kunnen richten....
Met Dank!!!!! :D

PA3BAS
Berichten: 2606
Lid geworden op: 07 jan 2011, 22:19
Roepletters: PA3BAS
Locatie: JO21XX

Re: Antennerichting bepalen...........

#2 Bericht door PA3BAS »

Qrz.com geeft volgens mij de richting aan. Vraag is natuurlijk of alle repeaters in qrz.con aanwezig zijn. Kijk bij de details van de roepletters van de repeater.

Onder de kop 'Bearing' vindt je de richting in graden.

De gegevens van pi3utr zijn niet bepaald up-to-date, maar het gaat om het idee.
Bijlagen
image.jpg
.... But will it blend?

Gebruikersavatar
pa8w
Berichten: 946
Lid geworden op: 22 dec 2011, 21:30
Roepletters: PA8W
Locatie: Beuningen
Contacteer:

Re: Antennerichting bepalen...........

#3 Bericht door pa8w »

Als QRZ.com de oplossing niet brengt en je weet de locatie van de repeater dan kan je ook in Google Earth met de lineaal functie bepalen in welke richting hij zit.
Klik met de ingeschakelde functie eerst op je eigen locatie, en dan op het gewenste station zijn locatie.
G-Earth geeft dan afstand en bearing.

Groetjes,
Wil.
Let op: website verhuisd naar: http://www.paluidsprekers.nl/pa8w/index.html

on6zg
Berichten: 93
Lid geworden op: 05 feb 2008, 20:16
Locatie: Bree
Contacteer:

Re: Antennerichting bepalen...........

#4 Bericht door on6zg »

Beer : now there's a temporary solution !

pa1bvm
Berichten: 3324
Lid geworden op: 17 mar 2010, 17:31
Roepletters: PA1BVM
Locatie: Schijndel

Re: Antennerichting bepalen...........

#5 Bericht door pa1bvm »

zit standaard in WSJT software

PE1RJV
Berichten: 25
Lid geworden op: 19 dec 2007, 09:04
Roepletters: PE1RJV
Locatie: Almere

Re: Antennerichting bepalen...........

#6 Bericht door PE1RJV »

pa3bas schreef:Qrz.com geeft volgens mij de richting aan. Vraag is natuurlijk of alle repeaters in qrz.con aanwezig zijn. Kijk bij de details van de roepletters van de repeater.

Onder de kop 'Bearing' vindt je de richting in graden.

De gegevens van pi3utr zijn niet bepaald up-to-date, maar het gaat om het idee.

OOps, ik zal QRZ eens updaten voor PI3UTR ! :oops:

Gebruikersavatar
Ton_O_E
Berichten: 1773
Lid geworden op: 20 sep 2007, 19:59
Locatie: Oldenzaal
Contacteer:

Re: Antennerichting bepalen...........

#7 Bericht door Ton_O_E »

Ik gebruikte vroeger altijd QTH-locator

Dit stukje software heb ik ooit samen met anderen via dit forum gemaakt:

Code: Selecteer alles

//**************************************************************************************************************
// function to calculate distance between two Maidenhead locator points
// started by PA0WV in C and PA3TON - some corrections and refinements by VK2GWK
// Version 0.2 - 12008-02-18
// Published under the terms of the GNU license
//*************************************************************************************************************

// define constants.
define( K , 111.2); // correction constant in the Maidenhead formula
define( R , M_PI/180); // factor for conversion of degrees in radians
define( BR , '<br />'); // avoids retyping a break in quotes every time (handy while debugging)
define( E , ' E ' ); // define the lon. and lat. indicators for easy formatting
define( W , ' W ' );
define( N , ' N ' );
define( S , ' S ' );

// input the local and remote qth locator (normally retrieved from _$POST or $_GET )
$qth_loc = 'QF67BF'; // this can also be defined as a constant when it is the home QTH locator.
$qth_rem = 'JO32hl';


// ********************************************* MAIN UNIT *****************************************************
// check if entered strings are of the proper format and length.
trim($qth_loc); trim($qth_rem); // trim any spaces and other unwanted chars away.
$qth_loc = strtoupper($qth_loc); $qth_rem = strtoupper($qth_rem); // convert both inputs to uppercase
if ( chk_error($qth_loc) ) { echo 'The local locator you entered contains errors or is too short. Please try again'; exit; }
if ( chk_error($qth_rem) ) { echo 'The remote locator you entered contains errors or is too short. Please try again'; exit; }
if ( strlen ($qth_loc) < 6 ) { $qth_loc= str_pad($qth_loc,6,'L');} // if string too short pad with L (middle of the square)
if ( strlen ($qth_rem) < 6 ) { $qth_rem= str_pad($qth_rem,6,'L');} // if string too short pad with L (middle of the square)

// format the strings for display and add the hemisphere indicator
$loclat_str = sprintf("%01.4f", get_latitude($qth_loc));
if ( $loclat_str < 0 ) { $loclat_str = abs($loclat_str) . S; } else { $loclat_str = $loclat_str . N; }
$remlat_str = sprintf("%01.4f", get_latitude($qth_rem));
if ( $remlat_str < 0 ) { $remlat_str = abs($remlat_str) . S; } else { $remlat_str = $remlat_str . N; }
$loclon_str = sprintf("%01.4f", get_longitude($qth_loc));
if ( $loclon_str < 0 ) { $loclon_str = abs($loclon_str) . W; } else { $loclon_str = $loclon_str . E; }
$remlon_str = sprintf("%01.4f", get_longitude($qth_rem));
if ( $remlon_str < 0 ) { $remlon_str = abs($remlon_str) . W; } else { $remlon_str = $remlon_str . E; }

// display the results
echo '----------------------------------------------------------------------------<br />';
echo 'The distance between: ' . $qth_loc . ' and ' . $qth_rem . ' is: '
. sprintf("%01.1f", distance($qth_loc, $qth_rem)) . ' km.' . BR;
echo 'The position of ' . $qth_loc . ' is latitude: ' . $loclat_str
. ' - longitude: ' . $loclon_str . BR;
echo 'The position of ' . $qth_rem . ' is latitude: ' . $remlat_str
. ' - longitude: ' . $remlon_str . BR;
echo '-----------------------------------------------------------------------------<br />';

//*************************** Function section *****************************************************************
// main function for calculating the distance
function distance ($qth_loc, $qth_rem ) {

// get the paramaters for the distance calculation - both retrieved in degrees, decimal.
$lat_loc = get_latitude ($qth_loc);
$lat_rem = get_latitude ($qth_rem);
$lon_loc = get_longitude ($qth_loc);
$lon_rem = get_longitude ($qth_rem);

// actual calculation. The longitude and latitude are converted into radians by multiplying with the constant R
$distance= K *(1/R) * acos ( (sin(R*$lat_loc) * sin(R*$lat_rem)) + ( cos(R*$lat_loc) * cos(R*$lat_rem)) * cos( (R*$lon_loc) - (R*$lon_rem)) );
// ready to go back
return $distance;
} // end of function distance_calculator


// check for errors in the locator string
function chk_error ($loc_str) {
if ( strlen ($loc_str) < 4 ) { return TRUE; }
if ( (ord($loc_str[0]) < ord('A') ) || (ord($loc_str[1]) < ord('A')) ) { return TRUE; }
if ( ($loc_str[2] < 0 ) || ( $loc_str[3] < 0 ) ) { return TRUE; }
if ( (ord($loc_str[4]) < ord('A')) || (ord($loc_str[5]) < ord('A')) ) { return TRUE; }
if ( (ord($loc_str[0]) > ord('R') ) || (ord($loc_str[1]) > ord('R')) ) { return TRUE; }
if ( ($loc_str[2] > 9) || ($loc_str[3] > 9 ) ) { return TRUE; }
if ( (ord($loc_str[4]) > ord('X')) || (ord($loc_str[5]) > ord('X')) ) { return TRUE; }
} //end of function chk_errors

// convert the locator information into a longitude
function get_longitude ( $loc_str) {
$c=-180+((ord($loc_str[0])-ord("A"))*20);
$c+=($loc_str[2]*2);
$c+=(ord($loc_str[4])-ord("A"))/12;
$longitude=$c;
return $longitude;
}// end of function get_longitude

// convert the locator information into a latitude
function get_latitude ( $loc_str ) {
$c=-90 +((ord($loc_str[1])-ord("A"))*10);
$c += $loc_str[3];
$c+=(ord($loc_str[5])-ord("A"))/24;
$latitude=$c;
return $latitude;
} // end of function get_latitude
Hiermee kun je via php je bearing en distance uitrekenen
Voorheen PA3TON

PH1Z
Berichten: 249
Lid geworden op: 25 jan 2012, 21:26
Roepletters: PH1Z

Re: Antennerichting bepalen...........

#8 Bericht door PH1Z »

Ik heb gewoon een rotor gekocht .... :D

aan deze opmerking heb je niks, maar om veel te luisteren weet je op een gegeven moment welke
richting het signaal vandaan komt. Met een opening hoek van 30 graden ..... krijg je al snel het gewenste signaal binnen .....
Transceivers : Icom 781 | Icom 7700 | Icom 7100 |
Broadcasting : Heil 781 | Heil Pro-Set Elite 6

Gebruikersavatar
PE1PQX
Berichten: 4527
Lid geworden op: 06 jun 2011, 21:51
Roepletters: PE1PQX
Locatie: Emmen (JO32LS)
Contacteer:

Re: Antennerichting bepalen...........

#9 Bericht door PE1PQX »

pa1bvm schreef:zit standaard in WSJT software
Staan daar ook de repeaters in vermeld?
73', André PE1PQX (Site: http://www.pe1pqx.eu)

"Anyone who sits on top of the largest hydrogen-oxygen fueled system in the world; knowing they're going to light the bottom - and doesn't get a little worried - does not fully understand the situation"
John Young, Astronaut (Gemini 3, Gemini 10, Apollo 10, Apollo 16, STS-1, STS-9)

Plaats reactie