1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
#
# Copyright (C) 2000-2023 The Xastir Group
#
# This file contains definitions for the Create SAR objects menu
#
# The objects defined here are typical Search and Rescue and ICS objects.
#
# You may modify this file to produce a custom set of prepared objects.
# Typical modification would be changing probability circles from
# miles to kilometers, placing probability circles around the PLS
# instead of the IPP, internationalizing the names and menu text,
# and adding your own standard objects.
#
# To select this file as the source of custom objects in the Create SAR
# objects menu, use the Load SAR objects menu options in the Configure
# defaults dialog (File/Configure/Defaults).
#
# Lines beginning with # are comments and will be ignored.
#
# Each line contains a tab separated variable and value pair.
# Each set of lines defines an object as specified on the prepared
# objects menu. Each set of lines must have variables defined in the
# following order:
#
# NAME The name of the object.
# Maximum length = MAX_CALLSIGN - 1 or - 2, to allow for Name1, Name2
# incrementing numbers with multiple objects.
# If name ends with a - then the first object will be called Name-1,
# the second Name-2, and so on. If name does not end with a - then
# The first object will be called Name, the second Name2.
# PAGE The APRS symbol code page, / or \
# Maximum length = 1 character.
# SYMBOL The APRS symbol specifier.
Maximum length = 1 character.
# DATA Additional data (such as probability circles) to follow the symbol in
# the APRS string for the object
# Use DATA NULL if there is no additional data, or omit the DATA line.
# Maximum length = PREDEFINED_OBJECT_DATA_LENGTH = 44
# MENU The text to appear on the prepared objects menu for this object.
# Maximum length = 25 characters.
# HIDDENCHILD NO for entries that appear on the menu. YES for a second
# object to be created at the same time as the one above it.
# This is a workaround to create an IPP and an IPP_ with different
# probability circles in the same place at the same time.
# YES is case sensitive.
# HIDDENCHILD must be the last line in each object.
#
# NAME, PAGE, SYMBOL, MENU, and HIDDENCHILD are required for each object.
#
# Each set of lines specifying an object should be separated by a blank line
# for clarity. Blank lines are ignored.
#
# The maximum number of objects that can be shown on the predefined object
# menu is defined by the constant MAX_NUMBER_OF_PREDEFINED_OBJECTS.
NAME ICP
PAGE /
SYMBOL c
DATA NULL
MENU ICP: Command Post
HIDDENCHILD NO
NAME Staging
PAGE S
SYMBOL 0
DATA NULL
MENU Staging
HIDDENCHILD NO
NAME IPP
PAGE /
SYMBOL /
#circles at .75 and 1 miles
DATA Pmin0.75,Pmax1.0
#circles at 2 and 3 kilometers
#DATA Pmin1.24,Pmax1.86
MENU IPP: InitialPlanningPoint
HIDDENCHILD NO
NAME IPP_
PAGE /
SYMBOL /
# circles at .25 and .5 miles
DATA Pmin0.25,Pmax0.5
# circles at .5 and 1 kilometers
#DATA Pmin0.31,Pmax0.62
MENU [not shown]
HIDDENCHILD YES
NAME PLS
PAGE /
SYMBOL /
DATA NULL
MENU PLS: Point Last Seen
HIDDENCHILD NO
NAME LKP
PAGE /
SYMBOL .
DATA NULL
MENU LKP: Last Known Point
HIDDENCHILD NO
NAME Base
PAGE B
SYMBOL 0
DATA NULL
MENU Base
HIDDENCHILD NO
NAME Helibase
PAGE H
SYMBOL 0
DATA NULL
MENU Helibase
HIDDENCHILD NO
# Using Heli- will produce an object named Heli-1
# with subsequent objects Heli-2, Heli-3, etc.
NAME Heli-
PAGE /
SYMBOL /
DATA NULL
MENU Heli-n Helispot
HIDDENCHILD NO
NAME Camp
PAGE C
SYMBOL 0
DATA NULL
MENU Camp
HIDDENCHILD NO
|