view atc_plane_specs.py @ 12:243941ec0a36

Make the plane info more realistic Plane specs include shortname Added QUIT command Added 2 images of real radars committer: Jeff Sipek <jeffpc@jeff.(none)> 1120798856 -0400
author Jeff Sipek <jeffpc@jeff.(none)>
date Fri, 08 Jul 2005 05:00:56 -0400
parents 300ba3412449
children 4a95c5552d3b
line wrap: on
line source

#/*
# * ATC - Air Traffic Controller simulation game
# *
# * Copyright (C) 2005 Josef "Jeff" Sipek <jeffpc@optonline.net>
# *
# * This program is free software; you can redistribute it and/or modify
# * it under the terms of the GNU General Public License as published by
# * the Free Software Foundation; either version 2 of the License, or
# * (at your option) any later version.
# *
# * This program is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# * GNU General Public License for more details.
# *
# * You should have received a copy of the GNU General Public License
# * along with this program; if not, write to the Free Software
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
# *
# * @(#) %M% %I% %E% %U%
# */

# all measurements in meters/sec or meters
plane_SPECS	= ({"fullname": "Piper PA28-140 Cherokee",
		    "name": "PA28",
		    "heavy": False,
		    "stall_speed": 16.667,
		    "climb_normal": 182.0,
		    "max_altitude": 6500.0},
		   
		   {"fullname": "Boeing 747-400",
		    "name": "B747",
		    "heavy": True,
		    "stall_speed": 62.572,
		    "climb_normal": 900.0,
		    "max_altitude": 13000.0})