You are not logged in.

Dear visitor, welcome to Dreamboard. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Sharkadder

Dreamer

  • "Sharkadder" started this thread

Posts: 14

Location: UK

Occupation: Trainee Teacher

  • Send private message

1

Tuesday, September 14th 2010, 7:42pm

Satellite position ID - need to know what western ones mean for my plugin - Englisch

Hello there,

For a plugin i am creating i wish to include a zap to channel feature, i have got the majority of it sorted but i am having some problems with codes for western satellites after i create instance of ScanSetup file.

the eastern satellites show like this (just the satellite degrees but without the . e.g. 192 instead of 19.2:

astra1 19.2east = 192
16.0east = 160
hotbird 13.0east = 130

However i have noticed the western ones have a different code, shown below is what i mean, i expected the western ones to be e.g. "-08" for 0.8west but it shows up as 3592 instead.

8.0west = 3520
5.0west = 3550
0.8west = 3592

Can somebody tell me how these codes are generated for western satellites and if indeed the eastern ones are simply the degree position without the dot? What can i do to the western ones to make them in a more readable format such as "-08" for 0.8west or will i just have to go around the western ones and work them out individually?

The code i refer to is the code within ScanSetup file, obviously the default satellite is 19.2, when i change "orbpos" to say -08 for 0.8west it just comes up as 61west instead.

Source code

1
2
3
4
5
6
7
8
9
10
11
	def createConfig(self, frontendData):
		defaultSat = {
			"orbpos": 192,
			"system": eDVBFrontendParametersSatellite.System_DVB_S,
			"frequency": 11836,
			"inversion": eDVBFrontendParametersSatellite.Inversion_Unknown,
			"symbolrate": 27500,
			"polarization": eDVBFrontendParametersSatellite.Polarisation_Horizontal,
			"fec": eDVBFrontendParametersSatellite.FEC_Auto,
			"fec_s2": eDVBFrontendParametersSatellite.FEC_9_10,
			"modulation": eDVBFrontendParametersSatellite.Modulation_QPSK }


Thanks

Mark
Dreambox 8000 with 1TB Western Digital Internal Hard Drive, 80cm Dish, Quad LNB, 1.2 Compatible Motor, Yamaha RX-765 Amplifier, Two Tannoy Custom F1 Speakers, Tannoy FC Custom Centre Speaker, Two Tannoy Custom FR Speakers, EPOS ELS Sub Woofer, Porty TV

2

Tuesday, September 14th 2010, 7:55pm

3600 - west_sat_position
Receivers: dm500; dm7020; 2x dm8000sstt <-Diseq1x4(1.0)<-3x Diseq1x10(1.1)<-
Dishes:
1.8m + 36E;28E;23E;19E;16E;13E;7E
1.6m + 42E;40/39E;36E
1.0m + 10/9E;5E;1W;8W
1.0m + 15W;22W;30W
1.1m + 12W;18W;24W
0.8m + 4/5W
1.1m + 53E;60E
1.0m + 75E;80E
TVs: Philips 42PFL9703h(LCD); Sony KV29c3d(CRT)

3

Tuesday, September 14th 2010, 8:14pm

dont forget about terrestia; cable; file play cases

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
			if namespace_u < 0:
				namespace += 3600
			if namespace_u == 0: #File play mode
				orbposstr = ""
			elif namespace_u == 0xFFFF: #Cable
				orbposstr = "" #" (dvb-c)"
			elif namespace_u == 0xEEEE: #Terrestrial
				orbposstr = "" #" (dvb-t)"
			else:
				if namespace > 1800:
					orbposstr = " (%.0f%s)" % ((3600 - namespace + 4) / 10, "W")
				else:
					orbposstr = " (%.0f%s)" % ((namespace + 4) / 10, "E")
Receivers: dm500; dm7020; 2x dm8000sstt <-Diseq1x4(1.0)<-3x Diseq1x10(1.1)<-
Dishes:
1.8m + 36E;28E;23E;19E;16E;13E;7E
1.6m + 42E;40/39E;36E
1.0m + 10/9E;5E;1W;8W
1.0m + 15W;22W;30W
1.1m + 12W;18W;24W
0.8m + 4/5W
1.1m + 53E;60E
1.0m + 75E;80E
TVs: Philips 42PFL9703h(LCD); Sony KV29c3d(CRT)

Sharkadder

Dreamer

  • "Sharkadder" started this thread

Posts: 14

Location: UK

Occupation: Trainee Teacher

  • Send private message

4

Tuesday, September 14th 2010, 11:29pm

Western sat code now solved

Thanks martin i now get it. I don't know why it is 3600 - western position but i can see how it works now.

Cheers kidda +++
Dreambox 8000 with 1TB Western Digital Internal Hard Drive, 80cm Dish, Quad LNB, 1.2 Compatible Motor, Yamaha RX-765 Amplifier, Two Tannoy Custom F1 Speakers, Tannoy FC Custom Centre Speaker, Two Tannoy Custom FR Speakers, EPOS ELS Sub Woofer, Porty TV

OoZooN

Dreamer

    Germany

Posts: 1,865

Location: Wienhausen

Occupation: Elektriker

  • Send private message

5

Wednesday, September 15th 2010, 9:18am

cause it is a circle. all positions are related to 0° = south. e.g. astra is now 19,2° east of this position so it is 0192 but you can strip the leading "0". if your sat is on 5° west you look to the other side so you go the circle back but because it's a circle it is also 355° east and this means 3550 in this notation.
mfg

OoZooN

Support für OoZooN Images gibt es auf forum.oozoon.de , nicht hier!

Two Beer or not two Beer, thats the Question

Aktuelle Nachrichten rund um OoZooN-Images gibt es auf Twitter

6

Wednesday, September 15th 2010, 9:22am

3600 comes from 360,0°

p.s.
btw Enigma1 has different counting way:
FFFF - 0.8 W = FFF8
FFFF - 4.0W = FFD8
...
..
Receivers: dm500; dm7020; 2x dm8000sstt <-Diseq1x4(1.0)<-3x Diseq1x10(1.1)<-
Dishes:
1.8m + 36E;28E;23E;19E;16E;13E;7E
1.6m + 42E;40/39E;36E
1.0m + 10/9E;5E;1W;8W
1.0m + 15W;22W;30W
1.1m + 12W;18W;24W
0.8m + 4/5W
1.1m + 53E;60E
1.0m + 75E;80E
TVs: Philips 42PFL9703h(LCD); Sony KV29c3d(CRT)